/*==================================================
DIAMOND AREA CDC
CONTACT PAGE
==================================================*/

:root{

--green:#0B6E3E;
--green-dark:#063A24;
--gold:#D9B54A;
--cream:#FCFBF8;
--white:#ffffff;
--text:#555;
--navy:#173A70;
--shadow:0 25px 60px rgba(0,0,0,.08);

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

body{

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

}

img{

display:block;
max-width:100%;

}

a{

text-decoration:none;

}

.contact-container{

width:min(1280px,92%);
margin:auto;

}

section{

padding:120px 0;

}



/*==================================================
TOP BAR
==================================================*/

.contact-topbar{

background:#063A24;
color:#fff;
font-size:13px;
padding:10px 0;
text-align:center;

}

.contact-topbar i{

color:var(--gold);
margin-right:8px;

}



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

.contact-header{

position:absolute;
left:0;
top:40px;
width:100%;
z-index:999;

}

.contact-navbar{

display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;

}

.contact-logo{

display:flex;
align-items:center;
gap:18px;
color:#fff;

}

.contact-logo img{

width:70px;
height:70px;
background:#fff;
padding:10px;
border-radius:50%;
box-shadow:0 15px 40px rgba(0,0,0,.20);

}

.contact-logo h2{

font-size:30px;
font-weight:700;
color:#fff;

}

.contact-logo p{

font-size:14px;
opacity:.85;

}



/*==================================================
NAVIGATION
==================================================*/

.contact-nav ul{

display:flex;
list-style:none;
gap:34px;

}

.contact-nav a{

color:#fff;
font-size:14px;
font-weight:600;
letter-spacing:.5px;
position:relative;
transition:.35s;

}

.contact-nav a::after{

content:"";
position:absolute;
left:0;
bottom:-8px;
width:0;
height:2px;
background:var(--gold);
transition:.35s;

}

.contact-nav a:hover,
.contact-nav .active{

color:#FFE082;

}

.contact-nav a:hover::after,
.contact-nav .active::after{

width:100%;

}



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

.contact-hero{
    position:relative;
    background:linear-gradient(135deg,#F6FCF8 0%,#EEF8F2 55%,#FCFBF8 100%);
    padding:170px 0 140px;
    overflow:hidden;
}

/* Decorative Background */

.contact-hero::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    left:-180px;
    top:-120px;
    border-radius:50%;
    background:rgba(11,110,62,.05);
}

.contact-hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    right:-100px;
    bottom:-100px;
    border-radius:50%;
    background:rgba(217,181,74,.12);
}

/*============================*/

.hero-wrapper{

    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:80px;
    position:relative;
    z-index:5;

}

/*============================*/

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:#fff;

    color:#0B6E3E;

    font-weight:700;

    font-size:14px;

    letter-spacing:1px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    margin-bottom:28px;

}

.hero-badge i{

    width:36px;
    height:36px;

    border-radius:50%;

    background:#0B6E3E;

    color:#fff;

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

}

/*============================*/

.hero-content h1{

    font-size:5rem;

    line-height:.95;

    color:#0B6E3E;

    margin-bottom:25px;

    font-family:Georgia,serif;

}

.hero-content h1 span{

    color:#D9B54A;

}

.hero-divider{

    width:70px;
    height:5px;

    background:#D9B54A;

    border-radius:20px;

    margin-bottom:28px;

}

.hero-content p{

    max-width:620px;

    font-size:20px;

    line-height:1.9;

    color:#555;

    margin-bottom:40px;

}

/*============================*/

.hero-buttons{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.hero-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:18px 38px;

    background:#0B6E3E;

    color:#fff;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 20px 45px rgba(11,110,62,.18);

}

.hero-btn:hover{

    transform:translateY(-5px);

    background:#075A32;

}

.hero-btn-outline{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:18px 38px;

    border:2px solid #0B6E3E;

    color:#0B6E3E;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.hero-btn-outline:hover{

    background:#0B6E3E;

    color:#fff;

}

/*============================*/

.hero-image-box{

    position:relative;

}

.hero-image-box::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    border:3px solid rgba(217,181,74,.45);

    border-radius:45px;

    transform:rotate(-3deg);

}

.hero-image-box img{

    width:100%;

    height:560px;

    object-fit:cover;

    border-radius:40px;

    box-shadow:0 35px 70px rgba(0,0,0,.18);

    position:relative;

    z-index:2;

    transition:.4s;

}

