/* =========================================================
   GOOGLE FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root{

    --primary:#07110E;
    --secondary:#0B1511;
    --gold:#C8A27A;
    --gold-light:#d7b48f;
    --cream:#F8F4EF;
    --text:#222222;
    --white:#ffffff;

}


/* =========================================================
   GLOBAL STYLES
========================================================= */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--cream);
    color:var(--text);
    overflow-x:hidden;

}

h1,h2,h3,h4,h5,h6{

    font-family:'Cormorant Garamond', serif;
    font-weight:500;

}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.section-padding{
    padding:100px 0;
}

.text-gold{
    color:var(--gold);
}

.bg-dark-green{
    background:var(--primary);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn-gold{

    background:transparent;
    border:1px solid var(--gold);
    color:var(--gold);
    padding:15px 38px;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:0.4s;

}

.btn-gold:hover{

    background:var(--gold);
    color:var(--white);

}

.btn-light-custom{

    border:1px solid rgba(255,255,255,0.4);
    color:white;
    padding:15px 38px;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:0.4s;

}

.btn-light-custom:hover{

    background:white;
    color:black;

}


/* =========================================================
   HEADER
========================================================= */

.custom-navbar{
    padding:22px 0;
background-color: #09190e !important;
    border-bottom:1px solid rgba(200,162,122,0.12);
    transition:0.4s;
    z-index:999;
}

.logo-text{

    font-size:58px;
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    color:var(--gold);
    line-height:40px;
    font-weight:400;

}

.logo-sub{

    color:var(--gold);
    font-size:10px;
    letter-spacing:7px;
    margin-left:5px;

}

.navbar-nav{
    gap:40px;
}

.nav-link{

    color:white !important;
    font-size:12px;
    letter-spacing:2px;
    font-weight:500;
    position:relative;
    transition:0.4s;

}

.nav-link:hover{
    color:var(--gold) !important;
}

.active-link{
    color:var(--gold) !important;
}

.active-link::after{

    content:'';
    position:absolute;
    width:100%;
    height:1px;
    background:var(--gold);
    left:0;
    bottom:-8px;

}

.header-btn{

    border:1px solid var(--gold);
    color:var(--gold);
    padding:14px 28px;
    font-size:12px;
    letter-spacing:2px;
    transition:0.4s;
    text-transform:uppercase;

}

.header-btn:hover{

    background:var(--gold);
    color:white;

}


/* =========================================================
   HERO SECTION
========================================================= */
.hero-section{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.admin-login-link{
    font-size: 14px;
    opacity: 0.8;
}
.hero-image{

    width:100%;

    height:100%;

    object-fit:cover;

    animation:heroZoom 12s ease-in-out infinite alternate;

}
.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(7,17,14,0.58) 0%,
        rgba(7,17,14,0.32) 35%,
        rgba(7,17,14,0.10) 65%,
        rgba(7,17,14,0.02) 100%
    );

    z-index:1;
}
.hero-content{

    position:absolute;

    top:30%;

    left:8%;

    transform:translateY(-50%);

    color:white;

    z-index:2;

}

.hero-subtitle{

    color:var(--gold);
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:20px;

}

.hero-title{

    font-size:95px;
    line-height:1;
    max-width:650px;
    margin-bottom:25px;

}

.hero-title span{

    color:var(--gold);
    font-style:italic;

}

.hero-text{

    max-width:470px;
    color:rgba(255,255,255,0.85);
    line-height:2;
    margin-bottom:35px;

}

/* HERO CINEMATIC ANIMATION */

@keyframes heroZoom{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.05);
    }

}




/* =========================================================
   EXACT FEATURE STRIP
========================================================= */

.feature-strip{

    background:
    linear-gradient(to right,
    #03100c,
    #071711);

    padding:42px 0;

    border-top:1px solid rgba(255,255,255,0.04);

}

/* ITEM */

.feature-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:0 28px;

    border-right:1px solid rgba(255,255,255,0.06);

    min-height:85px;

}

/* ICON */

.feature-icon{

    color:#C8A27A;

    font-size:38px;

    line-height:1;

    margin-top:2px;

}

/* TITLE */

.feature-content h5{

    color:white;

    font-size:13px;

    letter-spacing:1.5px;

    margin-bottom:8px;

    font-weight:500;

}

/* TEXT */

.feature-content p{

    color:#d0d0d0;

    font-size:13px;

    line-height:1.8;

    margin:0;

    max-width:210px;

}

/* RESPONSIVE */

@media(max-width:991px){

    .feature-item{

        margin-bottom:30px;

        border-right:none;

    }

}









/* =========================================================
   ABOUT SECTION EXACT
========================================================= */

.about-section{

    background:#f8f5f1;

}

/* SMALL TITLE */

.about-small-title{

    color:#C8A27A;

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:20px;

}

/* TITLE */

.about-title{

    font-size:64px;

    line-height:1.1;

    color:#2b2b2b;

    margin-bottom:35px;

    font-weight:500;

}

/* TEXT */

.about-text{

    color:#666;

    line-height:2;

    font-size:15px;

    max-width:470px;

    margin-bottom:22px;

}

/* BUTTON */

