/* ========================================= */
/* TRUE YOG - CONTACT PAGE */
/* ========================================= */

/* ========================================= */
/* CONTACT HERO */
/* ========================================= */

.contact-hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    color:#fff;
}

.contact-hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.contact-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.contact-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        rgba(0,0,0,.72),
        rgba(15,40,25,.60),
        rgba(31,122,76,.35)
    );
    z-index:2;
}

/* ========================================= */
/* FLOATING SHAPES */
/* ========================================= */

.hero-shapes{
    position:absolute;
    inset:0;
    z-index:3;
    overflow:hidden;
    pointer-events:none;
}

.hero-shapes span{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    animation:contactFloat 8s ease-in-out infinite;
}

.hero-shapes span:nth-child(1){
    width:220px;
    height:220px;
    top:10%;
    left:8%;
}

.hero-shapes span:nth-child(2){
    width:150px;
    height:150px;
    top:22%;
    right:10%;
    animation-delay:2s;
}

.hero-shapes span:nth-child(3){
    width:260px;
    height:260px;
    bottom:-60px;
    right:22%;
    animation-delay:4s;
}

/* ========================================= */
/* HERO CONTENT */
/* ========================================= */

.contact-hero .container{
    position:relative;
    z-index:5;
}

.contact-hero-content{
    max-width:760px;
}

.contact-hero-content h1{
    font-family:"Playfair Display",serif;
    font-size:4rem;
    line-height:1.15;
    margin:20px 0;
    font-weight:700;
}

.contact-hero-content p{
    font-size:1.08rem;
    line-height:1.9;
    color:rgba(255,255,255,.92);
    margin-bottom:35px;
    max-width:650px;
}

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

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary{
    min-width:220px;
    justify-content:center;
}

/* ========================================= */
/* BREADCRUMB */
/* ========================================= */

.breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:.95rem;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb a:hover{
    color:#8CE99A;
}

.breadcrumb i{
    font-size:.8rem;
    color:rgba(255,255,255,.8);
}

.breadcrumb .active{
    color:#8CE99A;
    font-weight:600;
}

/* ========================================= */
/* FLOAT ANIMATION */
/* ========================================= */

@keyframes contactFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-22px);
    }

    100%{
        transform:translateY(0);
    }

}
/* ========================================= */
/* CONTACT INFO SECTION */
/* ========================================= */

.contact-info{
    background:#F6FCF8;
}

.contact-info-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* ========================================= */
/* CONTACT CARD */
/* ========================================= */

.contact-card{

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(16px);

    border:1px solid rgba(31,122,76,.08);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.contact-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        #1F7A4C,
        #2FA66A
    );

    transform:scaleX(0);

    transition:.35s;

    transform-origin:left;

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(31,122,76,.16);

}

.contact-card:hover::before{

    transform:scaleX(1);

}

/* ========================================= */
/* ICON */
/* ========================================= */

.contact-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        #1F7A4C,
        #2FA66A
    );

    color:#fff;

    font-size:1.8rem;

    box-shadow:0 15px 35px rgba(31,122,76,.25);

    transition:.35s;

}

.contact-card:hover .contact-icon{

    transform:rotateY(180deg);

}

.contact-icon.whatsapp{

    background:linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );

}

/* ========================================= */
/* CONTENT */
/* ========================================= */

.contact-card h3{

    font-size:1.35rem;

    margin-bottom:18px;

    color:#222;

}

.contact-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:22px;

    font-size:.97rem;

}