.hero-image-box:hover img{

    transform:translateY(-8px);

}

/*============================*/
/* Floating Contact Strip */
/*============================*/

.hero-contact-strip{

    margin-top:70px;

    background:#fff;

    border-radius:28px;

    padding:35px;

    display:grid;

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

    gap:30px;

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

    position:relative;

    z-index:5;

}

.hero-contact-card{

    display:flex;

    align-items:center;

    gap:20px;

}

.hero-icon{

    width:70px;

    height:70px;

    border-radius:22px;

    background:#0B6E3E;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;

}

.hero-contact-card h4{

    font-size:26px;

    color:#0B6E3E;

    margin-bottom:5px;

}

.hero-contact-card p{

    color:#666;

    line-height:1.7;

}

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

@media(max-width:991px){

.hero-wrapper{

grid-template-columns:1fr;

}

.hero-image-box{

order:-1;

}

.hero-content{

text-align:center;

}

.hero-content p{

margin:auto auto 40px;

}

.hero-divider{

margin:auto auto 30px;

}

.hero-buttons{

justify-content:center;

}

.hero-contact-strip{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.contact-hero{

padding:130px 0 80px;

}

.hero-content h1{

font-size:3rem;

}

.hero-content p{

font-size:17px;

}

.hero-image-box img{

height:340px;

}

.hero-buttons{

flex-direction:column;

}

.hero-btn,
.hero-btn-outline{

width:100%;

justify-content:center;

}

.hero-contact-card{

flex-direction:column;

text-align:center;

}

}


/*==================================================
CONTACT DETAILS
==================================================*/

.contact-details{

background:#fff;

}

.section-title{

max-width:760px;
margin:auto;
text-align:center;
margin-bottom:80px;

}

.section-title span{

display:inline-block;
color:var(--green);
font-size:13px;
font-weight:700;
letter-spacing:3px;
margin-bottom:18px;

}

.section-title h2{

font-size:60px;
font-family:Georgia,serif;
line-height:1.1;
color:#18452D;
margin-bottom:20px;

}

.section-title p{

font-size:18px;
line-height:2;
max-width:700px;
margin:auto;

}

.contact-info-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;

}

.info-card{

padding:45px;
background:#fff;
border-radius:24px;
text-align:center;
box-shadow:var(--shadow);
transition:.35s;

}

.info-card:hover{

transform:translateY(-10px);

}

.info-icon{

width:80px;
height:80px;
margin:auto;
margin-bottom:25px;

border-radius:50%;

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

background:var(--green);

color:#fff;

font-size:30px;

}

.info-card h3{

font-size:28px;
color:#18452D;
margin-bottom:15px;

}

.info-card p{

font-size:17px;
line-height:1.9;
color:#666;

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

.contact-form-section{

background:#F8F9F5;

}



.contact-grid{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:70px;

align-items:start;

}



.contact-form-box{

background:#fff;

padding:55px;

border-radius:30px;

box-shadow:var(--shadow);

}



.contact-form-box span{

display:inline-block;

color:var(--green);

font-size:13px;

font-weight:700;

letter-spacing:3px;

margin-bottom:18px;

}



.contact-form-box h2{

font-size:54px;

font-family:Georgia,serif;

line-height:1.1;

color:#18452D;

margin-bottom:20px;

}



.contact-form-box>p{

font-size:18px;

line-height:1.9;

margin-bottom:35px;

color:#666;

}



/*==========================================*/

.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:25px;

margin-bottom:25px;

}



.form-group{

display:flex;

flex-direction:column;

}



.form-group label{

font-weight:600;

margin-bottom:10px;

color:#18452D;

}



.form-group input,

.form-group textarea{

width:100%;

padding:18px 20px;

border:1px solid #ddd;

border-radius:14px;

font-size:16px;

font-family:inherit;

transition:.35s;

background:#fff;

}



.form-group textarea{

resize:vertical;

min-height:180px;

}



.form-group input:focus,

.form-group textarea:focus{

outline:none;

border-color:var(--gold);

box-shadow:

0 0 0 5px rgba(217,181,74,.15);

}



/*==========================================*/

.contact-btn{

display:inline-flex;

align-items:center;

gap:12px;

padding:18px 42px;

background:var(--green);

color:#fff;

border:none;

border-radius:50px;

font-size:16px;

font-weight:700;

cursor:pointer;

transition:.35s;

margin-top:20px;

}



.contact-btn:hover{

background:#06391F;

transform:translateY(-5px);

}



