/*==================================================
    CLOUGHS Plumbing & Heating Engineers
    Professional Website
    PART 1
==================================================*/


/*==============================
        GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==============================
        ROOT VARIABLES
==============================*/

:root{

    --primary:#d32f2f;
    --primary-dark:#b71c1c;

    --secondary:#0f172a;

    --light:#f8fafc;

    --white:#ffffff;

    --grey:#64748b;

    --border:#e2e8f0;

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

    --radius:18px;

    --transition:.35s ease;

}


/*==============================
        RESET
==============================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--light);

    color:var(--secondary);

    overflow-x:hidden;

}


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

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

section{

    padding:100px 8%;

}

h2{

    font-size:44px;

    text-align:center;

    margin-bottom:20px;

}

.section-subtitle{

    text-align:center;

    color:var(--grey);

    margin-bottom:60px;

    font-size:18px;

    line-height:1.8;

}


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

.primary-btn{

    display:inline-block;

    background:var(--primary);

    color:white;

    padding:18px 36px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.primary-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:var(--shadow);

}

.secondary-btn{

    display:inline-block;

    padding:18px 36px;

    border:2px solid white;

    border-radius:50px;

    color:white;

    transition:var(--transition);

}

.secondary-btn:hover{

    background:white;

    color:var(--secondary);

}


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

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:90px;

    background:rgba(15,23,42,.96);

    backdrop-filter:blur(12px);

    z-index:1000;

    box-shadow:0 6px 20px rgba(0,0,0,.15);

}

/*======================================
    NAVBAR
======================================*/

.navbar{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:90px;

    background:#151d31;

    box-shadow:0 5px 20px rgba(0,0,0,.25);

    z-index:9999;
}

.navbar-container{

    max-width:1400px;
    width:100%;
    height:100%;

    margin:auto;

    padding:0 40px;

    box-sizing:border-box;

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

}

.logo img{

    height:65px;
    display:block;

}

/*==============================
    NAV LINKS
==============================*/

.nav-links{

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

}

.nav-links a{

    color:#fff;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:.3s;

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#d92f2f;

    transition:.3s;

}

.nav-links a:hover{

    color:#d92f2f;

}

.nav-links a:hover::after{

    width:100%;

}

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

.nav-actions{

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

}

.theme-toggle{

    width:48px;
    height:48px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#111;

    cursor:pointer;

    font-size:18px;

    transition:.3s;

}

.theme-toggle:hover{

    transform:rotate(180deg);

}

.call-btn{

    background:#d92f2f;

    color:#fff;

    text-decoration:none;

    padding:14px 28px;

    border-radius:30px;

    font-weight:600;

    transition:.3s;

}

.call-btn:hover{

    background:#b81d1d;

    transform:translateY(-2px);

}

.hamburger{

    display:none;

    color:white;

    font-size:30px;

    cursor:pointer;

}

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

@media (max-width:900px){

    .navbar{

        height:80px;

    }

    .navbar-container{

        padding:0 25px;

    }

    .logo img{

        height:55px;

    }

    .nav-links{

        position:fixed;

        top:80px;

        right:-100%;

        width:270px;

        height:calc(100vh - 80px);

        background:#151d31;

        display:flex;

        flex-direction:column;

        justify-content:flex-start;

        align-items:flex-start;

        gap:25px;

        padding:40px 30px;

        transition:.35s ease;

    }

    .nav-links.active{

        right:0;

    }

    .nav-links a{

        width:100%;

        padding-bottom:10px;

        border-bottom:1px solid rgba(255,255,255,.08);

    }

    .hamburger{

        display:block;

    }

    .call-btn{

        display:none;

    }
@media screen and (max-width:900px){

    .stats-grid{

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

        gap:20px;

    }

    .stat{

        padding:25px 15px;

    }

    .stat h2{

        font-size:2rem;

    }

}

}

/*==============================
        LOGO
==============================*/

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:75px;

    border-radius:12px;

}


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

.nav-links{

    display:flex;

    gap:40px;

    align-items:center;

}