.about-btn{

    display:inline-block;

    margin-top:15px;

    border:1px solid #b8b8b8;

    color:#333;

    padding:14px 30px;

    font-size:12px;

    letter-spacing:2px;

    transition:0.4s;

}

.about-btn:hover{

    background:#07110E;

    border-color:#07110E;

    color:white;

}

/* IMAGE WRAPPER */

.about-image-wrapper{

    position:relative;

    padding-left:60px;

}

/* MAIN IMAGE */

.about-main-image{

    width:100%;

    max-width:650px;

    height:520px;

    object-fit:cover;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

}

/* SMALL IMAGE */

.about-small-image{

    position:absolute;

    right:-40px;

    bottom:25px;

    width:270px;

    border:10px solid #f8f5f1;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

}

/* RESPONSIVE */

@media(max-width:991px){

    .about-title{

        font-size:48px;

    }

    .about-image-wrapper{

        margin-top:60px;

        padding-left:0;

    }

    .about-small-image{

        right:0;

        width:220px;

    }

}

@media(max-width:767px){

    .about-title{

        font-size:40px;

    }

    .about-main-image{

        height:420px;

    }

    .about-small-image{

        width:170px;

        bottom:-20px;

    }

}


/* =========================================================
   FEATURED PROJECTS EXACT
========================================================= */

.projects-section{

    background:
    linear-gradient(to right,
    #03110c,
    #071711);

}

/* TITLE WRAP */

.projects-title-wrap{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    margin-bottom:55px;

}

/* LINES */

.projects-line{

    width:90px;

    height:1px;

    background:
    rgba(200,162,122,0.25);

}

/* TITLE */

.projects-title{

    color:white;

    font-size:18px;

    letter-spacing:3px;

    margin:0;

    font-weight:500;

}

/* CARD */

.project-card{

    background:#07110E;

    border:1px solid rgba(255,255,255,0.08);

    overflow:hidden;

    transition:0.4s;

}

/* IMAGE */

.project-image{

    overflow:hidden;

}

.project-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:0.6s;

}

/* HOVER */

.project-card:hover img{

    transform:scale(1.08);

}

/* CONTENT */

.project-content{

    padding:18px 18px 16px;

}

/* TITLE */

.project-content h4{

    color:white;

    font-size:24px;

    margin-bottom:8px;

    line-height:1.3;

}

/* CATEGORY */

.project-content p{

    color:#b9b9b9;

    font-size:14px;

    margin:0;

}

/* BUTTON */

.projects-btn{

    display:inline-block;

    border:1px solid #C8A27A;

    color:#C8A27A;

    padding:15px 40px;

    letter-spacing:2px;

    font-size:12px;

    transition:0.4s;

}

.projects-btn:hover{

    background:#C8A27A;

    color:white;

}

/* RESPONSIVE */

@media(max-width:991px){

    .project-image img{

        height:240px;

    }

}

@media(max-width:767px){

    .projects-title{

        font-size:15px;

    }

    .projects-line{

        width:50px;

    }

}





/* =========================================================
   TESTIMONIAL SECTION EXACT
========================================================= */

.testimonial-section{

    background:#f8f5f1;

}

/* CONTENT */

.testimonial-content{

    padding:90px 100px;

}

/* QUOTE */

.quote-icon{

    font-size:90px;

    line-height:1;

    color:#d6b08a;

    margin-bottom:10px;

    font-family:'Cormorant Garamond', serif;

}

/* TEXT */

.testimonial-text{

    font-size:40px;

    line-height:1.6;

    color:#2d2d2d;

    max-width:650px;

    margin-bottom:45px;

    font-weight:400;

}

/* AUTHOR */

.testimonial-author{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

/* LINE */

.author-line{

    width:45px;

    height:1px;

    background:#c6a17c;

    margin-top:12px;

}

/* NAME */

.testimonial-author h5{

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:5px;

    color:#333;

}

/* ROLE */

.testimonial-author span{

    color:#888;

    font-size:14px;

}

/* IMAGE */

.testimonial-image{

    width:100%;

    height:100%;

    min-height:520px;

    object-fit:cover;

}

/* RESPONSIVE */

@media(max-width:991px){

    .testimonial-content{

        padding:70px 40px;

    }

    .testimonial-text{

        font-size:32px;

    }

}

@media(max-width:767px){

    .testimonial-content{

        padding:60px 25px;

    }

    .testimonial-text{

        font-size:26px;

    }

}

/* =========================================================
   PREMIUM FOOTER EXACT DESIGN
========================================================= */

.footer-section{

    background:
    linear-gradient(to right,
    #03100c,
    #071711);

    position:relative;

    overflow:hidden;

    color:white;

}

/* MARBLE TEXTURE */

.footer-section::before{

    content:'';

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top left,
    rgba(200,162,122,0.06),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(255,255,255,0.03),
    transparent 35%);

    opacity:1;

    pointer-events:none;

}

/* =========================================================
   CTA STRIP
========================================================= */

.footer-cta{

    position:relative;

    padding:70px 0;

    background:
    linear-gradient(rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)),

    url('/images/footer-cta.jpg');

    background-size:cover;
    background-position:center;

}

.footer-cta::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(to right,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.2));

}

.footer-cta-content{

    position:relative;
    z-index:2;

}

