/*====================================================
VIRTUE HSE HOMEPAGE V3.0
PART 1
====================================================*/
/*-------------------------
RESET
--------------------------*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:"Inter",sans-serif;
    color:#173c30;
    background:#ffffff;
    line-height:1.7;
    overflow-x:hidden;
}
/*-------------------------
COLOURS
--------------------------*/
:root{
    --green:#1f6b50;
    --green-dark:#173c30;
    --green-light:#edf6f2;
    --white:#ffffff;
    --light:#f8faf9;
    --text:#555;
}
/*-------------------------
GLOBAL
--------------------------*/
img{
    max-width:100%;
    display:block;
}
a{
    text-decoration:none;
}
.container{
    width:min(1180px,90%);
    margin:auto;
}
section{
    padding:50px 0;
}
.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}
.section-heading span{
    display:inline-block;
    margin-bottom:15px;
    color:var(--green);
    font-size:.85rem;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}
.section-heading h2{
    font-size:3rem;
    line-height:1.2;
    margin-bottom:25px;
    color:var(--green-dark);
}
.section-heading p{
    font-size:1.15rem;
    color:var(--text);
}
/*-------------------------
HEADER
--------------------------*/
header{
    position:fixed;
    top:20px;
    left:0;
    width:100%;
    z-index:999;
}
.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(14px);
    border-radius:18px;
    padding:18px 35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.logo img{
    height:100px;
}
nav ul{
    list-style:none;
    display:flex;
    gap:40px;
}
nav a{
    color:var(--green-dark);
    font-weight:1000;
    transition:.3s;
}
nav a:hover{
    color:var(--green);
}
/*-------------------------
BUTTONS
--------------------------*/
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:999px;
    font-weight:700;
    transition:.35s;
}
.btn-primary{
    background:var(--green);
    color:white;
}
.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(31,107,80,.25);
}
.btn-secondary{
    border:2px solid rgba(255,255,255,.4);
    color:white;
}
.btn-secondary:hover{
    background:white;
    color:var(--green-dark);
}
.btn-outline{
    border:2px solid var(--green);
    color:var(--green);
}
.btn-outline:hover{
    background:var(--green);
    color:white;
}
/*-------------------------
HERO
--------------------------*/
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#10251d;
}
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("images/hero.png") center/cover;
    opacity:.18;
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(10,25,20,.92),
        rgba(10,25,20,.72)
    );
}
.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
    padding-top:50px;
}
.eyebrow{
    display:inline-block;
    color:#9ed7bd;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:22px;
    font-size:1.5rem;
}
.hero h1{
    color:white;
    font-size:3.5rem;
    line-height:1.05;
    margin-bottom:30px;
}
.hero p{
    color:#d8e7df;
    font-size:1.25rem;
    max-width:620px;
    margin-bottom:40px;
}
.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
.hero-image img{
    border-radius:24px;
    box-shadow:0 35px 70px rgba(0,0,0,.35);
}
/*-------------------------
CHAPTER ONE
--------------------------*/
.chapter-one{
    background:white;
}
.pillar-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}
.pillar{
    background:var(--light);
    padding:40px;
    border-radius:18px;
    transition:.35s;
}
.pillar:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}
.pillar h3{
    margin-bottom:18px;
    font-size:1.8rem;
    color:var(--green-dark);
}
.pillar p{
    color:var(--text);
}
/*-------------------------
CHAPTER SPACING
--------------------------*/
.chapter{
    position:relative;
}
.chapter + .chapter{
    padding-top:50px;
}
/*====================================================
CHAPTER TWO
====================================================*/
.chapter-two{
    background:#f8faf9;
}
.solutions-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:70px;
    max-width:1500px;
    margin:70px auto 0;
}
.solution{
    width:340px;
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    display:flex;
    flex-direction:column;
}
.solution:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 55px rgba(0,0,0,.08);
}
.solution-line{
    width:70px;
    height:4px;
    background:var(--green);
    border-radius:50px;
    margin-bottom:28px;
}
.solution h3{
    font-size:2rem;
    color:var(--green-dark);
    margin-bottom:22px;
    line-height:1.25;
}
.solution p{
    color:var(--text);
    font-size:1.05rem;
    margin-bottom:28px;
    max-width:850px;
}
.solution a{
    color:var(--green);
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:.3s;
    margin-top:auto;
}
.solution a:hover{
    transform:translateX(8px);
}
/*----------------------------------------------------
Transition into Knowledge Centre
----------------------------------------------------*/
.knowledge{
    background:#ffffff;
    position:relative;
}
.knowledge::before{
    content:"";
    display:block;
    width:120px;
    height:2px;
    background:rgba(31,107,80,.18);
    margin:0 auto 90px;
}
/*----------------------------------------------------
Knowledge Grid
----------------------------------------------------*/
.knowledge-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    margin-top:70px;
}
.knowledge-card{
    background:var(--light);
    padding:30px;
    border-radius:20px;
    transition:.35s;
    border:1px solid rgba(31,107,80,.05);
}
.knowledge-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}
.knowledge-card h3{
    color:var(--green-dark);
    font-size:1.5rem;
    margin-bottom:18px;
}
.knowledge-card p{
    color:var(--text);
    line-height:1.8;
}
/*----------------------------------------------------
Knowledge Button
----------------------------------------------------*/
.knowledge-button{
    text-align:center;
    margin-top:70px;
}
.knowledge-button .btn{
    min-width:320px;
}
/*----------------------------------------------------
Chapter Separation
----------------------------------------------------*/
.knowledge{
    padding-bottom:50px;
}
.chapter-three{
    padding-top:50px;
}
/*====================================================
CHAPTER THREE
====================================================*/
.chapter-three{
    background:#f4f8f6;
}
.difference-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    margin-top:60px;
}
.difference-card{
    background:#ffffff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
    transition:.35s;
}
.difference-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}
.difference-card h3{
    font-size:1.6rem;
    margin-bottom:18px;
    color:var(--green-dark);
}
.difference-card p{
    color:var(--text);
}
/*====================================================
CALL TO ACTION
====================================================*/
.cta{
    background:#173c30;
}
.cta-box{
    text-align:center;
    max-width:850px;
    margin:auto;
}
.cta-box span{
    display:inline-block;
    color:#8fd1b0;
    font-size:.85rem;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
    font-weight:700;
}
.cta-box h2{
    color:#ffffff;
    font-size:3.2rem;
    line-height:1.15;
    margin-bottom:30px;
}
.cta-box p{
    color:#dbe8e1;
    font-size:1.15rem;
    margin-bottom:40px;
}
/*====================================================
FOOTER
====================================================*/
footer{
    background:#10251d;
    color:#dbe8e1;
    padding:0px 0 10px;
}
.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:40px;
    align-items:start;
}
.footer-grid > div:first-child{
    justify-self:start;
    text-align:left;
    padding-top:100px;
}
.footer-grid > div:nth-child(2){
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}
.footer-grid > div:nth-child(2) p{
    max-width:380px;
    margin:0;
}
.footer-grid > div:last-child{
    justify-self:end;
    text-align:left;
    padding-top:100px;
}
.footer-logo{
    height:200px;
    padding-top:10px;
}
footer h4{
    color:#ffffff;
    margin-bottom:10px;
}
footer ul{
    list-style:none;
    padding:0;
    text-align:left;
}
footer li{
    margin-bottom:4px;
}
footer a{
    color:#dbe8e1;
    transition:.3s;
}
footer a:hover{
    color:#ffffff;
}
.footer-bottom{
    text-align:center;
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#8aa49a;
}
.footer-grid > div:nth-child(2){
    text-align:center;
}
.footer-grid > div:nth-child(2) p{
    max-width:420px;
    margin:0 auto;
}
.footer-container{
    width:100%;
    max-width:1600px;
    margin:0 auto;
    padding:0 60px;
}
/*====================================================
RESPONSIVE
====================================================*/
@media(max-width:992px){
    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }
    .hero p{
        margin-left:auto;
        margin-right:auto;
    }
    .hero-buttons{
        justify-content:center;
    }
    .pillar-grid,
    .knowledge-grid,
    .difference-grid{
        grid-template-columns:1fr;
    }
    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }
    .footer-logo{
        margin:0 auto 25px;
    }
}
@media(max-width:768px){
    section{
        padding:90px 0;
    }
    .hero{
        min-height:auto;
        padding-top:150px;
    }
    .hero h1{
        font-size:3rem;
    }
    .section-heading h2{
        font-size:2.3rem;
    }
    .solution,
    .knowledge-card,
    .difference-card{
        padding:35px;
    }
    .cta-box h2{
        font-size:2.4rem;
    }
    nav{
        display:none;
    }
    .nav-container{
        justify-content:center;
    }
}
@media(max-width:480px){
    .container{
        width:92%;
    }
    .hero h1{
        font-size:2.4rem;
    }
    .btn{
        width:100%;
    }
    .hero-buttons{
        flex-direction:column;
    }
    .knowledge-button .btn{
        min-width:100%;
    }
}
/*====================================================
ABOUT PAGE
====================================================*/
.about-hero{
    background:#fff;
    padding:170px 0 110px;
    text-align:center;
}
.page-tag{
    display:inline-block;
    font-size:.82rem;
    letter-spacing:4px;
    font-weight:700;
    color:var(--green);
    text-transform:uppercase;
    margin-bottom:25px;
}
.about-hero h1{
    font-size:4.8rem;
    line-height:1.05;
    color:var(--green-dark);
    max-width:1500px;
    margin:20px auto 35px;
}
.hero-lead{
    max-width:1500px;
    margin:0 auto;
    font-size:1.18rem;
    line-height:1.9;
    color:var(--text);
}
.purpose{
    background:#f7f8f7;
    padding:110px 0;
}
.purpose-grid{
    display:grid;
    grid-template-columns:42% 58%;
    gap:90px;
    align-items:start;
}
.purpose-left h2{
    font-size:3rem;
    line-height:1.12;
    color:var(--green-dark);
    margin-top:18px;
}
.purpose-right p{
    font-size:1.08rem;
    line-height:1.95;
    color:var(--text);
    margin-bottom:32px;
}
/*====================================================
VIRTUE PRINCIPLES
====================================================*/
.virtue-principles{
    padding:120px 0;
    background:#fff;
}
.virtue-principles h2{
    font-size:3rem;
    color:var(--green-dark);
    margin:20px 0;
    text-align:center;
}
.values-intro{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
    line-height:1.9;
}
.principles-layout{
    display:grid;
    grid-template-columns:45% 55%;
    gap:70px;
    align-items:start;
}
.principles-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.principle{
    display:flex;
    align-items:center;
    gap:25px;
    background:#f7f8f7;
    border-radius:18px;
    padding:22px 30px;
}
.principle-letter{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--green);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.5rem;
    font-weight:700;
    flex-shrink:0;
}
.principle-text h3{
    color:var(--green-dark);
    margin-bottom:8px;
}
.principle-text p{
    margin:0;
    line-height:1.7;
}
.principles-image img{
    width:100%;
    height:620px;
    object-fit:cover;
    object-position:center;
    border-radius:22px;
    display:block;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}
