* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,248,248,0.95));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 5%;
    position: relative;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #8B4513;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: hue-rotate(-30deg) saturate(1.5) brightness(0.8) contrast(1.2) sepia(0.3) drop-shadow(2px 2px 4px rgba(139,69,19,0.3));
    background: transparent;
    mix-blend-mode: multiply;
}

.logo span {
    background: linear-gradient(45deg, #8B4513, #D2691E, #CD853F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

nav ul {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: #8B4513;
    background: linear-gradient(45deg, rgba(139,69,19,0.1), rgba(210,105,30,0.1));
    transform: translateY(-2px);
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(139,69,19,0.3)), url('images/image1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    margin-bottom: 3rem;
    scroll-margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.2) 100%);
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%23FFD700" cx="20" cy="20" r="1" opacity="0.8"><animate attributeName="cy" values="20;80;20" dur="3s" repeatCount="indefinite"/></circle><circle fill="%23FFA500" cx="50" cy="50" r="1.5" opacity="0.6"><animate attributeName="cx" values="50;10;50" dur="4s" repeatCount="indefinite"/></circle><circle fill="%23FFD700" cx="80" cy="30" r="1" opacity="0.7"><animate attributeName="cy" values="30;70;30" dur="2.5s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.marquee-container {
    margin: 0.5rem 0;
    background: linear-gradient(45deg, rgba(255,215,0,0.2), rgba(255,165,0,0.2));
    border-radius: 25px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,215,0,0.3);
    box-shadow: 0 8px 32px rgba(255,215,0,0.2);
}