.nav-links a{

    color:white;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a:hover::after{

    width:100%;

}







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

.hero{

    position:relative;

    margin-top:90px;

    height:calc(100vh - 90px);

    overflow:hidden;

}

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

.hero-slide{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:opacity 1.2s ease-in-out;

}

.hero-slide.active{

    opacity:1;

    visibility:visible;

    z-index:2;

}

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

.hero-slide img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

/*==============================================
                OVERLAY
==============================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(7,12,24,.78),
        rgba(7,12,24,.78)
    );

    z-index:1;

}


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

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    height:100%;

    margin:auto;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px;

    color:white;

}

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

.hero-content h1{

    font-size:70px;

    font-weight:700;

    margin-bottom:20px;

    line-height:1.1;

}

.hero-content h2{

    font-size:32px;

    font-weight:400;

    color:#dbeafe;

    margin-bottom:30px;

}

.hero-content p{

    max-width:750px;

    font-size:20px;

    line-height:1.9;

    color:#f8fafc;

    margin-bottom:45px;

}

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

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==============================================
                SERVICE INDICATOR
==============================================*/

.hero-services{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:25px;

    z-index:3;

    flex-wrap:wrap;

}

.hero-services span{

    color:white;

    opacity:.45;

    font-size:15px;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:.3s;

}

.hero-services span.active{

    color:var(--primary);

    opacity:1;

    font-weight:600;

}

/*==============================================
                SLIDE COUNTER
==============================================*/

.hero-counter{

    position:absolute;

    top:120px;

    right:50px;

    color:white;

    font-size:18px;

    font-weight:600;

    z-index:3;

}

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

.hero-slide.active .hero-content{

    animation:slideFade .9s ease;

}

@keyframes slideFade{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

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

@media(max-width:992px){

.hero-content h1{

font-size:52px;

}

.hero-content h2{

font-size:28px;

}

.hero-content p{

font-size:18px;

}

.hero-counter{

right:25px;

}

}


@media(max-width:768px){

.hero{

height:calc(100vh - 90px);

}

.hero-content{

padding:30px;

}

.hero-content h1{

font-size:38px;

}

.hero-content h2{

font-size:22px;

}

.hero-content p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.hero-services{

gap:12px;

bottom:25px;

}

.hero-services span{

font-size:11px;

}

.hero-counter{

display:none;

}

}



/*==============================================
                GOOGLE RATING
==============================================*/

.rating{

    display:inline-block;

    padding:20px 35px;

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

    backdrop-filter:blur(12px);

    border-radius:18px;

}

.rating .stars{

    color:#FFD700;

    font-size:30px;

    letter-spacing:3px;

    margin-bottom:10px;

}

.rating p{

    margin:0;

    color:white;

    font-size:18px;

    font-weight:500;

}

.rating span{

    color:#d1d5db;

}

/*==============================================
                HERO SCROLL INDICATOR
==============================================*/

.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    z-index:2;

    color:white;

    font-size:28px;

    animation:bounce 2s infinite;

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-10px);

    }

    60%{

        transform:translate(-50%,-5px);

    }

}


/*==============================
        STATS
==============================*/

.stats{
    padding:80px 20px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

    max-width:1400px;
    margin:0 auto;
}

.stat{
    background:var(--card);
    padding:40px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
}

.stat:hover{

    transform:translateY(-8px);

}

.stat h2{

    color:var(--primary);

    margin-bottom:10px;

    font-size:42px;

}

.stat p{

    color:var(--grey);

}


/*==============================
        SCROLL ANIMATIONS
==============================*/

.card,
.stat,
.why-card,
.gallery-grid img{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.show{

    opacity:1 !important;

    transform:translateY(0) !important;

}


/*==============================
        DARK MODE
==============================*/

body.dark-mode{

    background:#0f172a;

    color:white;

}

body.dark-mode .stat{

    background:#1e293b;

    color:white;

}

body.dark-mode header{

    background:rgba(2,6,23,.95);

}

body.dark-mode .secondary-btn{

    border-color:white;

}

body.dark-mode #services{

    background:#111827;

}

body.dark-mode .service-grid .card{

    background:#1e293b;

    border:1px solid #334155;

}