.footer-cta h2{

    font-size:62px;

    line-height:1.1;

    color:white;

    margin-bottom:15px;

}

.footer-cta h2 span{

    color:#C8A27A;

    font-style:italic;

    font-weight:400;

}

.footer-cta p{

    color:#d5d5d5;

    line-height:2;

    max-width:600px;

    margin-bottom:30px;

}

.footer-cta-btn{

    display:inline-block;

    border:1px solid #C8A27A;

    color:#C8A27A;

    padding:14px 34px;

    letter-spacing:2px;

    font-size:12px;

    transition:0.4s;

}

.footer-cta-btn:hover{

    background:#C8A27A;

    color:white;

}

/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main{

    position:relative;

    z-index:2;

    padding:80px 0 55px;

}

/* COLUMN DIVIDERS */

.footer-main .col-lg-4,
.footer-main .col-lg-2,
.footer-main .col-lg-3{

    position:relative;

}

.footer-main .col-lg-4::after,
.footer-main .col-lg-2::after,
.footer-main .col-lg-3::after{

    content:'';

    position:absolute;

    right:20px;

    top:0;

    width:1px;

    height:100%;

    background:
    rgba(255,255,255,0.07);

}

.footer-main .col-lg-3:last-child::after{

    display:none;

}

/* LOGO */

.footer-logo{

    font-size:72px;

    line-height:50px;

    color:#C8A27A;

    font-style:italic;

    font-weight:400;

}

.footer-logo-sub{

    color:#C8A27A;

    font-size:10px;

    letter-spacing:8px;

    margin-left:6px;

}

/* DESCRIPTION */

.footer-description{

    color:#d0d0d0;

    line-height:2;

    margin-top:28px;

    max-width:270px;

    font-size:15px;

}

/* SOCIAL */

.footer-social{

    display:flex;

    gap:14px;

    margin-top:28px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    border:1px solid rgba(200,162,122,0.45);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#C8A27A;

    transition:0.4s;

}

.footer-social a:hover{

    background:#C8A27A;

    color:white;

}

/* HEADINGS */

.footer-heading{

    color:white;

    font-size:14px;

    letter-spacing:2px;

    margin-bottom:35px;

}

/* LINKS */

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:16px;

    color:#d5d5d5;

    font-size:15px;

}

.footer-links a{

    color:#d5d5d5;

    transition:0.4s;

}

.footer-links a:hover{

    color:#C8A27A;

}

/* CONTACT */

.footer-contact{

    list-style:none;

    padding:0;

}

.footer-contact li{

    display:flex;

    gap:14px;

    margin-bottom:22px;

    color:#d5d5d5;

    line-height:1.9;

    font-size:15px;

}

.footer-contact i{

    color:#C8A27A;

    margin-top:5px;

}

/* =========================================================
   BOTTOM BAR
========================================================= */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,0.08);

    padding:28px 0;

    position:relative;

    z-index:2;

}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span{

    color:#cfcfcf;

    font-size:14px;

}

.footer-bottom a{

    transition:0.4s;

    margin:0 10px;

}

.footer-bottom a:hover{

    color:#C8A27A;

}

/* =========================================================
   BACK TOP
========================================================= */

.back-top{

    position:absolute;

    right:35px;

    bottom:25px;

    width:46px;

    height:46px;

    border:1px solid #C8A27A;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#C8A27A;

    transition:0.4s;

    z-index:20;

}

.back-top:hover{

    background:#C8A27A;

    color:white;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .footer-main .col-lg-4::after,
    .footer-main .col-lg-2::after,
    .footer-main .col-lg-3::after{

        display:none;

    }

    .footer-cta h2{

        font-size:48px;

    }

}

@media(max-width:767px){

    .footer-cta{

        padding:60px 0;

    }

    .footer-cta h2{

        font-size:38px;

    }

    .footer-bottom{

        text-align:center;

    }

    .footer-bottom .text-md-end{

        margin-top:15px;

    }

}


/* =========================================================
   GALLERY
========================================================= */

.gallery-image{

    overflow:hidden;
    position:relative;

}

.gallery-image img{

    width:100%;
    transition:0.5s;

}

.gallery-image:hover img{
    transform:scale(1.05);
}






/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .hero-title{
        font-size:60px;
    }

    .about-title{
        font-size:45px;
    }

    .about-small-image{
        display:none;
    }

    .navbar-nav{
        gap:20px;
        padding:30px 0;
    }

    .header-btn{
        display:inline-block;
        margin-top:20px;
    }

    .section-title::before,
    .section-title::after{
        display:none;
    }

}

@media(max-width:767px){

    .hero-title{
        font-size:48px;
    }

    .hero-content{
        left:5%;
        right:5%;
    }

    .testimonial-text{
        font-size:26px;
    }

    .about-title{
        font-size:38px;
    }

    .section-padding{
        padding:70px 0;
    }



    

}

/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero{

    background:#07110E;

    overflow:hidden;

}

