/* ==========================================
   ABOUT PAGE
========================================== */

.about-hero{
    position:relative;
    padding:170px 0 120px;
    background:#07131f;
    overflow:hidden;
}

.about-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(rgba(7,19,31,.82),rgba(7,19,31,.82)),
    url("../images/images2.jpg") center/cover no-repeat;
    z-index:0;
}

.about-hero .container{
    position:relative;
    z-index:2;
}

.about-hero-content{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:80px;
}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(201,168,106,.4);
    color:#c9a86a;
    letter-spacing:3px;
    font-size:12px;
    font-weight:600;
    margin-bottom:30px;
}

.hero-left h1{
    font-family:"Playfair Display",serif;
    font-size:66px;
    line-height:1.12;
    color:#fff;
    margin-bottom:28px;
}

.hero-divider{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:35px;
}

.hero-divider span{
    width:80px;
    height:1px;
    background:#c9a86a;
}

.hero-divider .diamond{
    width:10px;
    height:10px;
    background:#c9a86a;
    transform:rotate(45deg);
}

.hero-left p{
    color:#d5d5d5;
    font-size:18px;
    line-height:1.9;
    max-width:620px;
    margin-bottom:42px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:17px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.btn-primary{
    background:#c9a86a;
    color:#07131f;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:1px solid #c9a86a;
    color:#fff;
}

.btn-secondary:hover{
    background:#c9a86a;
    color:#07131f;
}

.hero-image{
    position:relative;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:560px;
    display:block;
    margin:auto;
}

/* ==========================================
ABOUT INTRO
========================================== */

.about-intro{
    padding:120px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:480px 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:10px;
}

.about-content span{
    display:inline-block;
    color:#c9a86a;
    font-size:13px;
    letter-spacing:3px;
    margin-bottom:16px;
    font-weight:700;
}

.about-content h2{
    font-family:"Playfair Display",serif;
    font-size:52px;
    color:#081521;
    margin-bottom:28px;
}

.about-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
    font-size:17px;
}

.about-signature{
    margin-top:40px;
}

.about-signature h3{
    font-family:"Playfair Display",serif;
    font-size:34px;
    color:#081521;
    margin-bottom:6px;
}

.about-signature p{
    color:#c9a86a;
    margin:0;
}

/* ==========================================
SECTION TITLE
========================================== */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#c9a86a;
    letter-spacing:3px;
    font-size:13px;
    font-weight:700;
}

.section-title h2{
    margin-top:18px;
    font-family:"Playfair Display",serif;
    font-size:48px;
    color:#081521;
}

/* ==========================================
WHY CHOOSE US
========================================== */

.why-me{
    padding:90px 0 100px;
    background:linear-gradient(
        180deg,
        #fdfbf8 0%,
        #faf7f2 50%,
        #fdfbf8 100%
    );
}

.why-header{
    text-align:center;
    margin-bottom:70px;
}

.why-label{
    display:block;
    color:#c99732;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.why-header h2{
    font-family:"Playfair Display",serif;
    font-size:54px;
    color:#0b1d38;
    margin:0;
    font-weight:700;
}

.why-divider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    margin-top:22px;
}

.why-divider span{
    width:55px;
    height:2px;
    background:#c99732;
}

.why-divider .diamond{
    width:10px;
    height:10px;
    background:#c99732;
    transform:rotate(45deg);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.why-item{
    text-align:center;
    padding:0 35px;
    position:relative;
}

.why-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:20px;
    width:1px;
    height:220px;
    background:#e8e8e8;
}

.why-icon{
    width:240px;
    height:240px;
    margin:0 auto 40px;
    border-radius:50%;
    background:#faf6f0;
    display:flex;
    justify-content:center;
    align-items:center;
}

.why-icon img{
    width:170px;
    height:170px;
    object-fit:contain;
}

.why-item h3{
    font-size:34px;
    font-family:"Playfair Display",serif;
    color:#0b1d38;
    margin-bottom:18px;
}

.why-item p{
    font-size:19px;
    color:#444;
    line-height:1.8;
    max-width:260px;
    margin:0 auto;
}

/* Tablet */

@media (max-width:991px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
    gap:45px 30px;
}