body.dark-mode .service-grid .card h3{

    color:white;

}

body.dark-mode .service-grid .card p{

    color:#cbd5e1;

}

body.dark-mode .review-card p{

    color:#f8fafc;

}

body.dark-mode .review-info h4{

    color:white;

}

body.dark-mode .review-info small{

    color:#cbd5e1;

}

body.dark-mode .stars{

    color:#FFD700;

}

body.dark-mode .google-badge{

    background:#334155;

    color:white;

}


/*==============================================
                TABLET
==============================================*/

@media(max-width:992px){

.hero h1{

font-size:52px;

}

.hero h2{

font-size:28px;

}

.hero p{

font-size:18px;

}

}



/*==================================================
    PART 2
    SERVICES • WHY US • GALLERY • REVIEWS • CTA
==================================================*/


/*====================================
            SERVICES
====================================*/

#services{

    background:#ffffff;

}

.service-grid{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}

@media(max-width:992px){

.service-grid{

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

}

}

@media(max-width:768px){

.service-grid{

grid-template-columns:1fr;

}

}

.card{

    background:white;

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-10px);

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

}

.card i{

    font-size:52px;

    color:var(--primary);

    margin-bottom:25px;

}

.card h3{

    margin-bottom:18px;

    font-size:24px;

}

.card p{

    color:var(--grey);

    line-height:1.8;

}


/*====================================
            WHY CHOOSE US
====================================*/

.why-us{

    background:#f8fafc;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

    margin-top:60px;

}

.why-card{

    background:white;

    border-radius:20px;

    padding:40px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-card i{

    font-size:46px;

    color:var(--primary);

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

}

.why-card p{

    color:var(--grey);

    line-height:1.8;

}


/*====================================
            GALLERY
====================================*/

.gallery-preview{

    background:white;

}

.gallery-grid{

    display:grid;

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

    gap:25px;

    margin-top:60px;

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    transition:.4s;

    box-shadow:var(--shadow);

}

.gallery-grid img:hover{

    transform:scale(1.05);

}


/*====================================
            REVIEWS
====================================*/

.reviews{

    background:#eef4f8;

    text-align:center;

}

#reviews-container{

    max-width:900px;

    margin:60px auto;

}

.review-card{

    display:none;

    background:white;

    border-radius:22px;

    padding:45px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    animation:fadeReview .5s ease;

}

.review-card.active{

    display:block;

}

.review-header{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    margin-bottom:25px;

}

.review-header img{

    width:72px;

    height:72px;

    border-radius:50%;

    object-fit:cover;

    border:none

}

.review-info{

    text-align:left;

}

.review-info h4{

    font-size:20px;

    margin-bottom:5px;

}

.review-info small{

    color:var(--grey);

}

.stars{

    color:#FFD700;

    font-size:26px;

    margin-bottom:20px;

}

.review-card p{

    font-size:19px;

    line-height:1.9;

    color:var(--secondary);

    margin-bottom:30px;

    font-style:italic;

}

.google-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#f1f5f9;

    padding:12px 24px;

    border-radius:50px;

    font-weight:600;

}

.google-badge i{

    color:#4285F4;

}


/*====================================
        REVIEW ANIMATION
====================================*/