/*==================================================
RIGHT SIDE
==================================================*/

.contact-side{

display:flex;

flex-direction:column;

gap:35px;

}



.contact-side img{

width:100%;

height:420px;

object-fit:cover;

border-radius:30px;

box-shadow:var(--shadow);

}



/*==================================================
OFFICE CARD
==================================================*/

.office-card{

background:#fff;

padding:40px;

border-radius:30px;

box-shadow:var(--shadow);

}



.office-card h3{

font-size:34px;

color:#18452D;

margin-bottom:30px;

}



.office-item{

display:flex;

gap:20px;

align-items:flex-start;

margin-bottom:28px;

}



.office-item:last-child{

margin-bottom:0;

}



.office-item i{

width:58px;

height:58px;

border-radius:50%;

background:var(--green);

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:22px;

flex-shrink:0;

}



.office-item strong{

display:block;

font-size:18px;

color:#18452D;

margin-bottom:5px;

}



.office-item p{

color:#666;

line-height:1.8;

}



/*==================================================
SOCIAL SECTION
==================================================*/

.contact-social{

background:#fff;

}



.social-grid{

display:grid;

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

gap:30px;

}



.social-card{

padding:45px 30px;

text-align:center;

border-radius:25px;

background:#F8F9F5;

transition:.35s;

box-shadow:0 12px 35px rgba(0,0,0,.05);

}



.social-card:hover{

transform:translateY(-10px);

background:#fff;

box-shadow:var(--shadow);

}



.social-card i{

width:80px;

height:80px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:var(--green);

color:#fff;

font-size:32px;

transition:.35s;

}



.social-card:hover i{

background:var(--gold);

color:#18452D;

transform:rotate(12deg);

}



.social-card h3{

font-size:28px;

margin-bottom:12px;

color:#18452D;

}



.social-card p{

font-size:16px;

color:#666;

}
/*==================================================
LOCATION
==================================================*/

.contact-location{

background:#F8F9F5;

}



.map-wrapper{

overflow:hidden;

border-radius:30px;

box-shadow:var(--shadow);

margin-top:60px;

}



.map-wrapper iframe{

width:100%;

height:520px;

border:none;

display:block;

}



/*==================================================
CALL TO ACTION
==================================================*/

.contact-cta{

position:relative;

padding:180px 0;

background:url("../images/backgrounds/community-bg.jpg") center center/cover;

overflow:hidden;

}



.cta-overlay{

position:absolute;

inset:0;

background:linear-gradient(

90deg,

rgba(6,58,36,.92),

rgba(6,58,36,.72)

);

}



.cta-content{

position:relative;

z-index:5;

max-width:780px;

margin:auto;

text-align:center;

color:#fff;

}



.cta-content span{

display:inline-block;

font-size:13px;

font-weight:700;

letter-spacing:3px;

color:#FFD86E;

margin-bottom:20px;

}



.cta-content h2{

font-size:96px;

font-family:Georgia,serif;

font-weight:700;

line-height:.95;

margin-bottom:30px;

}



.cta-content p{

font-size:20px;

line-height:2;

max-width:680px;

margin:auto;

margin-bottom:45px;

color:#F4F4F4;

}



.cta-btn{

display:inline-flex;

align-items:center;

gap:12px;

padding:20px 46px;

background:var(--gold);

color:#063A24;

border-radius:50px;

font-weight:700;

transition:.35s;

box-shadow:

0 20px 45px rgba(217,181,74,.30);

}



.cta-btn:hover{

transform:translateY(-6px);

background:#E7C862;

}



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

.contact-footer{

background:#062D19;

padding:90px 0 35px;

border-top:4px solid var(--gold);

}



.footer-grid{

display:grid;

grid-template-columns:1.8fr 1fr 1fr;

gap:70px;

align-items:flex-start;

}



.footer-logo{

display:flex;

align-items:center;

gap:18px;

margin-bottom:25px;

color:#fff;

}



.footer-logo img{

width:72px;

height:72px;

background:#fff;

padding:10px;

border-radius:50%;

flex-shrink:0;

}



.footer-logo h3{

font-size:34px;

margin:0;

line-height:1.1;

}



.footer-logo p{

margin-top:5px;

color:#ddd;

}



.footer-about>p{

margin-top:20px;

line-height:1.9;

color:#ddd;

}



.footer-links h4,

.footer-contact h4{

font-size:28px;

margin-bottom:25px;

color:#FFD86E;

}