.contact-link{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border-radius:40px;

    text-decoration:none;

    background:#1F7A4C;

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.contact-link:hover{

    background:#2FA66A;

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(31,122,76,.25);

}
/* ========================================= */
/* CONTACT FORM SECTION */
/* ========================================= */

.contact-form-section{
    background:#fff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* ========================================= */
/* SUPPORT IMAGE */
/* ========================================= */

.contact-image{
    position:relative;
}

.contact-image img{
    width:100%;
    border-radius:22px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.support-card{

    position:absolute;

    left:30px;
    bottom:30px;

    display:flex;
    align-items:center;
    gap:18px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    padding:18px 24px;

    border-radius:18px;

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

}

.support-card i{

    width:60px;
    height:60px;

    border-radius:50%;

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

    background:linear-gradient(135deg,#1F7A4C,#2FA66A);

    color:#fff;

    font-size:1.4rem;

}

.support-card h4{

    color:#222;

    margin-bottom:5px;

}

.support-card p{

    color:#666;

    font-size:.92rem;

}

/* ========================================= */
/* FORM BOX */
/* ========================================= */

.contact-form-box{

    background:#fff;

    padding:50px;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.contact-form-box h2{

    margin:18px 0;

}

.contact-form-box p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

/* ========================================= */
/* FORM */
/* ========================================= */

.contact-form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.form-group{

    width:100%;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid #E3E8E5;

    border-radius:14px;

    background:#FAFAFA;

    font-size:1rem;

    color:#222;

    transition:.3s;

    outline:none;

}

.form-group textarea{

    resize:vertical;

    min-height:170px;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#1F7A4C;

    background:#fff;

    box-shadow:0 0 0 4px rgba(31,122,76,.12);

}

/* ========================================= */
/* CHECKBOX */
/* ========================================= */

.form-check{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.form-check label{

    display:flex;

    gap:12px;

    cursor:pointer;

    line-height:1.7;

    color:#555;

    font-size:.95rem;

}

.form-check input{

    margin-top:5px;

}

/* ========================================= */
/* SUBMIT BUTTON */
/* ========================================= */

.submit-btn{

    width:100%;

    justify-content:center;

    margin-top:10px;

}

/* ========================================= */
/* TRUST HIGHLIGHTS */
/* ========================================= */

.contact-highlights{

    margin-top:45px;

    display:grid;

    gap:18px;

}

.highlight-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.highlight-item i{

    width:55px;
    height:55px;

    border-radius:50%;

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

    background:linear-gradient(135deg,#1F7A4C,#2FA66A);

    color:#fff;

    flex-shrink:0;

}

.highlight-item h4{

    margin-bottom:6px;

    color:#222;

}

.highlight-item p{

    margin:0;

    color:#666;

}
/* ========================================= */
/* QUICK CONTACT STRIP */
/* ========================================= */

.contact-strip{

    position:relative;

    padding:90px 0;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        #1F7A4C,
        #2FA66A
    );

}

.contact-strip::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-120px;
    left:-120px;

}

.contact-strip::after{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-100px;
    right:-80px;

}

.contact-strip-content{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.strip-left{

    flex:1;

    color:#fff;

}

.strip-left h2{

    color:#fff;

    margin:18px 0;

}

.strip-left p{

    color:rgba(255,255,255,.92);

    line-height:1.9;

}

.strip-right{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:30px;

}

.trust-counter{

    text-align:center;

}

.trust-counter h3{

    font-size:3.4rem;

    color:#fff;

    font-family:"Playfair Display",serif;

}

.trust-counter span{

    color:rgba(255,255,255,.9);

    font-size:1rem;

}

.strip-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.strip-buttons .btn-primary{

    background:#fff;

    color:#1F7A4C;

}

.strip-buttons .btn-primary:hover{

    background:#F6FCF8;

}

.strip-buttons .btn-secondary{

    border:2px solid rgba(255,255,255,.6);

    color:#fff;

    background:transparent;

}

.strip-buttons .btn-secondary:hover{

    background:#fff;

    color:#1F7A4C;

}

/* ========================================= */
/* WHY CONTACT */
/* ========================================= */

.why-contact{

    background:#F6FCF8;

}

.why-contact-grid{

    margin-top:70px;

    display:grid;

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

    gap:30px;

}

.why-card{

    background:#fff;

    padding:45px 35px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #1F7A4C,
        #2FA66A
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 60px rgba(31,122,76,.15);

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-icon{

    width:85px;
    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

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

    background:linear-gradient(
        135deg,
        #1F7A4C,
        #2FA66A
    );

    color:#fff;

    font-size:2rem;

    box-shadow:0 18px 35px rgba(31,122,76,.25);

}

.why-card h3{

    margin-bottom:18px;

    color:#222;

}

.why-card p{

    color:#666;

    line-height:1.9;

}
/* ========================================= */
/* FAQ SECTION */
/* ========================================= */

.faq-section{
    background:#fff;
}

.faq-container{
    max-width:900px;
    margin:70px auto 0;
}

.faq-item{
    background:#fff;
    border-radius:18px;
    margin-bottom:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    overflow:hidden;
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-4px);
}

.faq-question{

    width:100%;

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

    padding:24px 30px;

    border:none;
    background:#fff;

    cursor:pointer;

    font-size:1.05rem;
    font-weight:600;
    color:#222;
    text-align:left;

}

.faq-question i{

    color:#1F7A4C;

    transition:.35s;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 30px 25px;

    color:#666;

    line-height:1.9;

}

/* ========================================= */
/* GOOGLE MAP */
/* ========================================= */

.map-section{

    background:#F6FCF8;

}

.map-wrapper{

    margin-top:60px;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.map-wrapper iframe{

    width:100%;

    height:500px;

    border:0;

    display:block;

}

/* ========================================= */
/* FINAL CTA */
/* ========================================= */

.contact-cta{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #1F7A4C,
        #2FA66A
    );

}

.cta-shapes{

    position:absolute;

    inset:0;

    overflow:hidden;

}

.cta-shapes span{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:contactFloat 9s ease-in-out infinite;

}

.cta-shapes span:nth-child(1){

    width:260px;
    height:260px;

    top:-80px;
    left:-60px;

}

.cta-shapes span:nth-child(2){

    width:180px;
    height:180px;

    right:8%;
    top:18%;

    animation-delay:2s;

}

.cta-shapes span:nth-child(3){

    width:320px;
    height:320px;

    right:-100px;
    bottom:-100px;

    animation-delay:4s;

}

.contact-cta-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#fff;

}

.contact-cta-content h2{

    color:#fff;

    font-size:3rem;

    margin:20px 0;

}

.contact-cta-content p{

    max-width:760px;

    margin:0 auto 40px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .btn-primary{

    background:#fff;

    color:#1F7A4C;

}

.cta-buttons .btn-primary:hover{

    background:#F6FCF8;

}

.cta-buttons .btn-secondary{

    background:transparent;

    color:#fff;

    border:2px solid rgba(255,255,255,.6);

}

.cta-buttons .btn-secondary:hover{

    background:#fff;

    color:#1F7A4C;

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

@media (max-width:991px){

    /* Hero */

    .contact-hero{
        min-height:85vh;
    }

    .contact-hero-content{
        text-align:center;
        margin:auto;
    }

    .contact-hero-content h1{
        font-size:3rem;
    }

    .hero-buttons{
        justify-content:center;
    }

    .breadcrumb{
        justify-content:center;
    }

    /* Contact Cards */

    .contact-info-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* Contact Form */

    .contact-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .contact-image{
        order:1;
    }

    .contact-form-box{
        order:2;
        padding:40px;
    }

    .support-card{
        left:20px;
        right:20px;
        bottom:20px;
    }

    /* Strip */

    .contact-strip-content{
        flex-direction:column;
        text-align:center;
    }

    .strip-buttons{
        justify-content:center;
    }

    /* Why Contact */

    .why-contact-grid{
        grid-template-columns:1fr;
    }

    /* CTA */

    .contact-cta-content h2{
        font-size:2.5rem;
    }

}

@media (max-width:768px){

    .contact-hero{
        min-height:80vh;
        padding:120px 0 80px;
    }

    .contact-hero-content h1{
        font-size:2.4rem;
    }

    .contact-hero-content p{
        font-size:1rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary{
        width:100%;
    }

    .contact-info-grid{
        grid-template-columns:1fr;
    }

    .contact-card{
        padding:35px 25px;
    }

    .contact-form-box{
        padding:30px;
    }

    .support-card{
        position:relative;
        left:auto;
        right:auto;
        bottom:auto;
        margin-top:20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        padding:16px;
    }

    .highlight-item{
        align-items:flex-start;
    }

    .faq-question{
        padding:20px;
        font-size:1rem;
    }

    .faq-answer p{
        padding:0 20px 20px;
    }

    .map-wrapper iframe{
        height:350px;
    }

    .contact-cta{
        padding:90px 0;
    }

    .contact-cta-content h2{
        font-size:2rem;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary{
        width:100%;
        max-width:320px;
        justify-content:center;
    }

}

@media (max-width:576px){

    .contact-hero-content h1{
        font-size:2rem;
    }

    .contact-form-box{
        padding:25px 20px;
    }

    .contact-card{
        padding:30px 20px;
    }

    .contact-icon{
        width:70px;
        height:70px;
        font-size:1.5rem;
    }

    .support-card{
        flex-direction:column;
        text-align:center;
    }

    .support-card i{
        margin-bottom:10px;
    }

    .trust-counter h3{
        font-size:2.6rem;
    }

    .contact-cta-content h2{
        font-size:1.8rem;
    }

    .map-wrapper iframe{
        height:300px;
    }

}