@keyframes fadeReview{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*====================================
            CTA SECTION
====================================*/

.quote-banner{

    background:
    linear-gradient(rgba(15,23,42,.82),rgba(15,23,42,.82)),
    url("../images/plumber-bg.jpg");

    background-size:cover;

    background-position:center;

    text-align:center;

    color:white;

}

.quote-banner h2{

    color:white;

    font-size:46px;

    margin-bottom:20px;

}

.quote-banner p{

    max-width:700px;

    margin:auto;

    font-size:19px;

    line-height:1.9;

    margin-bottom:35px;

}


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

@media(max-width:1100px){

.gallery-grid{

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

}

}

@media(max-width:768px){

.service-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.review-header{

flex-direction:column;

text-align:center;

}

.review-info{

text-align:center;

}

.review-card{

padding:30px;

}

.review-card p{

font-size:17px;

}

.quote-banner h2{

font-size:34px;

}

}/*==================================================
    PART 3
    CONTACT • FORMS • FOOTER • UTILITIES
==================================================*/


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

.contact-section{

    background:#f8fafc;

}

.contact-grid{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}

.contact-card{

    background:white;

    padding:40px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-card i{

    font-size:48px;

    color:var(--primary);

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:15px;

}

.contact-card p{

    color:var(--grey);

    line-height:1.8;

}

.contact-card a{

    color:var(--primary);

    font-weight:600;

}


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

.quote-form{

    max-width:950px;

    margin:80px auto;

    background:white;

    padding:50px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.form-grid{

    display:grid;

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

    gap:25px;

}

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

    width:100%;

    padding:16px;

    border:1px solid var(--border);

    border-radius:12px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

    outline:none;

    transition:.3s;

}

.quote-form textarea{

    resize:vertical;

    min-height:180px;

}

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

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(211,47,47,.15);

}

.quote-form button{

    width:100%;

    margin-top:30px;

    border:none;

    cursor:pointer;

}


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

footer{

    position:relative;

    background:#020617;

    color:white;

    text-align:center;

    padding:60px 20px;

}

.footer-content{

    max-width:700px;

    margin:auto;

}

.footer-content h2{

    color:white;

    margin-bottom:15px;

}

.footer-content img{

    width:90px;

    margin:25px auto;

    border-radius:12px;

}

.footer-content p{

    color:#cbd5e1;

    margin:12px 0;

    line-height:1.8;

}

.footer-content a{

    color:#cbd5e1;

    transition:.3s;

}

.footer-content a:hover{

    color:var(--primary);

}

.social-icons{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:30px;

}


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

.social-icons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

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

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    transition:.3s;

}

.social-icons a:hover{

    background:var(--primary);

    transform:translateY(-5px);

}


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

.floating-call,
.floating-whatsapp{

    position:fixed;

    right:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:24px;

    z-index:999;

    text-decoration:none;

    box-shadow:var(--shadow);

    transition:.3s;

}

.floating-call{

    bottom:100px;

    background:#2563eb;

}

.floating-whatsapp{

    bottom:170px;

    background:#25D366;

}

.floating-call:hover,
.floating-whatsapp:hover{

    transform:scale(1.08);

}


/*====================================
        BACK TO TOP
====================================*/

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:white;

    font-size:22px;

    cursor:pointer;

    opacity:0;

    pointer-events:none;

    transition:.35s;

    box-shadow:var(--shadow);

}

#backToTop.show{

    opacity:1;

    pointer-events:auto;

}


/*====================================
        IMAGE EFFECTS
====================================*/

.gallery-grid img{

    overflow:hidden;

}

.gallery-grid img:hover{

    filter:brightness(.95);

}


/*====================================
        DARK MODE
====================================*/

body.dark-mode{

    background:#0f172a;

    color:white;

}

body.dark-mode section{

    background:#0f172a;

}

body.dark-mode .card,
body.dark-mode .why-card,
body.dark-mode .review-card,
body.dark-mode .contact-card,
body.dark-mode .quote-form,
body.dark-mode .stat{

    background:#1e293b;

    color:white;

}

body.dark-mode .card p,
body.dark-mode .why-card p,
body.dark-mode .contact-card p,
body.dark-mode .stat p{

    color:#cbd5e1;

}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select{

    background:#334155;

    color:white;

    border:1px solid #475569;

}

body.dark-mode footer{

    background:#020617;

}

body.dark-mode .google-badge{

    background:#334155;

    color:white;

}


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

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}


/*====================================
        SCROLLBAR
====================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#b91c1c;

}


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

@media(max-width:1100px){

.footer-content{

grid-template-columns:1fr;

text-align:center;

}

.social-icons{

justify-content:center;

}

.contact-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.form-grid{

grid-template-columns:1fr;

}

.quote-form{

padding:30px;

}

.floating-call{

bottom:90px;

}

.floating-whatsapp{

bottom:160px;

}

}

@media(max-width:600px){

.quote-form{

padding:25px;

}

.footer-logo img{

margin:auto;

margin-bottom:20px;

}

}

/*==============================
      GAS SAFE BADGE
==============================*/