.styled-marquee {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(0.9rem, 2.5vw, 1.5rem);
    margin: 1rem 0 0.5rem 0;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.feature-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 1rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.5s both;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,215,0,0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    padding: 1.2rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139,69,19,0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    padding: 1.2rem 3.5rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.cta-btn.primary:hover {
    background: linear-gradient(45deg, #A0522D, #F4A460);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139,69,19,0.4);
}

.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

.welcome-badge {
    background: linear-gradient(45deg, rgba(255,215,0,0.9), rgba(255,165,0,0.9));
    color: #8B4513;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 2rem;
    margin-top: 1rem;
    display: inline-block;
    animation: fadeInUp 1s ease-out;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.hero-content h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25);
    transform: perspective(500px) rotateX(15deg);
    animation: float3D 3s ease-in-out infinite, fadeInUp 1s ease-out 0.2s both;
    font-weight: bold;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fancy-subtitle {
    margin-bottom: 0.8rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.design-quote {
    font-size: 1.1rem;
    color: #FFD700;
    margin: 0.8rem 0;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.8s both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.4rem);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    padding: 1.2rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139,69,19,0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
    white-space: nowrap;
    min-width: 220px;
    display: inline-block;
}

.cta-btn:hover {
    background: linear-gradient(45deg, #A0522D, #F4A460);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139,69,19,0.4);
}

.services, .portfolio, .contact, .why-choose-us {
    padding: 5rem 5%;
    text-align: center;
    scroll-margin-top: 120px;
}

.services h2, .portfolio h2, .contact h2, .why-choose-us h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
}

.services h2::after, .portfolio h2::after, .contact h2::after, .why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #fff, #f9f9f9);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(139,69,19,0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
    transform: perspective(100px) rotateX(10deg);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: perspective(100px) rotateX(0deg) scale(1.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.video-content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
    align-items: center;
}

.video-container video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.video-container video:hover {
    transform: scale(1.02);
}

.video-info {
    text-align: left;
    padding: 1rem;
}

.video-info h3 {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.video-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.design-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #8B4513;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .video-content-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-container video {
        height: 200px;
    }
    
    .video-info {
        text-align: center;
    }
    
    .design-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-container video {
        height: 180px;
    }
}

.video-placeholder {
    width: 100%;
    max-width: 800px;
    height: 300px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border: 2px dashed #8B4513;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #8B4513;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item h3 {
    padding: 1.5rem;
    color: #8B4513;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(135deg, #fff, #f9f9f9);
}

.why-choose-us {
    background: linear-gradient(135deg, #fafafa, #f0f0f0);
    position: relative;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-item {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.why-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.why-item:hover .why-image img {
    transform: scale(1.1);
}

.why-content {
    padding: 2rem;
    text-align: left;
}

.why-content h3 {
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement {
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.achievement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
}

.achievement:hover {
    transform: translateY(-5px);
}

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.contact {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%23f0f0f0" cx="50" cy="50" r="2" opacity="0.3"/></svg>') repeat;
    opacity: 0.5;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255,255,255,0.9);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-form {
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.contact-form button {
    width: 100%;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: linear-gradient(45deg, #A0522D, #F4A460);
    transform: translateY(-2px);
}

.map-section {
    position: relative;
    z-index: 1;
    text-align: center;
}

.map-section h3 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 15px;
    overflow: hidden;
}

/* Mobile First Responsive Design */
@media (max-width: 480px) {
    nav {
        padding: 1rem 3%;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .welcome-badge {
        display: block !important;
        visibility: visible !important;
    }
    
    .marquee-container {
        display: block !important;
        visibility: visible !important;
    }
    
    .styled-marquee {
        display: block !important;
        visibility: visible !important;
    }
    
    .hero {
        padding-top: 60px !important;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .services, .portfolio, .contact, .why-choose-us {
        padding: 10rem 3% 3rem 3%;
    }
    
    .gallery {
        padding: 10rem 0 3rem 0;
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 0 1rem;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .welcome-badge {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    .styled-marquee {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .highlight {
        font-size: 1.4rem;
    }
    
    .design-quote {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        min-width: 200px;
    }
    
    .services, .portfolio, .contact, .why-choose-us {
        padding: 3rem 3%;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-content {
        padding: 1.5rem;
        text-align: center;
    }
    
    .achievements {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .achievement {
        padding: 1.5rem 1rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .gallery-track img {
        width: 250px;
        height: 180px;
        margin-right: 15px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    nav {
        padding: 1rem 4%;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .services, .portfolio, .contact, .why-choose-us {
        padding: 8rem 4% 4rem 4%;
    }
    
    .gallery {
        padding: 8rem 0 4rem 0;
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 1rem;
    }
    
    .services, .portfolio, .contact, .why-choose-us {
        padding: 4rem 4%;
    }
    
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services, .portfolio, .contact, .why-choose-us {
        padding: 4rem 4%;
    }
    
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 1200px) {
    .gallery-track {
        animation-duration: 40s;
    }
    
    .gallery-track img {
        width: 280px;
        height: 190px;
    }
}

footer {
    background: linear-gradient(135deg, #333, #444);
    color: white;
    text-align: center;
    padding: 3rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139,69,19,0.3);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8B4513, transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.gallery {
    padding: 7rem 0;
    background: linear-gradient(135deg, #fafafa, #f0f0f0);
    overflow: hidden;
    scroll-margin-top: 120px;
}

.gallery h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 2px;
}

.gallery-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    animation: scroll 35s linear infinite;
    width: calc(300px * 24); /* Adjust based on number of images */
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-track img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    margin-right: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.gallery-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 16 - 320px)); /* Half of total width */
    }
}

@keyframes float3D {
    0%, 100% {
        transform: perspective(500px) rotateX(15deg) translateY(0px);
    }
    50% {
        transform: perspective(500px) rotateX(15deg) translateY(-10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: perspective(500px) rotateX(15deg) translateY(30px);
    }
    to {
        opacity: 1;
        transform: perspective(500px) rotateX(15deg) translateY(0);
    }
}

/* Additional responsive utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive video */
video {
    max-width: 100%;
    height: auto;
}

/* Touch-friendly buttons */
@media (hover: none) and (pointer: coarse) {
    .cta-btn, .contact-form button {
        min-height: 44px;
        font-size: 1.1rem;
    }
    
    nav ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #8B4513;
}

.gallery-track img {
    cursor: pointer;
}
.location-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-item {
    background: rgba(255,255,255,0.9);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.location-item h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.location-item p {
    color: #666;
    font-size: 0.9rem;
}
.portfolio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.portfolio-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.portfolio-images .portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-images .portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-images .portfolio-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.customer-stories {
    padding: 1rem;
}

.customer-stories h3 {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial {
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #8B4513;
    overflow: hidden;
}

.testimonial-header {
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(139,69,19,0.05);
}

.testimonial-header strong {
    color: #8B4513;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #8B4513;
    transition: transform 0.3s ease;
}

.testimonial.active .toggle-icon {
    transform: rotate(45deg);
}

.testimonial-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial.active .testimonial-content {
    padding: 1.5rem;
    max-height: 200px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.location {
    color: #888;
    font-size: 0.9rem;
    text-align: right;
    display: block;
}

@media (max-width: 768px) {
    .portfolio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-images {
        grid-template-columns: 1fr;
    }
    
    .portfolio-images .portfolio-item img {
        height: 300px;
    }
}