*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f5f3ee;
    cursor:none;
    overflow-x:hidden;
}

/* ========== CUSTOM CURSOR ========== */

.cursor{
    position:fixed;
    width:10px;
    height:10px;
    background:#b89d78;
    border-radius:50%;
    pointer-events:none;
    z-index:9999;
    transform:translate(-50%,-50%);
    transition:width .3s,height .3s,background .3s;
}

.cursor-follower{
    position:fixed;
    width:40px;
    height:40px;
    border:1px solid rgba(184,157,120,.4);
    border-radius:50%;
    pointer-events:none;
    z-index:9998;
    transform:translate(-50%,-50%);
    transition:.1s ease;
}

.cursor.hover{
    width:20px;
    height:20px;
    background:#b89d78;
}

.cursor-follower.hover{
    width:60px;
    height:60px;
    border-color:#b89d78;
    background:rgba(184,157,120,.1);
}

/* ========== PRELOADER ========== */

.preloader{
    position:fixed;
    inset:0;
    background:#111;
    z-index:10000;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:opacity .8s ease,visibility .8s ease;
}

.preloader.hidden{
    opacity:0;
    visibility:hidden;
}

.preloader-content{
    text-align:center;
}

.preloader-logo{
    font-size:3rem;
    font-weight:600;
    color:white;
    letter-spacing:4px;
    margin-bottom:40px;
    animation:pulse 1.5s ease-in-out infinite;
}

.preloader-logo span{
    color:#b89d78;
}

@keyframes pulse{
    0%,100%{opacity:1}
    50%{opacity:.5}
}

.preloader-bar{
    width:200px;
    height:2px;
    background:rgba(255,255,255,.1);
    border-radius:10px;
    margin:0 auto 20px;
    overflow:hidden;
}

.preloader-progress{
    width:0%;
    height:100%;
    background:#b89d78;
    border-radius:10px;
    transition:width .3s ease;
}

.preloader-text{
    color:#888;
    font-size:.85rem;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* ========== SCROLL PROGRESS ========== */

.scroll-progress{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:3px;
    background:linear-gradient(90deg,#b89d78,#d6c0a0);
    z-index:9997;
    transition:width .1s ease;
}

/* ========== BACK TO TOP ========== */

.back-to-top{
    position:fixed;
    bottom:40px;
    right:40px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#b89d78;
    color:white;
    font-size:1.3rem;
    cursor:pointer;
    z-index:9996;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.4s ease;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
}

.back-to-top.visible{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    background:#a08b72;
    transform:translateY(-5px);
}

/* ========== THREE.JS CANVAS ========== */

#three-canvas{
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
}

/* ========== HERO ========== */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.35),
    rgba(0,0,0,.35)),
    url("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?w=1600");
    background-size:cover;
    background-position:center;
    color:white;
    position:relative;
    overflow:hidden;
    padding-top:70px;
}

/* NAVBAR */

nav{
    width:100%;
    padding:18px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    z-index:100;
    background:white;
    transition:.4s ease;
    box-shadow:0 1px 0 rgba(0,0,0,.05);
}

nav.scrolled{
    box-shadow:0 4px 30px rgba(0,0,0,.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:8px;
}

.logo-svg{
    display:block;
}

.nav-links{
    display:flex;
    gap:50px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-size:.9rem;
    font-weight:500;
    position:relative;
    transition:.3s;
    letter-spacing:.5px;
}

.nav-links a::after{
    content:'';
    position:absolute;
    bottom:-5px;
    left:0;
    width:0;
    height:1.5px;
    background:#b89d78;
    transition:width .3s ease;
}

.nav-links a:hover{
    color:#b89d78;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a.active{
    color:#b89d78;
}

.nav-links a.active::after{
    width:100%;
}

.menu-btn{
    border:1px solid rgba(0,0,0,.08);
    background:white;
    color:#333;
    padding:12px 24px;
    border-radius:50px;
    cursor:pointer;
    transition:.3s;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:8px;
    font-family:'Inter',sans-serif;
    font-size:.85rem;
}

.menu-btn:hover{
    background:#f5f3ee;
    border-color:rgba(0,0,0,.15);
}

.menu-btn-icon{
    font-size:.9rem;
}

/* HERO CONTENT */

.hero-content{
    height:80vh;
    display:flex;
    align-items:center;
    padding:0 7%;
    position:relative;
    z-index:5;
}

.subtitle{
    color:#d6c0a0;
    letter-spacing:3px;
    margin-bottom:20px;
    text-transform:uppercase;
    font-size:.9rem;
}

h1{
    font-family:'Playfair Display',serif;
    font-size:7rem;
    line-height:1;
    font-weight:500;
    margin-bottom:50px;
}

.buttons{
    display:flex;
    gap:20px;
}

.primary-btn,
.secondary-btn{
    text-decoration:none;
    padding:18px 35px;
    border-radius:50px;
    transition:.4s;
    font-weight:500;
}

.primary-btn{
    background:white;
    color:black;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,.5);
    color:white;
}