.why-item::after{
    display:none;
}

.why-icon{
    width:190px;
    height:190px;
    margin-bottom:28px;
}

.why-icon img{
    width:135px;
    height:135px;
}

.why-item h3{
    font-size:30px;
}

.why-item p{
    font-size:17px;
    max-width:230px;
}

}

/* Mobile */

@media (max-width:767px){

.why-header h2{
    font-size:34px;
}

.why-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.why-item{
    padding:0 12px;
}

.why-item h3{
    font-size:24px;
    margin-bottom:12px;
}

.why-item p{
    font-size:15px;
    line-height:1.7;
    max-width:280px;
    margin:0 auto;
}

.why-icon{
    width:150px;
    height:150px;
    margin-bottom:22px;
}

.why-icon img{
    width:105px;
    height:105px;
}

}

/* ==========================================
EXPERIENCE
========================================== */

.experience-section{
    padding:120px 0;
    background:#fff;
}

.experience-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.experience-item{
    border:1px solid #ececec;
    border-radius:10px;
    padding:40px;
    transition:.35s;
}

.experience-item:hover{
    border-color:#c9a86a;
    transform:translateY(-6px);
}

.experience-item h3{
    font-family:"Playfair Display",serif;
    font-size:30px;
    margin-bottom:18px;
    color:#081521;
}

.experience-item p{
    color:#666;
    line-height:1.9;
}

/* ==========================================
SERVICES
========================================== */

.services-section{
    padding:120px 0;
    background:#07131f;
}

.services-section .section-title h2{
    color:#fff;
}

.service-box{
    background:#0d1c2a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    text-align:center;
    padding:45px 35px;
    transition:.35s;
}

.service-box:hover{
    transform:translateY(-10px);
    border-color:#c9a86a;
}

.service-box i{
    font-size:42px;
    color:#c9a86a;
    margin-bottom:25px;
}

.service-box h3{
    font-family:"Playfair Display",serif;
    color:#fff;
    font-size:28px;
    margin-bottom:18px;
}

.service-box p{
    color:#d6d6d6;
    line-height:1.8;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* ==========================================
PROPERTY JOURNEY
========================================== */

.journey-section{
    padding:120px 0;
    background:#ffffff;
}

.journey-wrapper{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    position:relative;
}

.journey-wrapper::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:42px;
    height:2px;
    background:#e5e5e5;
    z-index:0;
}

.journey-step{
    position:relative;
    z-index:2;
    text-align:center;
}

.step-number{
    width:84px;
    height:84px;
    margin:0 auto 30px;
    border-radius:50%;
    background:#c9a86a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
}

.journey-step h3{
    font-family:"Playfair Display",serif;
    font-size:28px;
    color:#081521;
    margin-bottom:18px;
}

.journey-step p{
    color:#666;
    line-height:1.8;
    max-width:220px;
    margin:auto;
}

/* ==========================================
STATISTICS
========================================== */

.stats-section{
    padding:110px 0;
    background:#07131f;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    text-align:center;
    padding:45px 25px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
}

.stat-card h2{
    font-family:"Playfair Display",serif;
    color:#c9a86a;
    font-size:54px;
    margin-bottom:12px;
}

.stat-card p{
    color:#e2e2e2;
    font-size:17px;
    line-height:1.7;
}

/* ==========================================
GALLERY
========================================== */

.closing-gallery{
    padding:120px 0;
    background:#f8f8f8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.gallery-item{
    overflow:hidden;
    border-radius:12px;
}

