
:root{
    --green:#25483d;
    --green-dark:#142a24;
    --cream:#f7f3ec;
    --beige:#e8ded0;
    --gold:#b99a63;
    --white:#fff;
    --text:#26312d;
    --muted:#69736f;
    --light:#f1ede5;
    --border:#ddd5c9;

    --shadow:0 20px 60px rgba(23,42,37,.10);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:"DM Sans",sans-serif;
    color:var(--text);
    background:var(--cream);
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

.section{
    padding:60px 0;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--gold);
   font-size:14px;
    font-weight:700;
    letter-spacing:2.5px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.section-tag:before{
    content:"";
    width:30px;
    height:1px;
    background:var(--gold);
}

h1,
h2,
h3{
    font-family:"Playfair Display",serif;
}

h2{
    font-size:clamp(42px,5vw,40px);
    line-height:1.05;
    font-weight:600;
}

p{
    line-height:1.8;
    color:#333;
}


/* =========================================================
   HEADER
========================================================= */

header{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    z-index:100;
}

.navbar{
    height:95px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-symbol{
    width:45px;
    height:45px;
    border:1px solid rgba(255,255,255,.55);
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#fff;
    font-family:"Playfair Display",serif;
    font-size:23px;
}

.logo-text{
    color:#fff;
    line-height:1;
}

.logo-text strong{
    display:block;
    font-family:"Playfair Display",serif;
    font-size:22px;
    letter-spacing:1px;
}

.logo-text span{
    display:block;
    font-size:8px;
    letter-spacing:3px;
    margin-top:6px;
    opacity:.8;
}

nav{
    display:flex;
    align-items:center;
    gap:32px;
}

nav a{
    color:#fff;
    font-size:17px;
    position:relative;
}

nav a:not(.nav-call):after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:1px;
    background:#fff;
    transition:.3s;
}

nav a:hover:after{
    width:100%;
}

.nav-call{
    padding:12px 20px;
    border:1px solid rgba(255,255,255,.45);
    border-radius:50px;
}

.menu{
    display:none;
    color:#fff;
    font-size:25px;
}
/* =========================================
   MOBILE MENU
========================================= */

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 101;
    user-select: none;
}

@media (max-width: 1050px) {

    .menu-toggle {
        display: block;
    }

    .links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85%;

        background: #142a24;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 0;

        padding: 90px 35px 40px;

        box-shadow: -10px 0 40px rgba(0,0,0,.25);

        transition: right .35s ease;

        z-index: 100;
    }

    .links.active {
        right: 0;
    }

    .links a {
        width: 100%;
        padding: 16px 0;

        color: #fff;
        font-size: 15px;

        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .links .call {
        width: auto;
        margin-top: 25px;
        padding: 13px 22px;
        border: 1px solid rgba(255,255,255,.4);
    }

}


/* Dark overlay behind mobile menu */

.menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.45);

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 90;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   HERO
========================================================= */

.hero{

    min-height:850px;

    display:flex;
    align-items:center;

    position:relative;

    background-image:

    linear-gradient(
        90deg,
        rgba(13,31,26,.92) 0%,
        rgba(13,31,26,.72) 45%,
        rgba(13,31,26,.15) 100%
    ),

    url("img/hero.jpg");

    background-size:cover;
    background-position:center;
}

.hero-content{
    width:min(1180px,92%);
    margin:auto;
    padding-top:80px;
}

.hero-copy{
    max-width:690px;
    color:#fff;
}