.footer-links ul{

list-style:none;

}



.footer-links li{

margin-bottom:16px;

}



.footer-links a{

color:#ddd;

transition:.3s;

}



.footer-links a:hover{

color:#FFD86E;

padding-left:6px;

}



.footer-contact p{

display:flex;

align-items:flex-start;

gap:12px;

margin-bottom:18px;

color:#ddd;

}



.footer-contact i{

color:#FFD86E;

margin-top:4px;

width:18px;

}



.footer-bottom{

margin-top:60px;

padding-top:25px;

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

text-align:center;

color:#bbb;

font-size:14px;

}



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

@media(max-width:1100px){

.contact-grid,

.footer-grid{

grid-template-columns:1fr;

gap:50px;

}



.contact-info-grid{

grid-template-columns:1fr;

}



.social-grid{

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

}

}



@media(max-width:768px){

.contact-header{

top:0;

background:rgba(6,58,36,.95);

}



.contact-navbar{

flex-direction:column;

gap:20px;

}



.contact-nav ul{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}



.hero-content h1{

font-size:52px;

}



.section-title h2,

.contact-form-box h2,

.cta-content h2{

font-size:42px;

}



.form-row{

grid-template-columns:1fr;

}



.social-grid{

grid-template-columns:1fr;

}



.hero-btn,

.contact-btn,

.cta-btn{

width:100%;

justify-content:center;

}



.contact-side img{

height:300px;

}



.map-wrapper iframe{

height:350px;

}

}



/*==================================================
PREMIUM ANIMATIONS
==================================================*/

.info-card,

.social-card,

.contact-form-box,

.office-card,

.feature-btn,

.cta-btn{

transition:all .35s ease;

}



html{

scroll-behavior:smooth;

}



::selection{

background:var(--green);

color:#fff;

}
/*=====================================
MOBILE HEADER SIZE FIX
=====================================*/