.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.secondary-btn:hover{
    background:white;
    color:black;
    border-color:white;
}

/* SCROLL INDICATOR */

.scroll{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    z-index:5;
}

.scroll span{
    display:block;
    letter-spacing:3px;
    font-size:.75rem;
    margin-bottom:10px;
    text-transform:uppercase;
}

.scroll-arrow{
    animation:bounce 2s ease-in-out infinite;
    font-size:1.2rem;
}

@keyframes bounce{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(8px)}
}

/* ========== TEXT ANIMATIONS ========== */

.animate-text{
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp .8s ease forwards;
}

.animate-text:nth-child(1){animation-delay:.3s}
.animate-text:nth-child(2){animation-delay:.6s}
.animate-text:nth-child(3){animation-delay:.9s}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ========== REVEAL ON SCROLL ========== */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:opacity .8s ease,transform .8s ease;
}

.reveal.visible{
    opacity:1;
    transform:translateY(0);
}

.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}
.reveal-delay-4{transition-delay:.4s}

/* ========== PROJECTS ========== */

.projects{
    background:#f5f3ee;
    min-height:100vh;
    padding:120px 8%;
    position:relative;
}

.section-header p{
    color:#a08b72;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.section-header h2{
    font-size:5rem;
    font-family:'Playfair Display',serif;
    margin-bottom:100px;
}

.project-list{
    width:60%;
}

.project-item{
    display:flex;
    align-items:center;
    gap:50px;
    padding:35px 0;
    border-bottom:1px solid rgba(0,0,0,.1);
    cursor:pointer;
    text-decoration:none;
    color:#111;
    transition:.4s;
    position:relative;
}

.project-item:hover{
    padding-left:30px;
}

.project-item span{
    font-size:1.2rem;
    color:#999;
    min-width:50px;
    font-weight:300;
}

.project-info{
    flex:1;
}

.project-info h3{
    font-size:3rem;
    font-weight:400;
    transition:.3s;
}

.project-item:hover .project-info h3{
    color:#b89d78;
}

.project-info p{
    color:#999;
    font-size:.9rem;
    margin-top:5px;
    opacity:0;
    transform:translateY(-5px);
    transition:.3s;
}

.project-item:hover .project-info p{
    opacity:1;
    transform:translateY(0);
}

.project-arrow{
    font-size:1.5rem;
    opacity:0;
    transform:translateX(-10px);
    transition:.4s;
}

.project-item:hover .project-arrow{
    opacity:1;
    transform:translateX(0);
}

.preview-image{
    position:absolute;
    top:250px;
    right:8%;
    width:500px;
    height:650px;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.preview-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

/* ========== ABOUT ========== */

.about{
    min-height:100vh;
    background:#f5f3ee;
    padding:120px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:100px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    height:750px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.1);
}

.about-content{
    flex:1;
}

.small-title{
    color:#a08b72;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:30px;
}

.about-content h2{
    font-family:'Playfair Display',serif;
    font-size:4rem;
    line-height:1.15;
    font-weight:500;
    margin-bottom:40px;
}

.about-text{
    font-size:1.1rem;
    color:#666;
    line-height:1.9;
    margin-bottom:50px;
}

.about-btn{
    text-decoration:none;
    color:white;
    background:#111;
    padding:20px 35px;
    border-radius:50px;
    transition:.4s;
    display:inline-block;
}

.about-btn:hover{
    background:#a08b72;
    transform:translateY(-3px);
}

/* ========== SERVICES ========== */

.services{
    min-height:100vh;
    background:#fff;
    padding:120px 8%;
}

.services-header p{
    color:#a08b72;
    letter-spacing:2px;
    text-transform:uppercase;
}

.services-header h2{
    font-family:'Playfair Display',serif;
    font-size:5rem;
    margin-top:20px;
    margin-bottom:80px;
}

.services-wrapper{
    display:flex;
    justify-content:space-between;
    gap:100px;
}

.services-list{
    width:55%;
}

.service-item{
    display:flex;
    align-items:center;
    gap:50px;
    padding:35px 0;
    border-bottom:1px solid rgba(0,0,0,.1);
    cursor:pointer;
    transition:.4s;
}

.service-item:hover{
    padding-left:25px;
}