.hero-tag{
    display:flex;
    align-items:center;
    gap:12px;
    color:#d6bd91;
   font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.hero-tag span{
    width:35px;
    height:1px;
    background:#d6bd91;
}

.hero h1{
    font-size:clamp(55px,7vw,65px);
    line-height:.97;
    font-weight:600;
    margin-bottom:30px;
}

.hero h1 em{
    color:#d6bd91;
    font-style:normal;
}

.hero p{
    max-width:570px;
    color:rgba(255,255,255,.82);
    font-size:17px;
    margin-bottom:38px;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:15px 26px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#fff;
    color:var(--green-dark);
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-outline{
    color:#fff;
    border:1px solid rgba(255,255,255,.5);
}

.btn-outline:hover{
    background:#fff;
    color:var(--green-dark);
}

.hero-note{
    position:absolute;
    right:5%;
    bottom:55px;
    width:245px;
    padding:23px 27px;
    background:rgba(255,255,255,.96);
    border-radius:18px;
    box-shadow:var(--shadow);
}

.hero-note small{
    color:var(--gold);
    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.hero-note strong{
    display:block;
    font-family:"Playfair Display",serif;
    font-size:22px;
    margin-top:7px;
}


/* =========================================================
   INTRO
========================================================= */

.intro{
    background:var(--cream);
}

.intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:center;
}

.intro-copy{
    padding-right:25px;
}

.intro-copy h2{
    margin-bottom:25px;
}

.intro-copy p{
    margin-bottom:20px;
    font-size:15px;
}

.text-link{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--green);
    font-size:15px;
    font-weight:700;
    margin-top:12px;
}

.text-link span{
    width:38px;
    height:1px;
    background:var(--green);
    transition:.3s;
}

.text-link:hover span{
    width:60px;
}

.intro-image{
    position:relative;
}

.intro-image img{
    height:550px;
    object-fit:cover;
    border-radius:30px;
}

.intro-badge{
    position:absolute;
    left:-35px;
    bottom:35px;
    width:150px;
    height:150px;
    border-radius:50%;
    background:var(--green);
    color:#fff;
    display:grid;
    place-items:center;
    text-align:center;
    box-shadow:var(--shadow);
}

.intro-badge span{
    font-family:"Playfair Display",serif;
    font-size:17px;
}


/* =========================================================
   SERVICES
========================================================= */

.services{
    background:#fff;
}

.services-heading{
    max-width:700px;
    margin-bottom:60px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.service-card{
    height:500px;
    position:relative;
    overflow:hidden;
    border-radius:25px;
    color:#fff;
}

.service-card img{
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-card:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(7,24,19,.92),
        rgba(7,24,19,.02) 65%
    );
}

.service-content{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;
    z-index:2;
}

.service-number{
    color:#d6bd91;
    font-size:10px;
    letter-spacing:2px;
    font-weight:700;
}

.service-content h3{
    font-size:28px;
    margin:8px 0;
}

.service-content p{
    color:rgba(255,255,255,.75);
    font-size:15px;
    line-height:1.6;
}


/* =========================================================
   LIGHT SECTION
========================================================= */

.light-section{
    background:var(--green-dark);
    color:#fff;
}

.light-grid{
    display:grid;
    grid-template-columns:45% 55%;
    align-items:center;
}

.light-copy{
    padding:80px 70px 80px 0;
}

.light-copy h2{
    color:#fff;
    margin-bottom:25px;
}

.light-copy>p{
    color:rgba(255,255,255,.65);
    margin-bottom:30px;
}

.light-states{
    border-top:1px solid rgba(255,255,255,.15);
}

.light-state{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:21px 0;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.light-state strong{
    font-family:"Playfair Display",serif;
    font-size:23px;
}

.light-state span{
    color:#d6bd91;
   font-size:14px;
}

.light-image{
    height:650px;
}

.light-image img{
    height:100%;
    object-fit:cover;
}


/* =========================================================
   WHY ZODIAC
========================================================= */

.why{
    background:var(--light);
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:85px;
    align-items:center;
}

.why-image{
    position:relative;
}

.why-image img{
    height:580px;
    object-fit:cover;
    border-radius:30px;
}

.why-card{
    position:absolute;
    right:-35px;
    bottom:35px;
    width:260px;
    background:#fff;
    padding:27px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.why-card strong{
    display:block;
    font-family:"Playfair Display",serif;
    font-size:23px;
    margin-bottom:7px;
}

.why-card p{
    font-size:12px;
    line-height:1.7;
}

.why-copy h2{
    margin-bottom:25px;
}

.why-list{
    margin-top:30px;
}

.why-item{
    display:flex;
    gap:17px;
    padding:19px 0;
    border-bottom:1px solid var(--border);
}

.why-icon{
    width:42px;
    height:42px;
    background:var(--green);
    color:#fff;
    border-radius:50%;
    display:grid;
    place-items:center;
    flex-shrink:0;
   font-size:14px;
}

.why-item strong{
    display:block;
    margin-bottom:5px;
}

.why-item p{
    font-size:12px;
}


/* =========================================================
   COLLECTION
========================================================= */

.collection{
    background:#fff;
}

.collection-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:50px;
}

.collection-head h2{
    max-width:620px;
}

.collection-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.collection-card{
    background:var(--cream);
    border-radius:25px;
    overflow:hidden;
}

.collection-img{
    height:310px;
    overflow:hidden;
}

.collection-img img{
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.collection-card:hover img{
    transform:scale(1.06);
}

.collection-info{
    padding:25px;
}

.collection-info small{
    color:var(--gold);
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:700;
}

.collection-info h3{
    font-size:27px;
    margin:7px 0;
}

.collection-info p{
    font-size:15px;
}


/* =========================================================
   PROCESS
========================================================= */

.process{
    background:#fff;
}

.process-heading{
    max-width:650px;
    margin-bottom:60px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.process-item{
    padding:35px;
    border-left:1px solid var(--border);
}

.process-item:first-child{
    border-left:0;
}

.process-number{
    color:var(--gold);
    font-family:"Playfair Display",serif;
    font-size:42px;
}

.process-item h3{
    font-size:25px;
    margin:14px 0 10px;
}

.process-item p{
    font-size:15px;
}


/* =========================================================
   COIMBATORE
========================================================= */

.local{
    background:#fff;
}

.local-box{
    background:var(--green);
    color:#fff;
    border-radius:30px;
    padding:75px;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:70px;
    align-items:center;
}

.local-box h2{
    color:#fff;
}

.local-box p{
    color:rgba(255,255,255,.7);
    margin-top:22px;
}

.local-address{
    border-left:1px solid rgba(255,255,255,.25);
    padding-left:40px;
}

.local-address small{
    color:#d6bd91;
    font-size:10px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:700;
}

.local-address address{
    font-style:normal;
    line-height:1.9;
    margin:15px 0 25px;
    color:rgba(255,255,255,.78);
}

.phone{
    font-family:"Playfair Display",serif;
    font-size:27px;
}


/* =========================================================
   CTA
========================================================= */

.cta{

    min-height:560px;

    display:flex;
    align-items:center;

    text-align:center;

    background-image:

    linear-gradient(
        rgba(20,37,32,.78),
        rgba(20,37,32,.78)
    ),

    url("img/hero.jpg");

    background-size:cover;
    background-position:center;
}

.cta-content{
    max-width:900px;
    margin:auto;
    color:#fff;
}

.cta-content .section-tag{
    justify-content:center;
}

.cta h2{
    color:#fff;
    font-size:clamp(45px,6vw,45px);
    margin-bottom:25px;
}

.cta p{
    color:rgba(255,255,255,.75);
    max-width:600px;
    margin:0 auto 35px;
}


/* =========================================================
   FOOTER
========================================================= */

footer{
    background:#13241f;
    color:#fff;
    padding:75px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap:50px;
    padding-bottom:55px;
}

.footer-brand p{
    max-width:330px;
    color:rgba(255,255,255,.5);
    font-size:15px;
    margin-top:20px;
}

.footer-title{
    color:#d6bd91;
    font-size:17px;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-links a{
    color:rgba(255,255,255,.65);
    font-size:15px;
}

.footer-links a:hover{
    color:#fff;
}

.footer-address{
    color:rgba(255,255,255,.65);
    font-size:15px;
    line-height:1.8;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:22px;
    display:flex;
    justify-content:space-between;
    color:rgba(255,255,255,.35);
   font-size:14px;
}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.float-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:500;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.float-btn{
    width:57px;
    height:57px;
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:21px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    transition:.3s;
}

.float-btn:hover{
    transform:translateY(-4px);
}

.call{
    background:var(--green);
}

.whatsapp{
    background:#25D366;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:1050px){

    nav{
        display:none;
    }

    .menu{
        display:block;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .intro-grid,
    .why-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .light-grid{
        grid-template-columns:1fr;
    }

    .light-copy{
        padding:80px 8%;
    }

    .light-image{
        height:500px;
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-item:nth-child(3){
        border-left:0;
    }

    .local-box{
        grid-template-columns:1fr;
        gap:40px;
    }

    .local-address{
        border-left:0;
        border-top:1px solid rgba(255,255,255,.25);
        padding:35px 0 0;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}


@media(max-width:650px){

    .section{
        padding:75px 0;
    }

    .hero{
        min-height:760px;
    }

    .hero h1{
        font-size:53px;
    }

    .hero-note{
        display:none;
    }

    .services-grid,
    .collection-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        height:430px;
    }

    .intro-image img,
    .why-image img{
        height:430px;
    }

    .intro-badge{
        left:15px;
        bottom:15px;
    }

    .why-card{
        right:15px;
        bottom:15px;
        width:230px;
    }

    .collection-head{
        display:block;
    }

    .collection-head .text-link{
        margin-top:20px;
    }

    .process-item{
        border-left:0;
        border-top:1px solid var(--border);
    }

    .process-item:first-child{
        border-top:0;
    }

    .local-box{
        padding:45px 30px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
    }

    .float-buttons{
        right:15px;
        bottom:15px;
    }

} /* =========================================
    FLOATING PHONE + WHATSAPP
 ========================================= */

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 9999;
}

.floating-icon {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 23px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0,0,0,.22);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.floating-icon:hover {
    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 12px 30px rgba(0,0,0,.28);

    color: #fff;
}

.phone-icon {
    background: #25483d;
}

.whatsapp-icon {
    background: #25D366;
}


/* Mobile */

@media(max-width:650px) {

    .floating-contact {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .floating-icon {
        width: 52px;
        height: 52px;
        font-size: 21px;
    }

}
/* =========================================================
   ZODIAC - ENQUIRY SECTION
   CLEAN / BALANCED / RESPONSIVE
========================================================= */

.enquiry {
    background: #f1ede5;
    padding: 100px 0;
}

.enquiry .container {
    max-width: 1180px;
}


/* MAIN CARD */

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 46% 54%;

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(20,42,36,.10);

    align-items: stretch;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.enquiry-content {
    background: #25483d;

    padding: 58px 55px;

    color: #fff;

    display: flex;
    flex-direction: column;
}


.enquiry-content .tag {
    margin-bottom: 15px;

    color: #d6bd91;
}


.enquiry-content .tag:before {
    background: #d6bd91;
}


.enquiry-content h2 {
    color: #fff;

    font-size: clamp(42px, 4.5vw, 62px);

    line-height: 1.02;

    margin-bottom: 20px;
}


.enquiry-content > p {
    max-width: 480px;

    color: rgba(255,255,255,.68);

    font-size: 13px;

    line-height: 1.75;

    margin: 0;
}


/* =========================================================
   BENEFITS
========================================================= */

.enquiry-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px 20px;

    margin-top: 27px;
}


.enquiry-points div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.84);

    font-size: 11px;

    line-height: 1.4;
}


.enquiry-points span {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: rgba(214,189,145,.14);

    color: #d6bd91;

    font-size: 10px;
}


/* =========================================================
   PHONE
========================================================= */

.enquiry-phone {
    display: inline-flex;

    flex-direction: column;

    align-self: flex-start;

    margin-top: 28px;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.13);

    min-width: 180px;
}


.enquiry-phone small {
    color: #d6bd91;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1.8px;
}


.enquiry-phone strong {
    margin-top: 4px;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 25px;

    font-weight: 600;
}


/* =========================================================
   MAP
========================================================= */

.enquiry-map {
    width: 100%;

    height: 175px;

    margin-top: 28px;

    border-radius: 16px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.12);

    flex-shrink: 0;
}


.enquiry-map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* ADDRESS */

.map-address {
    margin-top: 11px;

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.map-address strong {
    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 15px;
}


.map-address span {
    color: rgba(255,255,255,.55);

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================================
   RIGHT FORM
========================================================= */

.enquiry-form-box {
    padding: 58px 55px;

    display: flex;

    align-items: center;
}


.enquiry-form-box form {
    width: 100%;
}


/* FORM ROW */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.form-group {
    margin-bottom: 18px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #34413c;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .5px;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #ddd8d0;

    border-radius: 9px;

    background: #faf9f6;

    color: #26312d;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    outline: none;

    transition: all .25s;
}


.form-group input,
.form-group select {
    height: 47px;

    padding: 0 14px;
}


.form-group textarea {
    min-height: 105px;

    padding: 13px 14px;

    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a9f9c;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #25483d;

    background: #fff;

    box-shadow: 0 0 0 3px rgba(37,72,61,.06);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.enquiry-submit {
    width: 100%;

    height: 52px;

    border: 0;

    border-radius: 50px;

    background: #25D366;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: all .3s ease;
}


.enquiry-submit i {
    font-size: 19px;
}


.enquiry-submit:hover {
    background: #1db954;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(37,211,102,.22);
}


.form-note {
    margin-top: 10px;

    text-align: center;

    color: #929793;

    font-size: 9px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1050px) {

    .enquiry {
        padding: 80px 0;
    }

    .enquiry-wrapper {
        grid-template-columns: 1fr;
    }

    .enquiry-content {
        padding: 55px 45px;
    }

    .enquiry-form-box {
        padding: 50px 45px;
    }

    .enquiry-map {
        height: 220px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:650px) {

    .enquiry {
        padding: 65px 0;
    }

    .enquiry-wrapper {
        border-radius: 20px;
    }

    .enquiry-content {
        padding: 45px 25px;
    }

    .enquiry-content h2 {
        font-size: 43px;
    }

    .enquiry-points {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .enquiry-map {
        height: 210px;

        margin-top: 25px;
    }

    .enquiry-form-box {
        padding: 40px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-group {
        margin-bottom: 17px;
    }

    .enquiry-submit {
        height: 54px;
    }

}