@media (max-width:768px){

    .contact-header{
        padding:0;
    }

    .contact-container{
        padding:0 15px;
    }

    .contact-navbar{
        min-height:80px;
        padding:10px 0;
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .contact-logo{
        display:flex;
        align-items:center;
        gap:12px;
        text-decoration:none;
    }

    .contact-logo img{
        width:58px;
        height:58px;
        object-fit:contain;
        flex-shrink:0;
    }

    .contact-logo h2{
        font-size:18px;
        line-height:1.2;
        margin:0;
    }

    .contact-logo p{
        font-size:11px;
        margin:2px 0 0;
    }

}
/*=========================================
FIX GREEN CTA TEXT
==========================================*/

.contact-cta{

    color:#fff;

}

.contact-cta h2{

    color:#fff;

}

.contact-cta p{

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

}

.contact-cta .section-tag{

    color:#D9B54A;

}
/*=========================================
FIX CONTACT LOCATION TEXT
==========================================*/

.contact-location h2{

    color:#ffffff !important;

}

.contact-location p{

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

}

.contact-location span{

    color:#D9B54A !important;

}
/*==================================================
VISIT DIAMOND AREA CDC SECTION
==================================================*/

.contact-location{

    background:linear-gradient(135deg,#0B6E3E,#0A5F36);

    padding:90px 0;

    position:relative;

    overflow:hidden;

}

/* Gold decorative glow */

.contact-location::before{

    content:"";

    position:absolute;

    top:-80px;

    right:-80px;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(217,181,74,.12);

}

/* Left decorative glow */

.contact-location::after{

    content:"";

    position:absolute;

    bottom:-100px;

    left:-100px;

    width:260px;

    height:260px;

    border-radius:50%;

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

}

.contact-location .section-title{

    text-align:center;

    max-width:850px;

    margin:auto;

    position:relative;

    z-index:2;

}

.contact-location span{

    display:inline-block;

    color:#D9B54A;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.contact-location h2{

    color:#ffffff;

    font-size:42px;

    margin-bottom:20px;

}

.contact-location p{

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

    font-size:18px;

    line-height:1.9;

    max-width:720px;

    margin:auto;

}
/*==================================================
CONTACT PAGE FINAL POLISH
Paste at the VERY END of contact.css
==================================================*/

/* Make all section descriptions readable */
.section-title p,
.contact-details .section-title p,
.contact-social .section-title p,
.contact-location .section-title p{
    color:#555 !important;
    opacity:1 !important;
    font-weight:400;
    line-height:1.9;
}

/* Hero text */
.contact-hero p{
    color:#F5F5F5 !important;
    opacity:1;
}

/* Contact cards */
.info-card h3{
    color:#0B6E3E !important;
}

.info-card p{
    color:#666 !important;
    opacity:1;
}

/* Contact form */
.contact-form-box p{
    color:#666 !important;
}

.contact-form-box label{
    color:#222 !important;
    font-weight:600;
}

.contact-form-box input,
.contact-form-box textarea{
    color:#333;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder{
    color:#888;
}

/* Office hours */
.office-card h3{
    color:#0B6E3E !important;
}

.office-card strong{
    color:#0B6E3E !important;
}

.office-card p{
    color:#666 !important;
}

/* Social cards */
.social-card h3{
    color:#0B6E3E !important;
}

.social-card p{
    color:#666 !important;
}

/* Green location section */
.contact-location{
    background:#0B6E3E;
}

.contact-location .section-title span{
    color:#D9B54A !important;
}

.contact-location .section-title h2{
    color:#ffffff !important;
}

.contact-location .section-title p{
    color:rgba(255,255,255,.92) !important;
}

/* Google map */
.map-wrapper{
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
}

.map-wrapper iframe{
    width:100%;
    height:450px;
    border:none;
    display:block;
}

/* Better spacing */
.contact-details,
.contact-form-section,
.contact-social,
.contact-location{
    position:relative;
    z-index:2;
}

/* Slightly stronger headings */
.section-title h2{
    color:#0B6E3E;
    text-shadow:0 2px 10px rgba(11,110,62,.06);
}
/*==================================================
DIAMOND CONTACT SIGNATURE
==================================================*/

/* Elegant page entrance */

body{

animation:contactFade .8s ease;

}

@keyframes contactFade{

from{

opacity:0;

}

to{

opacity:1;

}

}


/*---------------------------------------
Hero Luxury
---------------------------------------*/

.contact-hero{

position:relative;

}

.contact-hero::before{

content:"";

position:absolute;

left:-180px;

top:-180px;

width:420px;

height:420px;

border-radius:50%;

background:

radial-gradient(circle,

rgba(217,181,74,.15),

transparent 70%);

animation:heroGlow 14s linear infinite;

pointer-events:none;

}

@keyframes heroGlow{

50%{

transform:translate(60px,45px);

}

}

.hero-content{

animation:heroRise 1s ease;

}

@keyframes heroRise{

from{

opacity:0;

transform:translateY(45px);

}

to{

opacity:1;

transform:none;

}

}


/*---------------------------------------
Section Headings
---------------------------------------*/

.section-title h2{

letter-spacing:-1px;

}

.section-title span{

transition:.35s;

}

.section-title:hover span{

letter-spacing:5px;

}


/*---------------------------------------
Cards
---------------------------------------*/

.info-card,
.social-card,
.office-card{

transition:.4s;

}

.info-card:hover,
.social-card:hover,
.office-card:hover{

box-shadow:

0 35px 70px rgba(11,110,62,.12);

}


/*---------------------------------------
Icons
---------------------------------------*/

.info-icon,
.office-item i,
.social-card i{

transition:.4s;

}

.info-card:hover .info-icon,
.office-card:hover i,
.social-card:hover i{

transform:

scale(1.08)

rotate(10deg);

}


/*---------------------------------------
Form
---------------------------------------*/

.contact-form-box{

transition:.45s;

}

.contact-form-box:hover{

box-shadow:

0 35px 70px rgba(11,110,62,.10);

}


/*---------------------------------------
Map
---------------------------------------*/

.map-wrapper{

transition:.45s;

}

.map-wrapper:hover{

transform:translateY(-6px);

}


/*---------------------------------------
CTA
---------------------------------------*/

.cta-btn{

position:relative;

overflow:hidden;

}

.cta-btn::before{

content:"";

position:absolute;

left:-120%;

top:0;

width:100%;

height:100%;

background:

linear-gradient(

120deg,

transparent,

rgba(255,255,255,.35),

transparent);

transition:.8s;

}

.cta-btn:hover::before{

left:120%;

}
/*==================================================
MINT GREEN HERO
==================================================*/

.contact-hero{

    background:linear-gradient(
        135deg,
        #EAF8F0 0%,
        #DDF4E6 35%,
        #CFEEDB 100%
    );

    min-height:780px;

}

/* Remove dark overlay */

.hero-overlay{

    background:linear-gradient(
        90deg,
        rgba(11,110,62,.78),
        rgba(11,110,62,.55),
        rgba(11,110,62,.18)
    );

}

/* Add elegant mint glow */

.contact-hero::after{

    content:"";

    position:absolute;

    right:-150px;

    top:-120px;

    width:450px;

    height:450px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(217,181,74,.20),
        transparent 70%
    );

    pointer-events:none;

}

/* Left decorative glow */

.contact-hero::before{

    content:"";

    position:absolute;

    left:-180px;

    bottom:-180px;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(255,255,255,.22),
        transparent 70%
    );

    pointer-events:none;

}