.service-item span{
    color:#999;
    min-width:50px;
}

.service-item h3{
    font-size:3rem;
    font-weight:400;
    transition:.3s;
}

.service-item:hover h3{
    color:#b89d78;
}

.service-preview{
    width:450px;
    height:600px;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.1);
}

.service-preview img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

/* ========== PROCESS ========== */

.process{
    background:#f5f3ee;
    padding:120px 8%;
}

.process-header p{
    color:#a08b72;
    letter-spacing:2px;
    text-transform:uppercase;
}

.process-header h2{
    font-family:'Playfair Display',serif;
    font-size:5rem;
    margin-top:20px;
    margin-bottom:80px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.process-card{
    background:white;
    padding:50px 40px;
    border-radius:30px;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.process-card span{
    font-size:5rem;
    color:#ddd;
    font-weight:600;
    line-height:1;
}

.process-card h3{
    font-size:2rem;
    margin:20px 0;
    font-weight:500;
}

.process-card p{
    color:#666;
    line-height:1.8;
}

/* ========== STATS ========== */

.stats{
    background:#111;
    color:white;
    padding:140px 8%;
}

.stats-header p{
    color:#a08b72;
    text-transform:uppercase;
    letter-spacing:3px;
}

.stats-header h2{
    font-family:'Playfair Display',serif;
    font-size:5rem;
    margin-top:20px;
    margin-bottom:100px;
    max-width:900px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    border-top:1px solid rgba(255,255,255,.2);
    padding-top:40px;
}

.stat-card h3{
    font-size:5rem;
    font-weight:500;
    margin-bottom:20px;
    background:linear-gradient(135deg,#b89d78,#d6c0a0);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.stat-card p{
    color:#aaa;
    font-size:1rem;
}

/* ========== TESTIMONIALS ========== */

.testimonials{
    background:#f5f3ee;
    padding:140px 8%;
    overflow:hidden;
}

.testimonials-header p{
    color:#a08b72;
    letter-spacing:2px;
    text-transform:uppercase;
}

.testimonials-header h2{
    font-family:'Playfair Display',serif;
    font-size:5rem;
    margin:20px 0 80px;
}

.slider-container{
    overflow:hidden;
}

.testimonial-slider{
    display:flex;
    transition:.6s cubic-bezier(.25,.46,.45,.94);
}

.testimonial-card{
    min-width:100%;
    background:white;
    padding:60px;
    border-radius:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.stars{
    color:#b89d78;
    font-size:1.4rem;
    margin-bottom:40px;
    letter-spacing:5px;
}

.review{
    line-height:1.9;
    color:#666;
    font-size:1.1rem;
    margin-bottom:50px;
    font-style:italic;
}

.client{
    display:flex;
    align-items:center;
    gap:20px;
}

.client-avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#b89d78;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    font-size:.9rem;
}

.client-info h4{
    font-size:1.1rem;
    margin-bottom:5px;
}

.client-info span{
    color:#888;
    font-size:.85rem;
}

.slider-buttons{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:40px;
}

.slider-buttons button{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:#111;
    color:white;
    cursor:pointer;
    font-size:1.3rem;
    transition:.3s;
}

.slider-buttons button:hover{
    background:#b89d78;
    transform:scale(1.05);
}

.slider-dots{
    display:flex;
    gap:8px;
    flex:1;
    justify-content:center;
}

.slider-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ddd;
    cursor:pointer;
    transition:.3s;
}

.slider-dot.active{
    background:#b89d78;
    width:25px;
    border-radius:10px;
}

/* ========== GALLERY ========== */

.gallery{
    background:white;
    padding:140px 8%;
}

.gallery-header p{
    color:#a08b72;
    text-transform:uppercase;
    letter-spacing:3px;
}

.gallery-header h2{
    font-family:'Playfair Display',serif;
    font-size:5rem;
    margin-top:20px;
    margin-bottom:80px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.5);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.5s;
    gap:10px;
}

.gallery-item:hover .overlay{
    opacity:1;
}

.overlay h3{
    color:white;
    font-size:2rem;
    font-family:'Playfair Display',serif;
}

.overlay span{
    color:#b89d78;
    font-size:.9rem;
    letter-spacing:2px;
    text-transform:uppercase;
}

.tall{
    height:750px;
}

.wide{
    height:450px;
}

/* ========== CONTACT ========== */

.contact{
    background:#111;
    color:white;
    padding:180px 8%;
}

.contact-subtitle{
    color:#a08b72;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:30px;
}

.contact h2{
    font-family:'Playfair Display',serif;
    font-size:7rem;
    font-weight:500;
    line-height:1;
    margin-bottom:100px;
}

.contact-info{
    display:flex;
    gap:100px;
    margin-bottom:80px;
}

.info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info span{
    color:#888;
    font-size:.85rem;
    text-transform:uppercase;
    letter-spacing:2px;
}

.info a,
.info p{
    color:white;
    text-decoration:none;
    font-size:1.2rem;
    transition:.3s;
}

.info a:hover{
    color:#b89d78;
}

.contact-btn{
    display:inline-block;
    text-decoration:none;
    color:black;
    background:white;
    padding:20px 40px;
    border-radius:60px;
    transition:.4s;
    font-weight:500;
}

.contact-btn:hover{
    background:#b89d78;
    color:white;
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

/* ========== FOOTER ========== */

.footer{
    background:#0f0f0f;
    color:white;
    padding:100px 8% 40px;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    padding-bottom:80px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.footer-left p{
    color:#999;
    max-width:350px;
    line-height:1.8;
    margin-top:20px;
}

.footer-right{
    display:flex;
    gap:120px;
}

.footer-column{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.footer-column span{
    color:#777;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.85rem;
}

.footer-column a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.footer-column a:hover{
    color:#b89d78;
}

.footer-bottom{
    padding-top:40px;
}

.footer-bottom p{
    color:#777;
    font-size:.9rem;
}

/* ========== RESPONSIVE ========== */

@media(max-width:1200px){
    .preview-image{
        width:400px;
        height:550px;
    }

    .about-content h2{
        font-size:3rem;
    }

    .contact h2{
        font-size:5rem;
    }
}

@media(max-width:992px){
    .nav-links{
        display:none;
    }

    h1{
        font-size:4.5rem;
    }

    .preview-image{
        display:none;
    }

    .project-list{
        width:100%;
    }

    .section-header h2{
        font-size:3.5rem;
    }

    .project-item h3{
        font-size:2rem;
    }

    .about{
        flex-direction:column;
    }

    .about-content h2{
        font-size:3rem;
    }

    .services-wrapper{
        flex-direction:column;
    }

    .services-list{
        width:100%;
    }

    .service-preview{
        width:100%;
        height:400px;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .stats-header h2{
        font-size:3rem;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .tall,.wide{
        height:400px;
    }

    .contact-info{
        flex-direction:column;
        gap:40px;
    }

    .footer-top{
        flex-direction:column;
        gap:60px;
    }

    .footer-right{
        gap:60px;
    }
}

@media(max-width:768px){
    h1{
        font-size:3.2rem;
    }

    .buttons{
        flex-direction:column;
    }

    .section-header h2{
        font-size:2.5rem;
    }

    .project-item h3{
        font-size:1.5rem;
    }

    .project-item{
        gap:20px;
    }

    .about-content h2{
        font-size:2.2rem;
    }

    .services-header h2{
        font-size:3rem;
    }

    .service-item h3{
        font-size:2rem;
    }

    .process-header h2{
        font-size:3rem;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stats-header h2{
        font-size:2.5rem;
    }

    .stat-card h3{
        font-size:3.5rem;
    }

    .testimonials-header h2{
        font-size:3rem;
    }

    .testimonial-card{
        padding:40px 30px;
    }

    .gallery-header h2{
        font-size:3rem;
    }

    .contact h2{
        font-size:3.5rem;
    }

    .footer-right{
        flex-direction:column;
        gap:40px;
    }

    .back-to-top{
        bottom:20px;
        right:20px;
        width:40px;
        height:40px;
        font-size:1rem;
    }
}

/* ========== PAGE HERO (Inner Pages) ========== */

.page-hero{
    min-height:70vh;
    background:
    linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),
    url("https://images.unsplash.com/photo-1487958449943-2429e8be8625?w=1600");
    background-size:cover;
    background-position:center;
    color:white;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding-top:70px;
}

.page-hero--small{
    min-height:55vh;
}

.page-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.page-hero #three-canvas{
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
}

.page-hero-content{
    padding:0 8%;
    position:relative;
    z-index:5;
    width:100%;
}

.page-hero-content h1{
    font-size:6rem;
    max-width:800px;
}

.page-hero-desc{
    font-size:1.2rem;
    color:rgba(255,255,255,.7);
    max-width:600px;
    margin-top:20px;
    line-height:1.8;
}

/* ========== FOOTER LOGO ========== */

.footer-logo{
    margin-bottom:20px;
}

.footer-logo svg{
    display:block;
}

/* ========== FILTER BAR ========== */

.filter-section{
    background:#f5f3ee;
    padding:60px 8% 0;
}

.filter-bar{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.filter-btn{
    padding:12px 28px;
    border:1px solid rgba(0,0,0,.1);
    background:white;
    border-radius:50px;
    cursor:pointer;
    font-family:'Inter',sans-serif;
    font-size:.9rem;
    transition:.3s;
    color:#666;
}

.filter-btn:hover{
    border-color:#b89d78;
    color:#b89d78;
}

.filter-btn.active{
    background:#111;
    color:white;
    border-color:#111;
}

/* ========== PROJECTS GRID ========== */

.projects-grid-section{
    background:#f5f3ee;
    padding:60px 8% 120px;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(350px,1fr));
    gap:30px;
}

.project-card{
    background:white;
    border-radius:30px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.project-card-image{
    position:relative;
    height:280px;
    overflow:hidden;
}

.project-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.project-card:hover .project-card-image img{
    transform:scale(1.08);
}

.project-card-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.4);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.5s;
}

.project-card:hover .project-card-overlay{
    opacity:1;
}

.project-card-btn{
    padding:14px 30px;
    background:white;
    color:black;
    text-decoration:none;
    border-radius:50px;
    font-weight:500;
    transition:.3s;
}

.project-card-btn:hover{
    background:#b89d78;
    color:white;
}

.project-card-info{
    padding:30px;
}

.project-card-tag{
    display:inline-block;
    padding:5px 14px;
    background:#f5f3ee;
    color:#a08b72;
    border-radius:50px;
    font-size:.8rem;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.project-card-info h3{
    font-size:1.5rem;
    font-weight:500;
    margin-bottom:10px;
}

.project-card-info p{
    color:#888;
    font-size:.95rem;
    line-height:1.6;
}

/* ========== CTA SECTION ========== */

.cta-section{
    background:#111;
    color:white;
    padding:140px 8%;
    text-align:center;
}

.cta-content h2{
    font-family:'Playfair Display',serif;
    font-size:4rem;
    margin-bottom:20px;
}

.cta-content p{
    color:#aaa;
    font-size:1.1rem;
    margin-bottom:40px;
}

/* ========== SERVICES DETAILED ========== */

.services-detailed{
    background:#f5f3ee;
    padding:120px 8%;
}

.services-detailed-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(350px,1fr));
    gap:30px;
}

.service-detailed-card{
    background:white;
    padding:50px 40px;
    border-radius:30px;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.service-detailed-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.service-icon{
    width:60px;
    height:60px;
    margin-bottom:25px;
}

.service-icon svg{
    width:100%;
    height:100%;
}

.service-detailed-card h3{
    font-size:1.8rem;
    font-weight:500;
    margin-bottom:15px;
}

.service-detailed-card > p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.service-features{
    list-style:none;
    padding:0;
}

.service-features li{
    padding:8px 0;
    color:#888;
    font-size:.95rem;
    position:relative;
    padding-left:20px;
}

.service-features li::before{
    content:'—';
    position:absolute;
    left:0;
    color:#b89d78;
}

/* ========== PRICING ========== */

.pricing{
    background:white;
    padding:120px 8%;
}

.pricing-header{
    text-align:center;
    margin-bottom:80px;
}

.pricing-header p{
    color:#a08b72;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.pricing-header h2{
    font-family:'Playfair Display',serif;
    font-size:5rem;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1100px;
    margin:0 auto;
}

.pricing-card{
    background:#f5f3ee;
    padding:50px 40px;
    border-radius:30px;
    transition:.4s;
    position:relative;
}

.pricing-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.pricing-card.featured{
    background:#111;
    color:white;
    transform:scale(1.05);
}

.pricing-card.featured:hover{
    transform:scale(1.05) translateY(-8px);
}

.pricing-badge{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:#b89d78;
    color:white;
    padding:6px 20px;
    border-radius:50px;
    font-size:.8rem;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;
}

.pricing-card h3{
    font-size:1.8rem;
    font-weight:500;
    margin-bottom:20px;
}

.pricing-price{
    margin-bottom:20px;
}

.price{
    font-size:2.5rem;
    font-weight:600;
    font-family:'Playfair Display',serif;
}

.pricing-desc{
    color:#888;
    font-size:.95rem;
    margin-bottom:30px;
    line-height:1.6;
}

.pricing-card.featured .pricing-desc{
    color:#aaa;
}

.pricing-features{
    list-style:none;
    padding:0;
    margin-bottom:40px;
}

.pricing-features li{
    padding:10px 0;
    border-bottom:1px solid rgba(0,0,0,.06);
    font-size:.95rem;
    color:#666;
}

.pricing-card.featured .pricing-features li{
    border-color:rgba(255,255,255,.1);
    color:#ccc;
}

.pricing-btn{
    display:block;
    text-align:center;
    padding:16px;
    border-radius:50px;
    text-decoration:none;
    background:white;
    color:black;
    font-weight:500;
    transition:.3s;
    border:1px solid rgba(0,0,0,.1);
}

.pricing-btn:hover{
    background:#b89d78;
    color:white;
    border-color:#b89d78;
}

.pricing-btn.primary{
    background:#b89d78;
    color:white;
    border-color:#b89d78;
}

.pricing-btn.primary:hover{
    background:#a08b72;
}

/* ========== FAQ ========== */

.faq-section{
    background:#f5f3ee;
    padding:120px 8%;
}

.faq-header{
    text-align:center;
    margin-bottom:80px;
}

.faq-header p{
    color:#a08b72;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.faq-header h2{
    font-family:'Playfair Display',serif;
    font-size:5rem;
}

.faq-list{
    max-width:800px;
    margin:0 auto;
}

.faq-item{
    background:white;
    border-radius:20px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 30px;
    background:none;
    border:none;
    cursor:pointer;
    font-family:'Inter',sans-serif;
    font-size:1.05rem;
    font-weight:500;
    color:#111;
    text-align:left;
    transition:.3s;
}

.faq-question:hover{
    color:#b89d78;
}

.faq-icon{
    font-size:1.5rem;
    transition:.3s;
    color:#b89d78;
    flex-shrink:0;
    margin-left:20px;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease,padding .4s ease;
    padding:0 30px;
}

.faq-item.active .faq-answer{
    max-height:300px;
    padding:0 30px 25px;
}

.faq-answer p{
    color:#666;
    line-height:1.8;
    font-size:.95rem;
}

/* ========== ABOUT MISSION ========== */

.about-mission{
    background:#f5f3ee;
    padding:120px 8%;
    display:flex;
    align-items:center;
    gap:80px;
}

.mission-content{
    flex:1;
}

.mission-content h2{
    font-family:'Playfair Display',serif;
    font-size:3.5rem;
    line-height:1.2;
    font-weight:500;
    margin-bottom:30px;
}

.mission-image{
    flex:1;
}

.mission-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.1);
}

/* ========== TIMELINE ========== */

.timeline-section{
    background:white;
    padding:120px 8%;
}

.timeline-header{
    text-align:center;
    margin-bottom:80px;
}

.timeline-header p{
    color:#a08b72;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.timeline-header h2{
    font-family:'Playfair Display',serif;
    font-size:5rem;
}

.timeline{
    position:relative;
    max-width:800px;
    margin:0 auto;
    padding-left:40px;
}

.timeline-line{
    position:absolute;
    left:15px;
    top:0;
    bottom:0;
    width:2px;
    background:rgba(0,0,0,.08);
}

.timeline-item{
    position:relative;
    padding-bottom:60px;
    padding-left:40px;
}

.timeline-item:last-child{
    padding-bottom:0;
}

.timeline-dot{
    position:absolute;
    left:-33px;
    top:5px;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#b89d78;
    border:3px solid white;
    box-shadow:0 0 0 2px #b89d78;
}

.timeline-year{
    display:inline-block;
    padding:4px 14px;
    background:#b89d78;
    color:white;
    border-radius:50px;
    font-size:.8rem;
    font-weight:500;
    letter-spacing:1px;
    margin-bottom:15px;
}

.timeline-content h3{
    font-size:1.5rem;
    font-weight:500;
    margin-bottom:10px;
}

.timeline-content p{
    color:#666;
    line-height:1.8;
}

/* ========== TEAM ========== */

.team-section{
    background:#f5f3ee;
    padding:120px 8%;
}

.team-header{
    text-align:center;
    margin-bottom:80px;
}

.team-header p{
    color:#a08b72;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.team-header h2{
    font-family:'Playfair Display',serif;
    font-size:5rem;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:30px;
}

.team-card{
    background:white;
    border-radius:30px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.team-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.team-image{
    height:300px;
    overflow:hidden;
}

.team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.team-card:hover .team-image img{
    transform:scale(1.08);
}

.team-info{
    padding:30px;
}

.team-info h3{
    font-size:1.3rem;
    font-weight:500;
    margin-bottom:5px;
}

.team-info > span{
    color:#b89d78;
    font-size:.85rem;
    display:block;
    margin-bottom:15px;
}

.team-info p{
    color:#888;
    font-size:.9rem;
    line-height:1.7;
    margin-bottom:20px;
}

.team-social{
    display:flex;
    gap:10px;
}

.team-social a{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#f5f3ee;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#666;
    font-size:.8rem;
    font-weight:600;
    transition:.3s;
}

.team-social a:hover{
    background:#b89d78;
    color:white;
}

/* ========== VALUES ========== */

.values-section{
    background:white;
    padding:120px 8%;
}

.values-header{
    text-align:center;
    margin-bottom:80px;
}

.values-header p{
    color:#a08b72;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.values-header h2{
    font-family:'Playfair Display',serif;
    font-size:5rem;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.value-card{
    padding:40px;
    border-radius:30px;
    background:#f5f3ee;
    transition:.4s;
}

.value-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.value-number{
    font-size:4rem;
    font-weight:600;
    color:#ddd;
    line-height:1;
    margin-bottom:20px;
    font-family:'Playfair Display',serif;
}

.value-card h3{
    font-size:1.5rem;
    font-weight:500;
    margin-bottom:15px;
}

.value-card p{
    color:#666;
    line-height:1.8;
}

/* ========== CLIENTS ========== */

.clients-section{
    background:#f5f3ee;
    padding:120px 8%;
}

.clients-header{
    text-align:center;
    margin-bottom:80px;
}

.clients-header p{
    color:#a08b72;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.clients-header h2{
    font-family:'Playfair Display',serif;
    font-size:5rem;
}

.clients-logos{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:60px;
}

.client-logo{
    font-size:1.5rem;
    color:#bbb;
    font-weight:300;
    letter-spacing:2px;
    transition:.3s;
    cursor:default;
}

.client-logo:hover{
    color:#b89d78;
}

/* ========== CONTACT PAGE ========== */

.contact-page{
    background:#f5f3ee;
    padding:120px 8%;
}

.contact-page-inner{
    display:flex;
    gap:80px;
    align-items:flex-start;
}

.contact-form-wrapper{
    flex:1.3;
    background:white;
    padding:60px;
    border-radius:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.contact-form-wrapper h2{
    font-family:'Playfair Display',serif;
    font-size:2.5rem;
    font-weight:500;
    margin-bottom:40px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.form-row{
    display:flex;
    gap:25px;
}

.form-group{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group label{
    font-size:.85rem;
    font-weight:500;
    color:#555;
    letter-spacing:1px;
    text-transform:uppercase;
}

.form-group input,
.form-group select,
.form-group textarea{
    padding:14px 18px;
    border:1px solid rgba(0,0,0,.1);
    border-radius:12px;
    font-family:'Inter',sans-serif;
    font-size:.95rem;
    transition:.3s;
    background:#fafafa;
    outline:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#b89d78;
    background:white;
    box-shadow:0 0 0 3px rgba(184,157,120,.1);
}

.form-group input.error,
.form-group textarea.error{
    border-color:#e74c3c;
}

.form-error{
    font-size:.8rem;
    color:#e74c3c;
    min-height:0;
    opacity:0;
    transition:.3s;
}

.form-error.visible{
    opacity:1;
}

.form-submit{
    padding:18px 40px;
    background:#111;
    color:white;
    border:none;
    border-radius:50px;
    font-family:'Inter',sans-serif;
    font-size:1rem;
    font-weight:500;
    cursor:pointer;
    transition:.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    position:relative;
}

.form-submit:hover{
    background:#b89d78;
    transform:translateY(-2px);
}

.form-submit.loading .submit-text{
    opacity:0;
}

.form-submit.loading .submit-loader{
    display:block;
}

.submit-loader{
    display:none;
    width:20px;
    height:20px;
    border:2px solid rgba(255,255,255,.3);
    border-top-color:white;
    border-radius:50%;
    animation:spin .6s linear infinite;
    position:absolute;
}

@keyframes spin{
    to{transform:rotate(360deg)}
}

.form-success{
    display:none;
    text-align:center;
    padding:60px 20px;
}

.form-success.visible{
    display:block;
}

.success-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#b89d78;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    margin:0 auto 25px;
}

.form-success h3{
    font-size:1.8rem;
    font-weight:500;
    margin-bottom:15px;
}

.form-success p{
    color:#888;
    line-height:1.8;
}

/* ========== CONTACT INFO SIDE ========== */

.contact-info-side{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-info-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    transition:.4s;
}

.contact-info-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.contact-info-icon{
    width:45px;
    height:45px;
    margin-bottom:15px;
}

.contact-info-icon svg{
    width:100%;
    height:100%;
}

.contact-info-card h4{
    font-size:1rem;
    font-weight:500;
    margin-bottom:10px;
    color:#111;
}

.contact-info-card a,
.contact-info-card p{
    color:#888;
    text-decoration:none;
    font-size:.95rem;
    line-height:1.6;
    transition:.3s;
}

.contact-info-card a:hover{
    color:#b89d78;
}

/* ========== MAP ========== */

.map-section{
    background:white;
    padding:0 8% 120px;
}

.map-container{
    border-radius:30px;
    overflow:hidden;
    height:450px;
    background:#f5f3ee;
    position:relative;
}

.map-placeholder{
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:
        linear-gradient(rgba(245,243,238,.9),rgba(245,243,238,.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M10 10h80v80H10z" fill="none" stroke="%23ddd" stroke-width="1"/><path d="M20 20h60v60H20z" fill="none" stroke="%23ddd" stroke-width="1"/></svg>');
    background-size:50px 50px;
}

.map-marker{
    margin-bottom:20px;
}

.marker-pin{
    display:block;
    width:30px;
    height:30px;
    border-radius:50% 50% 50% 0;
    background:#b89d78;
    transform:rotate(-45deg);
    animation:pulse-marker 2s ease-in-out infinite;
}

@keyframes pulse-marker{
    0%,100%{box-shadow:0 0 0 0 rgba(184,157,120,.4)}
    50%{box-shadow:0 0 0 15px rgba(184,157,120,0)}
}

.map-info{
    text-align:center;
}

.map-info h3{
    font-size:1.5rem;
    font-weight:500;
    margin-bottom:10px;
}

.map-info p{
    color:#888;
    margin-bottom:10px;
}

.map-info a{
    color:#b89d78;
    text-decoration:none;
}

/* ========== SOCIAL SECTION ========== */

.social-section{
    background:#f5f3ee;
    padding:120px 8%;
    text-align:center;
}

.social-header{
    margin-bottom:60px;
}

.social-header p{
    color:#a08b72;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
}

.social-header h2{
    font-family:'Playfair Display',serif;
    font-size:5rem;
}

.social-links{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.social-link{
    text-decoration:none;
    color:#111;
    font-size:1.2rem;
    font-weight:500;
    padding:15px 35px;
    border:1px solid rgba(0,0,0,.1);
    border-radius:50px;
    transition:.3s;
    background:white;
}

.social-link:hover{
    background:#b89d78;
    color:white;
    border-color:#b89d78;
    transform:translateY(-3px);
}

/* ========== SECTION CTA ========== */

.section-cta{
    margin-top:60px;
    text-align:center;
}

/* ========== RESPONSIVE FOR NEW PAGES ========== */

@media(max-width:1200px){
    .pricing-grid{
        grid-template-columns:1fr 1fr;
    }

    .pricing-card.featured{
        transform:scale(1);
    }

    .pricing-card.featured:hover{
        transform:translateY(-8px);
    }

    .values-grid{
        grid-template-columns:1fr 1fr;
    }

    .contact-page-inner{
        flex-direction:column;
    }
}

@media(max-width:992px){
    .page-hero-content h1{
        font-size:4rem;
    }

    .about-mission{
        flex-direction:column;
    }

    .mission-content h2{
        font-size:2.5rem;
    }

    .mission-image img{
        height:400px;
    }

    .pricing-grid{
        grid-template-columns:1fr;
        max-width:500px;
    }

    .form-row{
        flex-direction:column;
    }

    .contact-form-wrapper{
        padding:40px 30px;
    }

    .social-links{
        gap:20px;
    }

    .social-link{
        padding:12px 25px;
        font-size:1rem;
    }
}

@media(max-width:768px){
    .page-hero-content h1{
        font-size:3rem;
    }

    .page-hero-desc{
        font-size:1rem;
    }

    .projects-grid{
        grid-template-columns:1fr;
    }

    .services-detailed-grid{
        grid-template-columns:1fr;
    }

    .pricing-header h2{
        font-size:3rem;
    }

    .faq-header h2{
        font-size:3rem;
    }

    .timeline-header h2{
        font-size:3rem;
    }

    .team-header h2{
        font-size:3rem;
    }

    .values-grid{
        grid-template-columns:1fr;
    }

    .values-header h2{
        font-size:3rem;
    }

    .clients-header h2{
        font-size:3rem;
    }

    .clients-logos{
        gap:30px;
    }

    .client-logo{
        font-size:1.2rem;
    }

    .social-header h2{
        font-size:3rem;
    }

    .cta-content h2{
        font-size:2.5rem;
    }

    .contact-form-wrapper h2{
        font-size:2rem;
    }

    .timeline{
        padding-left:20px;
    }

    .timeline-item{
        padding-left:25px;
    }

    .timeline-dot{
        left:-23px;
    }
}