.image-caption h4{
    color:var(--green-dark);
    font-size:1.2rem;
    margin-bottom:8px;
    font-weight:700;
}
.project-location{
    color:var(--green);
    font-weight:600;
    margin-bottom:12px;
    font-size:.95rem;
    letter-spacing:.3px;
}
.image-caption p{
    color:var(--text);
    font-size:.95rem;
    line-height:1.7;
    max-width:520px;
}
/*====================================================
EXPERIENCE
====================================================*/
.experience{
    background:#f7f8f7;
    padding:140px 0;
    border-top:1px solid #eceeee;
}
.experience-grid{
    display:grid;
    grid-template-columns:42% 58%;
    gap:90px;
    align-items:start;
}
.experience-left h2{
    font-size:3rem;
    line-height:1.12;
    color:var(--green-dark);
    margin-top:18px;
}
.experience-right p{
    font-size:1.08rem;
    line-height:1.95;
    color:var(--text);
    margin-bottom:28px;
}
/*====================================================
ABOUT CTA
====================================================*/
.about-cta{
    background:var(--green-dark);
    color:#fff;
    text-align:center;
    padding:40px 0;
}
.about-cta h2{
    font-size:3.2rem;
    margin:20px 0 25px;
    color:#fff;
}
.about-cta p{
    max-width:720px;
    margin:0 auto 45px;
    font-size:1.12rem;
    line-height:1.9;
    color:rgba(255,255,255,.85);
}
.about-cta .page-tag{
    color:rgba(255,255,255,.7);
}
/*====================================================
SERVICES PAGE
====================================================*/
/*------------------------------------
Hero
------------------------------------*/
.help-hero{
    padding:190px 0 60px;
    background:#ffffff;
}
.help-hero h1{
    max-width:1800px;
    margin:20px 0 30px;
    text-align:center;
    font-size:4rem;
    line-height:1.15;
    color:var(--green-dark);
}
.hero-intro{
    max-width:760px;
    margin:0 auto;
    text-align:center;
    font-size:1.15rem;
    line-height:1.9;
}
/*------------------------------------
Chapter
------------------------------------*/
.service-chapter{
    padding:50px 0;
}
.chapter-one{
    background:#f7f8f7;
}
.chapter-two{
    background:#ffffff;
}
.chapter-three{
    background:#f7f8f7;
}
.chapter-heading{
    margin-bottom:60px;
}
.chapter-heading h2{
    font-size:3rem;
    color:var(--green-dark);
    margin:20px 0;
}
.chapter-intro{
    max-width:1800px;
    font-size:1.15rem;
    line-height:1.9;
}
/*------------------------------------
Overview
------------------------------------*/
.chapter-overview{
    max-width:1800px;
    margin-bottom:90px;
}
.chapter-overview h3{
    color:var(--green-dark);
    margin-bottom:25px;
}
.chapter-overview p{
    margin-bottom:24px;
    line-height:1.9;
}
/*------------------------------------
Interactive Layout
------------------------------------*/
.support-section{
    display:grid;
    grid-template-columns:42% 58%;
    gap:70px;
    align-items:start;
}
.support-left h3{
    color:var(--green-dark);
    margin-bottom:30px;
}
.support-list{
    display:flex;
    flex-direction:column;
    gap:16px;
    max-width:450px;
}
.support-item{
    background:#fff;
    border:1px solid #e3e5e5;
    border-radius:14px;
    padding:18px 22px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}