.gas-safe{

    position:absolute;

    bottom:25px;

    right:25px;

}

.gas-safe img{

    width:130px;

    height:auto;

    transition:.3s ease;

}

.gas-safe img:hover{

    transform:scale(1.05);

}


/*==================================================
    END OF STYLESHEET
==================================================*/

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

.page-hero{

    position:relative;

    margin-top:90px;

    height:350px;

    background:url("../slider/bathroom.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

.page-hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(7,12,24,.78);

}

.page-hero-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

    max-width:850px;

    padding:20px;

}

.page-hero h1{

    font-size:56px;

    margin-bottom:20px;

    font-weight:700;

}

.page-hero p{

    font-size:20px;

    color:#d1d5db;

}


/*=========================================================
                    CONTACT SECTION
=========================================================*/

.contact-page{

    padding:100px 8%;

    background:var(--background);

}

.contact-container{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    max-width:1400px;

    margin:auto;

}


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

.contact-card{

    background:var(--card-bg);

    border-radius:20px;

    padding:45px;

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

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-5px);

}

.contact-card h2{

    margin-bottom:15px;

    font-size:32px;

}

.contact-card>p{

    color:var(--text-light);

    margin-bottom:35px;

}


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

#contactForm{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group label{

    margin-bottom:8px;

    font-weight:600;

}

.form-group input,

.form-group textarea,

.form-group select{

    background:var(--input-bg);

    color:var(--text);

    border:2px solid transparent;

    border-radius:12px;

    padding:16px;

    font-size:16px;

    transition:.3s;

    font-family:inherit;

}

.form-group textarea{

    resize:vertical;

    min-height:180px;

}

.form-group input:focus,

.form-group textarea:focus,

.form-group select:focus{

    border-color:var(--primary);

    outline:none;

    box-shadow:0 0 0 4px rgba(220,38,38,.15);

}


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

#contactForm button{

    margin-top:10px;

    width:100%;

    font-size:18px;

    padding:18px;

}


/*=========================================================
                    CONTACT INFO
=========================================================*/

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.info-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.info-item i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.info-item h3{

    margin-bottom:6px;

}

.info-item p{

    color:var(--text-light);

}

.info-item a{

    color:inherit;

    text-decoration:none;

}

.info-item a:hover{

    color:var(--primary);

}

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

.contact-social{

    margin-top:35px;

    text-align:center;

}

.contact-social h3{

    margin-bottom:18px;

}

.contact-social a{

    width:52px;

    height:52px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--primary);

    text-decoration:none;

    transition:all .3s ease;

}

.contact-social a i{

    color:#ffffff;

    font-size:24px;

    line-height:1;

}

.contact-social a:hover{

    background:#b91c1c;

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(220,38,38,.35);

}


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

.map-section{

    padding:0 8% 100px;

    background:var(--background);

}

.map-container{

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.2);

}

.map-container iframe{

    width:100%;

    height:500px;

    display:block;

    border:none;

}

.map-buttons{

    display:flex;

    justify-content:center;

    margin-top:35px;

}


/*=========================================================
                    DARK MODE
=========================================================*/

body.dark-mode .contact-card{

    background:#111827;

}

body.dark-mode .form-group input,

body.dark-mode .form-group textarea,

body.dark-mode .form-group select{

    background:#1f2937;

    color:#fff;

}

body.dark-mode .form-group label{

    color:#fff;

}

body.dark-mode .contact-card>p,

body.dark-mode .info-item p{

    color:#d1d5db;

}


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

@media(max-width:992px){

.contact-container{

grid-template-columns:1fr;

}

.contact-card{

padding:35px;

}

.page-hero h1{

font-size:42px;

}

}

@media(max-width:768px){

.page-hero{

height:260px;

}

.page-hero h1{

font-size:34px;

}

.page-hero p{

font-size:17px;

}

.contact-page{

padding:70px 5%;

}

.map-section{

padding:0 5% 70px;

}

.contact-card{

padding:25px;

}

.info-item{

flex-direction:column;

align-items:flex-start;

}

.info-item i{

margin-bottom:8px;

}

}