/* Better heading */

.hero-content h1{

    text-shadow:
        0 10px 30px rgba(0,0,0,.18);

}

/* Better paragraph */

.hero-content p{

    color:#F9F9F9;

}
/*==================================================
CONTACT PAGE PREMIUM POLISH
==================================================*/


/* Hero Improvements */

.contact-hero{

    min-height:720px;
    padding:120px 0 90px;

}

.hero-image-box img{

    width:100%;
    height:500px;

    object-fit:cover;
    object-position:center;

    border-radius:40px;

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

    transition:.4s;

}
.hero-content{

    max-width:700px;

}

.hero-content h1{

    font-size:5.2rem;
    line-height:.98;
    margin-bottom:25px;

}

.hero-content p{

    max-width:600px;
    font-size:20px;

}

.hero-btn{

    padding:20px 46px;
    font-size:17px;
    box-shadow:
    0 22px 50px rgba(217,181,74,.35);

}

.hero-btn:hover{

    transform:translateY(-6px) scale(1.03);

}


/*==========================================
CONTACT INFORMATION CARDS
==========================================*/

.info-card{

    position:relative;
    overflow:hidden;
    border:1px solid transparent;
    transition:.4s;

}

.info-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:var(--gold);

    transform:scaleX(0);

    transition:.4s;

}

.info-card:hover{

    border-color:rgba(11,110,62,.15);

    transform:translateY(-12px);

    box-shadow:
    0 35px 70px rgba(11,110,62,.12);

}

.info-card:hover::before{

    transform:scaleX(1);

}

.info-card:hover .info-icon{

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

}


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

.contact-form-box{

    border:1px solid rgba(11,110,62,.08);

}

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

    min-height:60px;

}

.contact-form-box textarea{

    min-height:190px;

}

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

    border-color:var(--green);

    box-shadow:
    0 0 0 5px rgba(11,110,62,.10);

}

.contact-btn{

    padding:20px 48px;

}


/*==========================================
OFFICE HOURS PANEL
==========================================*/

.office-card{

    background:#F3FBF6;

    border:1px solid rgba(11,110,62,.08);

}

.office-item{

    padding-bottom:18px;

    border-bottom:1px solid rgba(11,110,62,.08);

}

.office-item:last-child{

    border-bottom:none;
    padding-bottom:0;

}


/*==========================================
SOCIAL CARDS
==========================================*/

.social-card{

    background:#fff;

    border:1px solid rgba(11,110,62,.08);

}

.social-card:nth-child(1) i{

    background:#1877F2;

}

.social-card:nth-child(2) i{

    background:#E4405F;

}

.social-card:nth-child(3) i{

    background:#25D366;

}

.social-card:nth-child(4) i{

    background:#D9B54A;
    color:#18452D;

}


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

.map-wrapper{

    border-radius:30px;

    overflow:hidden;

    transition:.45s;

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

}

.map-wrapper:hover{

    transform:translateY(-8px);

}


/*==========================================
DECORATIVE BACKGROUNDS
==========================================*/

.contact-details,
.contact-form-section,
.contact-social{

    position:relative;
    overflow:hidden;

}

.contact-details::before{

    content:"";

    position:absolute;

    width:340px;
    height:340px;

    border-radius:50%;

    background:rgba(11,110,62,.03);

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

}

.contact-form-section::after{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(217,181,74,.05);

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

}

.contact-social::before{

    content:"";

    position:absolute;

    width:240px;
    height:240px;

    border-radius:50%;

    background:rgba(11,110,62,.04);

    left:-80px;
    bottom:-80px;

}


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

.site-footer{

    padding-top:70px;

}

.footer-logo{

    width:80px;
    height:80px;

}
/*=========================================
FIX HERO PARAGRAPH
=========================================*/