.gallery-item img{
    width:100%;
    display:block;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* ==========================================
FAQ
========================================== */

.faq-section{
    padding:120px 0;
    background:#ffffff;
}

.faq-wrapper{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    padding:35px 0;
    border-bottom:1px solid #e8e8e8;
}

.faq-item:first-child{
    border-top:1px solid #e8e8e8;
}

.faq-item h3{
    font-family:"Playfair Display",serif;
    font-size:30px;
    color:#081521;
    margin-bottom:18px;
}

.faq-item p{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

/* ==========================================
CALL TO ACTION
========================================== */

.about-cta{
    padding:130px 0;
    background:#07131f;
    text-align:center;
}

.cta-content{
    max-width:760px;
    margin:0 auto;
}

.cta-content span{
    display:inline-block;
    color:#c9a86a;
    letter-spacing:3px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-content h2{
    font-family:"Playfair Display",serif;
    color:#ffffff;
    font-size:56px;
    line-height:1.2;
    margin-bottom:30px;
}

.cta-content p{
    color:#d8d8d8;
    line-height:1.9;
    font-size:18px;
    margin-bottom:45px;
}

.cta-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:18px 40px;
    background:#c9a86a;
    color:#07131f;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.cta-button:hover{
    transform:translateY(-4px);
}

/* ==========================================
RESPONSIVE
========================================== */

@media (max-width:1200px){

.about-hero-content,
.about-grid{
    grid-template-columns:1fr;
    gap:60px;
}

.hero-left{
    text-align:center;
}

.hero-divider{
    justify-content:center;
}

.hero-left p{
    margin-left:auto;
    margin-right:auto;
}

.hero-buttons{
    justify-content:center;
}

.why-grid,
.services-grid,
.stats-grid,
.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.experience-grid{
    grid-template-columns:1fr;
}

.journey-wrapper{
    grid-template-columns:1fr;
}

.journey-wrapper::before{
    display:none;
}

}

@media (max-width:768px){

.about-hero{
    padding:130px 0 90px;
}

.hero-left h1{
    font-size:42px;
}

.about-content h2,
.section-title h2,
.cta-content h2{
    font-size:36px;
}

.hero-left p,
.about-content p,
.faq-item p,
.cta-content p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.btn-primary,
.btn-secondary,
.cta-button{
    width:100%;
}

.why-grid,
.services-grid,
.stats-grid,
.gallery-grid{
    grid-template-columns:1fr;
}

.about-grid{
    gap:40px;
}

.about-image{
    order:-1;
}

.hero-image img{
    max-width:380px;
}

.step-number{
    width:70px;
    height:70px;
    font-size:20px;
}

.journey-step h3,
.service-box h3,
.why-card h3,
.experience-item h3,
.faq-item h3{
    font-size:24px;
}

.stat-card h2{
    font-size:42px;
}

.about-cta{
    padding:90px 0;
}

}

/* ==========================================
   EXTRA RESPONSIVE IMPROVEMENTS
========================================== */

@media (max-width:1024px){

    .about-hero-content{
    gap:30px;
    align-items:center;
}

    .hero-left h1{
        font-size:56px;
    }

    .hero-left p{
        font-size:17px;
    }

    .about-grid{
    gap:40px;
    }

    .about-content h2{
        font-size:44px;
    }
    
.hero-image img{
    max-width:430px;
}
}

@media (max-width:768px){

    .about-hero{
    padding:120px 0 60px;
}

    .hero-tag{
        margin-bottom:20px;
    }

    .hero-left h1{
        font-size:40px;
        line-height:1.2;
    }

    .hero-divider{
    margin-bottom:18px;
}

    .hero-buttons{
    margin-top:12px;
    gap:12px;
}

    .btn-primary,
    .btn-secondary{
    width:100%;
    max-width:320px;
    margin:0 auto;
    height:54px;
    font-size:16px;
}

    .hero-left p{
        max-width:100%;
    }

    .hero-image img{
    max-width:300px;
}

    .about-intro{
        padding:80px 0;
    }

    .about-image img{
    width:100%;
    max-width:340px;
    margin:0 auto;
}

    .about-content{
        text-align:center;
    }
    
    .about-content p{
    max-width:100%;
    margin:0 auto 18px;
}

    .about-signature{
        text-align:center;
    }

}

@media (max-width:480px){

    .about-hero{
        padding:130px 0 70px;
    }

    .hero-left h1{
        font-size:34px;
    }

    .hero-left p{
        font-size:15px;
    }

    .hero-image img{
        max-width:280px;
    }

    .about-content h2{
        font-size:30px;
    }

    .section-title h2{
        font-size:30px;
    }

    .why-header h2{
        font-size:30px;
    }

    .cta-content h2{
        font-size:30px;
    }

    .cta-content p{
        font-size:15px;
    }

}