.about-hero-content{

    padding:120px 90px;

    color:white;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.about-hero-subtitle{

    color:#C8A27A;

    letter-spacing:3px;

    font-size:13px;

    margin-bottom:30px;

}

.about-hero-title{

    font-size:78px;

    line-height:1.05;

    margin-bottom:30px;

}

.about-hero-title span{

    display:block;

    color:#C8A27A;

    font-style:italic;

}

.about-line{

    width:70px;
    height:1px;

    background:#C8A27A;

    margin-bottom:35px;

}

.about-hero-content p{

    color:#d8d8d8;

    line-height:2;

    font-size:15px;

    margin-bottom:22px;

    max-width:500px;

}

.about-signature{

    color:#C8A27A;

    font-size:42px;

    font-family:'Cormorant Garamond', serif;

    font-style:italic;

    margin-top:15px;

}

.about-hero-image{

    width:100%;
    height:100%;
    object-fit:cover;

    min-height:780px;

}


/* =========================================================
   STORY SECTION
========================================================= */

.story-section{

    padding:110px 0;

    background:#f8f5f1;

}

/* IMAGE WRAPPER */

.story-image-wrapper{

    position:relative;

}

/* MAIN IMAGE */

.story-main-image{

    width:100%;

    border-radius:12px;

    object-fit:cover;

}

/* SMALL FLOATING IMAGE */

.story-small-image{

    position:absolute;

    right:-40px;

    bottom:-40px;

    width:220px;

    border-radius:18px;

    border:6px solid #f8f5f1;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.15);

}

/* CONTENT */

.story-content{

    padding-left:80px;

}

/* SUBTITLE */

.section-subtitle{

    color:#C8A27A;

    letter-spacing:3px;

    font-size:13px;

    margin-bottom:20px;

}

/* TITLE */

.story-title{

    font-size:68px;

    line-height:1.05;

    margin-bottom:30px;

    color:#1f1f1f;

}

.story-title span{

    display:block;

    color:#C8A27A;

    font-style:italic;

}

/* PARAGRAPH */

.story-content p{

    color:#555;

    line-height:2;

    margin-bottom:20px;

    max-width:620px;

}

/* STATS */

.story-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

/* STAT BOX */

.stat-box{

    text-align:center;

    border-left:1px solid rgba(0,0,0,0.08);

    padding-left:25px;

}

/* ICON */

.stat-icon{

    font-size:36px;

    color:#111;

    margin-bottom:18px;

}

/* NUMBER */

.stat-box h3{

    font-size:46px;

    margin-bottom:10px;

    color:#111;

}

/* TEXT */

.stat-box p{

    margin:0;

    color:#666;

    font-size:15px;

    line-height:1.7;

}

/* RESPONSIVE */

@media(max-width:991px){

    .story-content{

        padding-left:0;

        margin-top:80px;

    }

    .story-stats{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:767px){

    .story-title{

        font-size:48px;

    }

    .story-small-image{

        width:160px;

        right:0;

    }

    .story-stats{

        grid-template-columns:1fr;

    }

}



/* =========================================================
   APPROACH SECTION
========================================================= */

.approach-section{

    background:#07110E;

    padding:90px 0;

    position:relative;

    overflow:hidden;

}

/* TITLE */

.approach-heading{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    margin-bottom:70px;

}

.approach-heading span{

    width:70px;
    height:1px;

    background:rgba(200,162,122,0.35);

}

.approach-heading h6{

    color:#C8A27A;

    letter-spacing:3px;

    font-size:13px;

    margin:0;

}

/* BOX */

.approach-box{

    text-align:center;

    padding:0 30px;

    border-right:1px solid rgba(255,255,255,0.08);

    height:100%;

}

/* ICON */

.approach-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    border:1px solid rgba(200,162,122,0.25);

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 28px;

    color:#C8A27A;

    font-size:30px;

    transition:0.4s;

}

/* HOVER */

.approach-box:hover .approach-icon{

    transform:translateY(-6px);

    background:#C8A27A;

    color:white;

}

/* TITLE */

.approach-box h4{

    color:white;

    font-size:20px;

    letter-spacing:2px;

    margin-bottom:22px;

}

/* TEXT */

.approach-box p{

    color:#d1d1d1;

    line-height:2;

    font-size:14px;

}

/* MOBILE */

@media(max-width:991px){

    .approach-box{

        border-right:none;

    }

}


/* =========================================================
   TEAM SECTION
========================================================= */

.team-section{

    padding:110px 0;

    background:#f8f5f1;

}

/* HEADING */

.team-heading{

    margin-bottom:70px;

}

/* TITLE */

.team-title{

    font-size:58px;

    color:#1f1f1f;

    margin-top:15px;

}

/* LINE */

.team-line{

    width:90px;
    height:1px;

    background:#C8A27A;

    margin:25px auto 0;

}

/* CARD */

.team-card{

    text-align:center;

    transition:0.5s;

}

/* IMAGE WRAPPER */

.team-image-wrapper{

    overflow:hidden;

    border-radius:10px;

}

/* IMAGE */

.team-image{

    width:100%;

    transition:0.6s;

}

/* HOVER */

.team-card:hover .team-image{

    transform:scale(1.05);

}

/* CONTENT */

.team-content{

    padding-top:25px;

}

/* NAME */

.team-content h4{

    font-size:28px;

    margin-bottom:10px;

    color:#1f1f1f;

}

/* ROLE */

.team-content p{

    color:#555;

    margin:0;

    font-size:15px;

}

/* MOBILE */

@media(max-width:767px){

    .team-title{

        font-size:40px;

    }

}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta{

    position:relative;

    padding:90px 0;

    overflow:hidden;

    background:
    linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)),

    url('/images/about-cta.png');

    background-size:cover;

    background-position:center;

}