.contact-hero .hero-content p{

    color:#4E5B52 !important;

    opacity:1 !important;

    font-size:20px;

    line-height:1.9;

    font-weight:500;

}
/*=========================================
FIX CONTACT STRIP TEXT
=========================================*/

.hero-contact-card h4{

    color:#0B6E3E !important;

    font-size:24px;

    font-weight:700;

}

.hero-contact-card p{

    color:#555 !important;

    opacity:1 !important;

    font-size:16px;

    line-height:1.7;

}
/*=========================================
SHOW ENTIRE HERO IMAGE
=========================================*/

.hero-image-box{
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-image-box img{

    width:100% !important;

    max-width:520px;

    height:auto !important;

    max-height:620px;

    object-fit:contain !important;

    object-position:center center !important;

    display:block;

    border-radius:40px;

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

    background:transparent;

    padding:0;

}
/*==================================================
DIAMOND CONTACT PREMIUM FINISH
Paste at VERY END
==================================================*/


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

html{
    scroll-behavior:smooth;
}

section{
    position:relative;
    overflow:hidden;
}

/* Soft background circles */

.contact-details::before,
.contact-form-section::before,
.contact-social::before{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:rgba(11,110,62,.035);

    filter:blur(2px);

    pointer-events:none;

}

.contact-details::before{

    left:-150px;
    top:-150px;

}

.contact-form-section::before{

    right:-140px;
    bottom:-140px;

}

.contact-social::before{

    left:-120px;
    bottom:-120px;

}

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

.hero-content{

    animation:heroFade .9s ease;

}

@keyframes heroFade{

from{

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

}

to{

opacity:1;
transform:none;

}

}

.hero-image-box{

    transition:.45s;

}

.hero-image-box:hover{

    transform:translateY(-10px);

}

.hero-image-box::before{

    border-color:rgba(217,181,74,.55);

}

.hero-image-box::after{

    content:"";

    position:absolute;

    width:140px;
    height:140px;

    right:-40px;
    top:-40px;

    border-radius:50%;

    background:rgba(217,181,74,.10);

    z-index:0;

}

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

.hero-btn,
.contact-btn,
.cta-btn{

    position:relative;

    overflow:hidden;

}

.hero-btn::before,
.contact-btn::before,
.cta-btn::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:100%;

    height:100%;

    background:

    linear-gradient(

    120deg,

    transparent,

    rgba(255,255,255,.35),

    transparent

    );

    transition:.9s;

}

.hero-btn:hover::before,
.contact-btn:hover::before,
.cta-btn:hover::before{

    left:120%;

}

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

.hero-contact-strip{

    backdrop-filter:blur(14px);

    border:1px solid rgba(11,110,62,.08);

}

.hero-contact-card{

    transition:.35s;

}

.hero-contact-card:hover{

    transform:translateY(-6px);

}

.hero-contact-card:hover .hero-icon{

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

}

.hero-icon{

    transition:.35s;

}

/*=====================================
INFO CARDS
=====================================*/

.info-card{

    position:relative;

    overflow:hidden;

}

.info-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#D9B54A;

    transform:scaleX(0);

    transition:.35s;

}

.info-card:hover::before{

    transform:scaleX(1);

}

.info-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 30px 60px rgba(11,110,62,.12);

}

.info-card:hover .info-icon{

    transform:scale(1.08);

}

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

.contact-form-box{

    transition:.4s;

}

.contact-form-box:hover{

    box-shadow:

    0 35px 70px rgba(11,110,62,.10);

}

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

    transition:.3s;

}

.form-group input:hover,
.form-group textarea:hover{

    border-color:#0B6E3E;

}

/*=====================================
OFFICE CARD
=====================================*/

.office-card{

    transition:.4s;

}

.office-card:hover{

    transform:translateY(-8px);

}

.office-item{

    transition:.3s;

}

.office-item:hover{

    padding-left:8px;

}

/*=====================================
SOCIAL
=====================================*/

.social-card{

    transition:.4s;

}

.social-card:hover{

    transform:translateY(-12px);

}

.social-card:hover i{

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

}

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

.map-wrapper{

    transition:.45s;

}

.map-wrapper:hover{

    transform:translateY(-8px);

    box-shadow:

    0 35px 70px rgba(0,0,0,.18);

}

/*=====================================
HEADINGS
=====================================*/

.section-title h2{

    position:relative;

    display:inline-block;

}

.section-title h2::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-15px;

    width:70px;

    height:4px;

    background:#D9B54A;

    transform:translateX(-50%);

    border-radius:20px;

}

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