.support-item:hover{
    transform:translateX(6px);
    background:var(--green);
    color:#fff;
}
.support-item.active{
    background:var(--green);
    color:#fff;
}
/*------------------------------------
Support Panel
------------------------------------*/
.support-panel{
    position:sticky;
    top:120px;
    min-height:520px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    background:#ffffff;
    border-radius:22px;
    padding:40px;
    border:1px solid #e6e9e8;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:opacity .25s ease;
}
.support-panel.fade{
    opacity:.25;
}
.panel-tag{
    display:inline-block;
    align-self:flex-start;
    padding:8px 16px;
    border-radius:999px;
    background:#eef5f2;
    color:var(--green);
    font-size:.85rem;
    font-weight:700;
    letter-spacing:.05em;
    margin-bottom:12px;
}
.support-panel h3{
    color:var(--green-dark);
    font-size:2rem;
    margin-bottom:20px;
}
.support-panel p{
    line-height:1.4;
    margin-bottom:20px;
}
.support-panel ul{
    padding-left:20px;
    margin-bottom:30px;
}
.support-panel li{
    margin-bottom:12px;
    line-height:1.2;
}
.panel-footer{
    margin-top:auto;
    padding-top:24px;
    border-top:1px solid #ececec;
    font-weight:600;
    color:var(--green-dark);
}
/*------------------------------------
CTA
------------------------------------*/
.services-cta{
    padding:50px 0;
    background:#ffffff;
}
.cta-card{
    background:#ffffff;
    border-radius:24px;
    padding:30px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.cta-card h2{
    font-size:3rem;
    color:var(--green-dark);
    margin:20px 0;
}
.cta-card p{
    max-width:760px;
    margin:0 auto 40px;
    line-height:1.9;
}
.support-panel .btn{
    display:block;
    width:220px;
    margin:30px auto 0;
}
/*------------------------------------
Responsive
------------------------------------*/
@media (max-width:900px){
    .help-hero h1{
        font-size:3rem;
    }
    .chapter-heading h2{
        font-size:2.4rem;
    }
    .support-section{
        grid-template-columns:1fr;
        gap:50px;
    }
    .support-list{
        max-width:100%;
    }
    .support-panel{
        position:relative;
        top:auto;
        min-height:auto;
    }
    .cta-card{
        padding:45px 30px;
    }
    .cta-card h2{
        font-size:2.3rem;
    }
}
/*====================================================
KNOWLEDGE CENTRE
====================================================*/
/*====================================================
HERO
====================================================*/
.knowledge-hero{
    background:#ffffff;
    padding:180px 0 50px;
    text-align:center;
}
.knowledge-hero h1{
    font-size:4.4rem;
    color:var(--green-dark);
    line-height:1.05;
    max-width:900px;
    margin:20px auto 30px;
}
.knowledge-hero .hero-lead{
    max-width:780px;
    margin:0 auto;
    font-size:1.15rem;
    line-height:1.9;
}
/*====================================================
KNOWLEDGE CHAPTERS
====================================================*/
.knowledge-section.chapter-one{
    background:#f7f8f7;
    padding:50px 0;
}
.knowledge-section.chapter-three{
    background:#ffffff;
    padding:90px 0;
}
.knowledge-section.chapter-two{
    background:#f4f8f6;
    padding:120px 0;
}
.chapter-header{
    text-align:center;
    margin-bottom:70px;
}
.chapter-label{
    color:var(--green);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}
.chapter-header h2{
    font-size:3rem;
    color:var(--green-dark);
    margin-bottom:25px;
}
.chapter-header p{
    max-width:850px;
    margin:auto;
    line-height:1.9;
    font-size:1.1rem;
}
/*====================================================
PRACTICAL RESOURCES
====================================================*/
.resources-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}
.resource-card{
    background:#ffffff;
    padding:20px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.3s;
}
.resource-card:hover{
    transform:translateY(-8px);
}
.resource-type{
    display:inline-block;
    background:var(--green-light);
    color:var(--green-dark);
    padding:8px 16px;
    border-radius:30px;
    font-size:.8rem;
    font-weight:700;
    margin-bottom:22px;
}
.resource-card{
    background:#ffffff;
    padding:20px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.3s;
    display:flex;
    flex-direction:column;
     min-height:320px;
}
.resource-card p{
    line-height:1.8;
    margin-bottom:30px;
}
.resource-card .btn{
    display:inline-flex;
    margin-top:auto;
    align-self:flex-start;
}
/*====================================================
COMPLIMENTARY GUIDE
====================================================*/
.guide-panel{
    display:grid;
    grid-template-columns:500px 1fr;
    gap:70px;
    align-items:center;
    background:#ffffff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}
.guide-content h3{
    font-size:2.5rem;
    line-height:1.2;
    color:var(--green-dark);
    margin:20px 0 30px;
}
.guide-content p{
    line-height:1.9;
    margin-bottom:30px;
}
.guide-list{
    list-style:none;
    padding:0;
    margin:0 0 40px;
}
.guide-list li{
    padding:12px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
}
.guide-list li:last-child{
    border-bottom:none;
}
.guide-image{
    text-align:center;
}
.guide-image img{
    width:100%;
    max-width:340px;
    margin:auto;
    border-radius:16px;
    box-shadow:0 25px 60px rgba(0,0,0,.20);
    transition:.3s;
}
.guide-image img:hover{
    transform:translateY(-8px);
}
.guide-content .btn{
    display:inline-flex;
    margin-top:40px;
}
/*====================================================
HSE RESOURCES
====================================================*/
.hse-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}
.hse-card{
    background:#f7f8f7;
    padding:20px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.3s;
    display: flex;
    flex-direction: column;
}
.hse-card:hover{
    transform:translateY(-6px);
}
.hse-card h3{
    color:var(--green-dark);
    margin-bottom:18px;
}
.hse-card p{
    line-height:1.8;
    margin-bottom:25px;
}
.hse-card a{
    color:var(--green);
    font-weight:700;
    text-decoration:none;
    margin-top:auto;
}
.hse-card a:hover{
    color:var(--green-dark);
}
/*====================================================
CONTACT PAGE
====================================================*/
/*====================================================
HERO
====================================================*/
.contact-hero{
    background:#ffffff;
    padding:180px 0 50px;
    text-align:center;
}
.contact-hero h1{
    font-size:4.4rem;
    color:var(--green-dark);
    line-height:1.05;
    max-width:900px;
    margin:20px auto 30px;
}
.contact-hero .hero-lead{
    max-width:780px;
    margin:0 auto;
    font-size:1.15rem;
    line-height:1.9;
}
/*====================================================
CHAPTER ONE
====================================================*/
.contact-intro{
    background:#f7f8f7;
    padding:50px 0;
}
.contact-grid{
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:70px;
    align-items:start;
}
.contact-text h2{
    font-size:3rem;
    color:var(--green-dark);
    margin:20px 0 30px;
}
.contact-text p{
    line-height:1.9;
    margin-bottom:24px;
}
.contact-card{
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}
.contact-card h3{
    color:var(--green-dark);
    margin-bottom:10px;
}
.contact-card p{
    margin-bottom:10px;
    line-height:1.8;
}
/*====================================================
CHAPTER TWO
====================================================*/
.contact-form-section{
    background:#ffffff;
    padding:50px 0;
}
.contact-form{
    max-width:900px;
    margin:70px auto 0;
    background:#f7f8f7;
    padding:30px;
    border-radius:24px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}
.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-bottom:30px;
}
.form-group{
    display:flex;
    flex-direction:column;
}
.form-group label{
    font-weight:700;
    color:var(--green-dark);
    margin-bottom:10px;
}
.form-group input,
.form-group textarea{
    padding:16px 18px;
    border:1px solid #d9dfdc;
    border-radius:12px;
    font-size:1rem;
    font-family:inherit;
    background:#ffffff;
    transition:.3s;
}
.form-group input:focus,
.form-group textarea:focus{
    outline:none;
    border-color:var(--green);
    box-shadow:0 0 0 4px rgba(31,107,80,.12);
}
.form-group textarea{
    resize:vertical;
    min-height:180px;
}
.privacy-note{
    margin:30px 0;
    font-size:.95rem;
    color:var(--text);
    line-height:1.8;
}
.contact-form .btn{
    width:240px;
}
/*====================================================
THANK YOU PAGE
====================================================*/
.thank-you-buttons{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:40px;
}
.thank-you-buttons .btn{
    width:100%;
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
}