/* OVERLAY */

.about-cta::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(to right,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.2));

}

/* CONTENT */

.about-cta .container{

    position:relative;

    z-index:2;

}

/* TITLE */

.about-cta-left h2{

    color:white;

    font-size:62px;

    line-height:1.1;

    margin-bottom:20px;

}

.about-cta-left h2 span{

    display:block;

    color:#C8A27A;

    font-style:italic;

    font-weight:400;

}

/* LINE */

.about-cta-line{

    width:70px;
    height:1px;

    background:#C8A27A;

}

/* RIGHT */

.about-cta-right{

    padding-left:70px;

}

/* TEXT */

.about-cta-right p{

    color:#e0e0e0;

    line-height:2;

    margin-bottom:30px;

    max-width:520px;

}

/* BUTTON */

.about-cta-btn{

    display:inline-block;

    border:1px solid #C8A27A;

    color:#C8A27A;

    padding:14px 34px;

    letter-spacing:2px;

    font-size:12px;

    transition:0.4s;

}

.about-cta-btn:hover{

    background:#C8A27A;

    color:white;

}

/* RESPONSIVE */

@media(max-width:991px){

    .about-cta-left h2{

        font-size:46px;

    }

    .about-cta-right{

        padding-left:0;

    }

}

@media(max-width:767px){

    .about-cta{

        text-align:center;

    }

    .about-cta-line{

        margin:auto;

    }

    .about-cta-left h2{

        font-size:38px;

    }

}



/* =========================================================
   CLEAN ABOUT PAGE ANIMATIONS
========================================================= */

/* SCROLL REVEAL */

.reveal{

    opacity:0;

    transform:translateY(70px);

    transition:
    all 1s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/* HERO CONTENT */

.about-hero-content{

    animation:aboutFade 1.3s ease;

}

@keyframes aboutFade{

    from{

        opacity:0;

        margin-left:-60px;

    }

    to{

        opacity:1;

        margin-left:0;

    }

}

/* HERO IMAGE */

.about-hero-image{

    animation:imageZoom 1.5s ease;

}

@keyframes imageZoom{

    from{

        opacity:0;

        transform:scale(1.1);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/* FLOAT EFFECT */

.story-main-image{

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/* CARD HOVER */

.team-card,
.project-card,
.approach-box{

    transition:
    all 0.5s ease;

}

.team-card:hover,
.project-card:hover,
.approach-box:hover{

    transform:translateY(-10px);

}

/* IMAGE HOVER */

.team-image,
.project-image img{

    transition:
    transform 0.8s ease;

}

.team-card:hover .team-image,
.project-card:hover img{

    transform:scale(1.06);

}

/* BUTTON EFFECT */

.about-cta-btn,
.projects-btn,
.header-btn{

    transition:
    all 0.4s ease;

}

.about-cta-btn:hover,
.projects-btn:hover,
.header-btn:hover{

    transform:translateY(-3px);

}

/* GOLD TEXT SHIMMER */

.about-hero-title span,
.story-title span,
.about-cta-left h2 span{

    animation:goldGlow 4s ease-in-out infinite;

}

@keyframes goldGlow{

    0%{

        opacity:0.7;

    }

    50%{

        opacity:1;

        text-shadow:
        0 0 15px rgba(200,162,122,0.5);

    }

    100%{

        opacity:0.7;

    }

}


/* =========================================================
   ULTRA PREMIUM ABOUT ANIMATIONS
========================================================= */

/* LUXURY IMAGE PARALLAX */

.story-image-wrapper,
.about-image-wrapper{

    perspective:1200px;

}

.story-main-image,
.about-main-image{

    transition:
    transform 1.2s ease,
    box-shadow 1s ease;

}

.story-image-wrapper:hover .story-main-image,
.about-image-wrapper:hover .about-main-image{

    transform:
    scale(1.03)
    rotateY(-5deg);

    box-shadow:
    0 35px 80px rgba(0,0,0,0.18);

}

/* SMALL IMAGE FLOAT */

.story-small-image,
.about-small-image{

    animation:smallFloat 6s ease-in-out infinite;

}

@keyframes smallFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-14px);

    }

    100%{

        transform:translateY(0);

    }

}

/* PREMIUM CARD GLOW */

.team-card,
.project-card{

    position:relative;

    overflow:hidden;

}

.team-card::after,
.project-card::after{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent);

    transform:
    translateX(-150%);

    transition:1s;

}

.team-card:hover::after,
.project-card:hover::after{

    transform:
    translateX(150%);

}

/* CINEMATIC TITLE REVEAL */

.team-title,
.story-title,
.about-hero-title{

    animation:titleRevealLuxury 1.5s ease;

}

@keyframes titleRevealLuxury{

    from{

        opacity:0;

        letter-spacing:10px;

        transform:
        translateY(40px);

    }

    to{

        opacity:1;

        letter-spacing:0;

        transform:
        translateY(0);

    }

}

/* APPROACH ICON GLOW */