.site-footer{

    border-top:4px solid #D9B54A;

}
/*=========================================
HERO CONTENT COMPACT
=========================================*/

.contact-hero .hero-content p{

    font-size:17px !important;

    line-height:1.75 !important;

    max-width:560px;

    margin-bottom:28px !important;

}

.contact-hero .hero-content h1{

    margin-bottom:18px !important;

}

.hero-divider{

    margin-bottom:22px !important;

}

.hero-badge{

    margin-bottom:20px !important;

}

.hero-buttons{

    margin-top:0;

}
/*==================================================
CONTACT PAGE RESPONSIVE
Premium Mobile & Tablet
==================================================*/

/*=====================================
TABLETS
=====================================*/

@media (max-width:991px){

.contact-hero{

    padding:140px 0 70px;

}

.hero-wrapper{

    grid-template-columns:1fr;
    gap:45px;
    text-align:center;

}

.hero-image-box{

    order:-1;
    max-width:650px;
    margin:auto;

}

.hero-image-box img{

    width:100%;
    height:auto;
    max-height:420px;
    object-fit:contain;

}

.hero-content{

    max-width:700px;
    margin:auto;

}

.hero-content h1{

    font-size:3.5rem;
    line-height:1.05;

}

.hero-content p{

    font-size:17px;
    margin:0 auto 28px;

}

.hero-divider{

    margin:20px auto;

}

.hero-buttons{

    justify-content:center;

}

.hero-contact-strip{

    grid-template-columns:1fr;
    gap:20px;
    padding:30px;

}

.hero-contact-card{

    justify-content:center;
    text-align:center;

}

.contact-info-grid{

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

}

.contact-grid{

    grid-template-columns:1fr;
    gap:50px;

}

.contact-side{

    max-width:700px;
    margin:auto;

}

.social-grid{

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

}

.section-title h2{

    font-size:2.7rem;

}

}


/*=====================================
MOBILE
=====================================*/

@media (max-width:768px){

.contact-hero{

    padding:120px 0 60px;

}

.hero-wrapper{

    gap:35px;

}

.hero-image-box{

    max-width:100%;

}

.hero-image-box img{

    max-height:300px;
    border-radius:28px;

}

.hero-badge{

    font-size:12px;
    padding:8px 16px;

}

.hero-badge i{

    width:30px;
    height:30px;
    font-size:13px;

}

.hero-content h1{

    font-size:2.6rem;
    line-height:1.1;

}

.hero-content p{

    font-size:16px;
    line-height:1.7;

}

.hero-buttons{

    flex-direction:column;
    width:100%;

}

.hero-btn,
.hero-btn-outline{

    width:100%;
    justify-content:center;

}

.hero-contact-strip{

    margin-top:40px;
    padding:25px;
    border-radius:24px;

}

.hero-contact-card{

    flex-direction:column;
    text-align:center;
    gap:15px;

}

.hero-contact-card h4{

    font-size:20px;

}

.hero-contact-card p{

    font-size:15px;

}

.contact-info-grid{

    grid-template-columns:1fr;

}

.info-card{

    padding:35px 25px;

}

.contact-form-box{

    padding:35px 25px;

}

.form-row{

    grid-template-columns:1fr;

}

.contact-side img{

    height:280px;
    object-fit:cover;

}

.office-card{

    padding:30px 25px;

}

.social-grid{

    grid-template-columns:1fr;

}

.section-title{

    margin-bottom:55px;

}

.section-title h2{

    font-size:2.2rem;

}

.section-title p{

    font-size:16px;

}

.map-wrapper iframe{

    height:300px;

}

}


/*=====================================
SMALL PHONES
=====================================*/

@media (max-width:480px){

.contact-container{

    width:92%;

}

.contact-hero{

    padding:110px 0 50px;

}

.hero-content h1{

    font-size:2.1rem;

}

.hero-content p{

    font-size:15px;

}

.hero-image-box img{

    max-height:240px;

}

.hero-contact-strip{

    padding:20px;

}

.hero-icon{

    width:55px;
    height:55px;
    font-size:22px;

}

.hero-contact-card h4{

    font-size:18px;

}

.hero-contact-card p{

    font-size:14px;

}

.section-title h2{

    font-size:1.9rem;

}

.info-card h3{

    font-size:24px;

}

.contact-form-box h2{

    font-size:2rem;

}

.office-card h3{

    font-size:28px;

}

.social-card{

    padding:35px 20px;

}

}