.approach-icon{

    transition:
    all 0.5s ease;

}

.approach-box:hover .approach-icon{

    transform:
    translateY(-8px)
    scale(1.08);

    box-shadow:
    0 0 30px rgba(200,162,122,0.35);

}

/* PREMIUM BUTTON EFFECT */

.about-cta-btn,
.projects-btn,
.header-btn{

    position:relative;

    overflow:hidden;

}

.about-cta-btn::before,
.projects-btn::before,
.header-btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent);

    transition:0.8s;

}

.about-cta-btn:hover::before,
.projects-btn:hover::before,
.header-btn:hover::before{

    left:120%;

}

/* SECTION SMOOTH ENTRANCE */

.reveal{

    opacity:0;

    transform:
    translateY(90px)
    scale(0.97);

    transition:
    all 1.3s cubic-bezier(
    0.22,
    1,
    0.36,
    1);

}

.reveal.active{

    opacity:1;

    transform:
    translateY(0)
    scale(1);

}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero{

    background:
   
    url('/images/contact-hero.png');

    background-size:cover;

    background-position:center;

    padding:
    220px 0 160px;

}

/* TITLE */

.contact-title{

    font-size:82px;

    line-height:1.1;

    color:#fff;

    font-family:
    'Cormorant Garamond',
    serif;

}

.contact-title span{

    color:#C8A27A;

    font-style:italic;

}

/* HERO TEXT */

.contact-hero p{

    color:#ddd;

    line-height:2;

    max-width:520px;

    margin-top:30px;

}

/* LOGO */

.contact-logo h2{

    font-size:90px;

    color:#C8A27A;

    font-family:
    'Cormorant Garamond',
    serif;

}

.contact-logo span{

    letter-spacing:8px;

    color:#C8A27A;

}

/* MAIN SECTION */

.contact-main-section{

    background:#f8f5f1;

}

/* LEFT */

.contact-info-box{

    padding:100px 70px;

    background:#f8f5f1;

    height:100%;

}

/* INFO ITEM */

.info-item{

    display:flex;

    gap:25px;

    margin-bottom:45px;

}

.info-item i{

    width:65px;
    height:65px;

    border:
    1px solid #c8a27a;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#C8A27A;

    font-size:24px;

}

/* RIGHT */
.contact-info-box{

    padding:100px 70px;

    background:#f8f5f1;

    min-height:100%;

}

.contact-form-box{

    background:#07110E;

    padding:100px 80px;

    min-height:100%;

}

/* INPUTS */

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select{

    width:100%;

    background:transparent;

    border:1px solid rgba(255,255,255,0.15);

    padding:18px 22px;

    margin-bottom:25px;

    color:#fff;

}

/* BUTTON */

.contact-btn{

    background:transparent;

    border:1px solid #C8A27A;

    color:#C8A27A;

    padding:18px 45px;

    transition:0.4s;

}

.contact-btn:hover{

    background:#C8A27A;

    color:#fff;

}


/* =========================================================
   CONSULTATION SECTION
========================================================= */

.consultation-section{

    background:#f8f5f1;

}

/* CONTENT */

.consultation-content{

    padding:110px 90px;

}

/* TITLE */

.consultation-content h2{

    font-size:60px;

    margin:
    20px 0 30px;

    color:#1d1d1d;

    font-family:
    'Cormorant Garamond',
    serif;

}

/* TEXT */

.consultation-content p{

    font-size:17px;

    line-height:2;

    color:#555;

    max-width:520px;

    margin-bottom:40px;

}

/* BUTTON */

.consult-btn{

    display:inline-block;

    border:
    1px solid #C8A27A;

    color:#111;

    padding:
    18px 38px;

    letter-spacing:2px;

    font-size:13px;

    transition:0.4s;

}

.consult-btn:hover{

    background:#C8A27A;

    color:#fff;

}

/* IMAGE */

.consult-image{

    width:100%;

    height:100%;

    min-height:520px;

    object-fit:cover;

}

/* MOBILE */

@media(max-width:991px){

    .consultation-content{

        padding:70px 40px;

    }

}

/* =========================================================
   CONTACT FEATURE STRIP
========================================================= */

.contact-feature-strip{

    background:#07110E;

    padding:90px 0;

    position:relative;

    overflow:hidden;

    margin-top:-1px;

}

/* CONTAINER */

.contact-feature-strip .container{

    max-width:1400px;

}

/* ROW */

.contact-feature-strip .row{

    align-items:flex-start;

}

/* FEATURE BOX */

.contact-feature-box{

    text-align:center;

    padding:0 35px;

    border-right:
    1px solid rgba(255,255,255,0.08);

    height:100%;

    transition:0.4s ease;

}

/* REMOVE LAST BORDER */

.contact-feature-box.border-0{

    border-right:none !important;

}

/* ICON */

.contact-feature-box .feature-icon{

    width:80px;

    height:80px;

    margin:0 auto 28px;

    border:
    1px solid rgba(200,162,122,0.4);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    color:#C8A27A;

    transition:0.4s ease;

}

/* TITLE */

.contact-feature-box h5{

    color:#fff;

    font-size:18px;

    letter-spacing:1px;

    margin-bottom:18px;

    line-height:1.5;

}

/* TEXT */

.contact-feature-box p{

    color:#bcbcbc;

    font-size:15px;

    line-height:1.9;

    margin:0;

}

/* HOVER */

.contact-feature-box:hover{

    transform:translateY(-8px);

}

.contact-feature-box:hover .feature-icon{

    background:#C8A27A;

    color:#07110E;

    box-shadow:
    0 10px 30px rgba(200,162,122,0.35);

}

/* MOBILE */

@media(max-width:991px){

    .contact-feature-box{

        border-right:none;

        margin-bottom:50px;

    }

}


/* =========================================================
   MAP CONSULT SECTION
========================================================= */

.map-consult-section{

    background:#f8f5f1;

}

/* MAP */

.map-image img{

    width:100%;

    height:100%;

    min-height:420px;

    object-fit:cover;

}

/* RIGHT */

.consult-wrapper{

    padding:90px 80px;

}

/* TITLE */

.consult-wrapper h2{

    font-size:58px;

    margin:
    20px 0 30px;

    font-family:
    'Cormorant Garamond',
    serif;

    color:#1c1c1c;

}

/* TEXT */

.consult-wrapper p{

    color:#555;

    line-height:2;

    font-size:16px;

    max-width:520px;

    margin-bottom:35px;

}

/* BUTTON */

.consult-btn{

    display:inline-block;

    border:
    1px solid #C8A27A;

    padding:
    18px 36px;

    color:#111;

    letter-spacing:2px;

    transition:0.4s;

}

.consult-btn:hover{

    background:#C8A27A;

    color:#fff;

}


/* REAL MAP */

.real-map iframe{

    width:100%;

    height:100%;

    min-height:520px;

    display:block;

    border:0;
}

/* =========================================================
   PREMIUM LUXURY CONSULT SECTION
========================================================= */

.luxury-consult-section{

    padding:120px 0;

    background:
    linear-gradient(
    to bottom,
    #f8f5f1,
    #efe7de);

    position:relative;

    overflow:hidden;

}

/* DECORATIVE BLUR */

.luxury-consult-section::before{

    content:'';

    position:absolute;

    width:420px;
    height:420px;

    background:
    rgba(200,162,122,0.08);

    border-radius:50%;

    top:-120px;
    right:-120px;

    filter:blur(40px);

}

/* CONTENT */

.luxury-consult-content{

    padding-right:50px;

}

.luxury-consult-content h2{

    font-size:72px;

    line-height:1.05;

    margin:
    20px 0 30px;

    color:#111;

}

.luxury-consult-content h2 span{

    display:block;

    color:#C8A27A;

    font-style:italic;

}

/* TEXT */

.luxury-consult-content p{

    color:#555;

    line-height:2;

    font-size:16px;

    max-width:500px;

}

/* INFO WRAP */

.consult-info-wrap{

    margin:
    45px 0;

}

/* ITEM */

.consult-info-item{

    display:flex;

    gap:20px;

    margin-bottom:28px;

    align-items:flex-start;

}

.consult-info-item i{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#07110E;

    color:#C8A27A;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

/* TITLE */

.consult-info-item h6{

    font-size:15px;

    letter-spacing:1px;

    margin-bottom:8px;

    color:#111;

}

/* BUTTON */

.luxury-consult-btn{

    display:inline-block;

    padding:
    18px 38px;

    background:#07110E;

    color:#fff;

    letter-spacing:2px;

    font-size:12px;

    transition:0.4s;

    border:
    1px solid #07110E;

}

.luxury-consult-btn:hover{

    background:#C8A27A;

    border-color:#C8A27A;

    color:#fff;

    transform:translateY(-4px);

}

/* MAP WRAPPER */

.luxury-map-wrapper{

    position:relative;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 30px 60px rgba(0,0,0,0.15);

}

/* MAP */

.luxury-map-wrapper iframe{

    width:100%;

    height:650px;

    border:0;

    filter:
    grayscale(20%)
    contrast(1.05);

}

/* FLOATING CARD */

.map-overlay-card{

    position:absolute;

    top:30px;
    left:30px;

    background:
    rgba(7,17,14,0.92);

    padding:
    22px 28px;

    border-radius:18px;

    backdrop-filter:blur(10px);

    z-index:10;

    border:
    1px solid rgba(200,162,122,0.2);

}

.map-overlay-card h5{

    color:#fff;

    font-size:24px;

    margin-bottom:8px;

}

.map-overlay-card p{

    color:#c8a27a;

    margin:0;

    font-size:14px;

    letter-spacing:1px;

}

.section-tag{

    color:#C8A27A;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:500;

}

/* MOBILE */

@media(max-width:991px){

    .luxury-consult-content{

        padding-right:0;

        margin-bottom:60px;

    }

    .luxury-consult-content h2{

        font-size:52px;

    }

}

@media(max-width:767px){

    .luxury-consult-section{

        padding:80px 0;

    }

    .luxury-consult-content h2{

        font-size:42px;

    }

    .luxury-map-wrapper iframe{

        height:450px;

    }

    .map-overlay-card{

        left:15px;
        right:15px;
        top:15px;

    }

}


/* =========================================================
   ULTRA PREMIUM CONTACT PAGE ANIMATIONS
========================================================= */

/* SMOOTH PAGE LOAD */

.contact-hero-content,
.contact-logo{

    animation:
    luxuryFadeUp 1.4s ease;

}

@keyframes luxuryFadeUp{

    from{

        opacity:0;
        transform:
        translateY(80px);

    }

    to{

        opacity:1;
        transform:
        translateY(0);

    }

}

/* HERO TITLE LUXURY REVEAL */

.contact-title{

    animation:
    titleLuxuryReveal 1.5s ease;

}

@keyframes titleLuxuryReveal{

    from{

        opacity:0;

        letter-spacing:12px;

        transform:
        translateY(40px);

    }

    to{

        opacity:1;

        letter-spacing:0;

        transform:
        translateY(0);

    }

}

/* GOLD SHIMMER */

.contact-title span{

    animation:
    goldPulse 4s ease-in-out infinite;

}

@keyframes goldPulse{

    0%{

        opacity:0.7;

    }

    50%{

        opacity:1;

        text-shadow:
        0 0 18px rgba(200,162,122,0.55);

    }

    100%{

        opacity:0.7;

    }

}

/* INFO ITEMS FLOAT */

.info-item{

    transition:
    all 0.5s ease;

}

.info-item:hover{

    transform:
    translateX(12px);

}

/* ICON GLOW */

.info-item i{

    transition:
    all 0.5s ease;

}

.info-item:hover i{

    background:#C8A27A;

    color:#07110E;

    transform:
    rotate(8deg)
    scale(1.08);

    box-shadow:
    0 10px 30px rgba(200,162,122,0.35);

}

/* FORM LUXURY EFFECT */

.contact-form-box{

    position:relative;

    overflow:hidden;

}

.contact-form-box h5 {
    color: #C8A27A;
}

/* LIGHT SWEEP */

.contact-form-box::before{

    content:'';

    position:absolute;

    top:0;
    left:-120%;

    width:50%;
    height:100%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.05),
    transparent);

    transform:skewX(-20deg);

    animation:
    sweepAnimation 8s linear infinite;

}

@keyframes sweepAnimation{

    0%{

        left:-120%;

    }

    100%{

        left:140%;

    }

}

/* INPUT ANIMATION */

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select{

    transition:
    all 0.4s ease;

}

/* INPUT FOCUS */

.contact-form-box input:focus,
.contact-form-box textarea:focus,
.contact-form-box select:focus{

    border-color:#C8A27A;

    box-shadow:
    0 0 0 4px rgba(200,162,122,0.08);

    transform:
    translateY(-3px);

    outline:none;

}

/* BUTTON PREMIUM */

.contact-btn{

    position:relative;

    overflow:hidden;

}

/* BUTTON SHINE */

.contact-btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent);

    transition:0.8s;

}

.contact-btn:hover::before{

    left:120%;

}

/* BUTTON FLOAT */

.contact-btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 15px 35px rgba(200,162,122,0.25);

}

/* MAP SECTION */

.luxury-map-wrapper{

    transition:
    all 0.8s ease;

}

/* MAP HOVER */

.luxury-map-wrapper:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 40px 80px rgba(0,0,0,0.18);

}

/* MAP ZOOM */

.luxury-map-wrapper iframe{

    transition:
    transform 1.4s ease;

}

.luxury-map-wrapper:hover iframe{

    transform:scale(1.03);

}

/* FLOATING CARD */

.map-overlay-card{

    animation:
    floatingCard 5s ease-in-out infinite;

}




@keyframes floatingCard{

    0%{

        transform:
        translateY(0);

    }

    50%{

        transform:
        translateY(-10px);

    }

    100%{

        transform:
        translateY(0);

    }

}

/* FEATURE BOXES */

.contact-feature-box{

    transition:
    all 0.5s ease;

    position:relative;

    overflow:hidden;

}



/* GLASS SHINE */

.contact-feature-box::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.04),
    transparent);

    transform:
    translateX(-150%);

    transition:1s;

}

.contact-feature-box:hover::before{

    transform:
    translateX(150%);

}

/* BOX FLOAT */

.contact-feature-box:hover{

    transform:
    translateY(-12px);

}

/* ICON ANIMATION */

.contact-feature-box .feature-icon{

    transition:
    all 0.5s ease;

}

.contact-feature-box:hover .feature-icon{

    transform:
    rotate(10deg)
    scale(1.1);

}

/* SCROLL REVEAL */

.reveal{

    opacity:0;

    transform:
    translateY(80px);

    transition:
    all 1.2s cubic-bezier(
    0.22,
    1,
    0.36,
    1);

}

.reveal.active{

    opacity:1;

    transform:
    translateY(0);

}

/* PARALLAX BACKGROUND */

.contact-hero{

    background-attachment:fixed;

}

/* LUXURY PARTICLES */

.contact-hero::after{

    content:'';

    position:absolute;

    inset:0;

    background-image:
    radial-gradient(
    rgba(200,162,122,0.18) 1px,
    transparent 1px);

    background-size:80px 80px;

    opacity:0.25;

    animation:
    particlesMove 20s linear infinite;

}

@keyframes particlesMove{

    from{

        transform:
        translateY(0);

    }

    to{

        transform:
        translateY(-80px);

    }

}