/*=========================================================
 Florida's Best Impact Windows & Doors
 Production Stylesheet
 Version 1.0

 Part 1
 - CSS Variables
 - Reset
 - Base Layout
 - Typography
 - Utility Classes
==========================================================*/


/*=========================================================
CSS VARIABLES
==========================================================*/

:root{

    --primary:#0B5FA5;
    --primary-dark:#083D6B;
    --secondary:#1D9BF0;

    --accent:#F59E0B;

    --success:#16A34A;

    --white:#ffffff;
    --black:#111111;

    --gray-50:#F8FAFC;
    --gray-100:#F1F5F9;
    --gray-200:#E2E8F0;
    --gray-300:#CBD5E1;
    --gray-400:#94A3B8;
    --gray-500:#64748B;
    --gray-600:#475569;
    --gray-700:#334155;
    --gray-800:#1E293B;
    --gray-900:#0F172A;

    --container:1280px;

    --radius-sm:6px;
    --radius:12px;
    --radius-lg:18px;
    --radius-xl:30px;

    --shadow-sm:
        0 2px 6px rgba(0,0,0,.08);

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

    --shadow-lg:
        0 20px 40px rgba(0,0,0,.18);

    --transition:.30s ease;

}


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

*,
*::before,
*::after{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:

        Inter,
        Arial,
        Helvetica,
        sans-serif;

    color:var(--gray-700);

    background:var(--gray-50);

    line-height:1.7;

    -webkit-font-smoothing:antialiased;

}

img{

    display:block;

    width:100%;

    height:auto;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

button,
input,
select,
textarea{

    font:inherit;

}

button{

    cursor:pointer;

}

section{

    padding:90px 0;

}


/*=========================================================
TYPOGRAPHY
==========================================================*/

h1,
h2,
h3,
h4,
h5{

    color:var(--gray-900);

    line-height:1.2;

    font-weight:700;

}

h1{

    font-size:clamp(2.7rem,5vw,4.5rem);

}

h2{

    font-size:clamp(2rem,4vw,3rem);

    margin-bottom:20px;

}

h3{

    font-size:1.45rem;

}

h4{

    font-size:1.2rem;

}

p{

    color:var(--gray-600);

    margin-bottom:18px;

}

small{

    color:var(--gray-500);

}


/*=========================================================
LAYOUT
==========================================================*/

.container{

    width:min(var(--container),92%);

    margin-inline:auto;

}

.grid{

    display:grid;

    gap:30px;

}

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    align-items:center;

    justify-content:center;

}

.text-center{

    text-align:center;

}

.text-right{

    text-align:right;

}


/*=========================================================
SPACING UTILITIES
==========================================================*/

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:60px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:60px;}

.pt-1{padding-top:10px;}
.pt-2{padding-top:20px;}
.pt-3{padding-top:30px;}
.pt-4{padding-top:40px;}

.pb-1{padding-bottom:10px;}
.pb-2{padding-bottom:20px;}
.pb-3{padding-bottom:30px;}
.pb-4{padding-bottom:40px;}


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

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:

        14px 28px;

    background:

        var(--primary);

    color:white;

    border:none;

    border-radius:

        var(--radius);

    font-weight:600;

    transition:

        var(--transition);

    box-shadow:

        var(--shadow-sm);

}

.btn-primary:hover{

    background:

        var(--primary-dark);

    transform:

        translateY(-2px);

    box-shadow:

        var(--shadow);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:

        14px 28px;

    border:

        2px solid var(--primary);

    color:

        var(--primary);

    border-radius:

        var(--radius);

    transition:

        var(--transition);

}

.btn-secondary:hover{

    background:

        var(--primary);

    color:white;

}

.btn-large{

    padding:

        18px 36px;

    font-size:1.1rem;

}


/*=========================================================
SECTION HEADERS
==========================================================*/

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:end;

    margin-bottom:45px;

}

.section-header p{

    max-width:700px;

}
/*=========================================================
 Part 2
 Header
 Navigation
 Hero
 Mobile Navigation
==========================================================*/


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

header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

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

    backdrop-filter:blur(10px);

    border-bottom:1px solid var(--gray-200);

    z-index:5000;

    transition:var(--transition);

}

header.scrolled{

    box-shadow:var(--shadow);

}

header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:86px;

}


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

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    flex-shrink:0;

}

.logo img{

    width:160px;

    height:auto;

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.logo-text h2{

    margin:0;

    font-size:1.35rem;

    color:var(--primary-dark);

}

.logo-text span{

    font-size:.85rem;

    color:var(--gray-500);

}


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

nav{

    display:flex;

    align-items:center;

    gap:36px;

}

nav a{

    position:relative;

    color:var(--gray-700);

    font-weight:600;

    transition:var(--transition);

}

nav a:hover{

    color:var(--primary);

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:var(--primary);

    transition:.25s;

    border-radius:10px;

}

nav a:hover::after{

    width:100%;

}

nav a.active{

    color:var(--primary);

}

nav a.active::after{

    width:100%;

}


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

.header-actions{

    display:flex;

    align-items:center;

    gap:20px;

}


/*=========================================================
MOBILE MENU BUTTON
==========================================================*/

.menu-toggle{

    display:none;

    width:48px;

    height:48px;

    border:none;

    background:transparent;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:28px;

    height:3px;

    margin:6px auto;

    background:var(--primary-dark);

    transition:.30s;

}


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

.mobile-nav{

    position:fixed;

    top:0;

    right:-100%;

    width:320px;

    height:100vh;

    background:white;

    box-shadow:-10px 0 40px rgba(0,0,0,.18);

    transition:.35s;

    z-index:9999;

    padding:90px 35px;

}

.mobile-nav.open{

    right:0;

}

.mobile-nav a{

    display:block;

    padding:16px 0;

    font-size:1.1rem;

    font-weight:600;

    border-bottom:1px solid var(--gray-200);

}

.mobile-nav a:hover{

    color:var(--primary);

}

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.30s;

    z-index:9998;

}

.mobile-overlay.show{

    opacity:1;

    visibility:visible;

}


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

.hero{

    position:relative;

    min-height:90vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:

    linear-gradient(

        rgba(8,61,107,.72),

        rgba(8,61,107,.72)

    ),

    url("../images/hero.jpg")

    center center / cover;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        90deg,

        rgba(0,0,0,.15),

        rgba(0,0,0,.05)

    );

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

    color:white;

}

.hero-content h1{

    color:white;

    margin-bottom:28px;

}

.hero-content p{

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

    font-size:1.25rem;

    margin-bottom:40px;

}


/*=========================================================
HERO BUTTON GROUP
==========================================================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero .btn-secondary{

    border-color:white;

    color:white;

}

.hero .btn-secondary:hover{

    background:white;

    color:var(--primary-dark);

}


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

.hero-stats{

    display:grid;

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

    gap:25px;

    margin-top:80px;

}

.stat-card{

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

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.18);

    border-radius:var(--radius);

    padding:24px;

    text-align:center;

}

.stat-card h2{

    color:white;

    margin:0;

    font-size:2rem;

}

.stat-card p{

    margin-top:10px;

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

}


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

.page-hero{

    background:

        linear-gradient(

            rgba(8,61,107,.80),

            rgba(8,61,107,.80)

        ),

        url("../images/page-banner.jpg")

        center/cover;

    padding:140px 0 100px;

    text-align:center;

}

.page-hero h1{

    color:white;

}

.page-hero p{

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

    max-width:700px;

    margin:20px auto 0;

}


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

.scroll-down{

    position:absolute;

    left:50%;

    bottom:30px;

    transform:translateX(-50%);

    animation:bounce 2s infinite;

}

.scroll-down svg{

    width:36px;

    height:36px;

    fill:white;

}

@keyframes bounce{

    0%{

        transform:translate(-50%,0);

    }

    50%{

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

    }

    100%{

        transform:translate(-50%,0);

    }

}


/*=========================================================
ANNOUNCEMENT BAR
==========================================================*/

.top-bar{

    background:var(--primary-dark);

    color:white;

    font-size:.9rem;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:8px 0;

}

.top-bar a{

    color:white;

}

.top-bar .social{

    display:flex;

    gap:16px;

}
/*=========================================================
 Part 3
 Services
 Feature Cards
 Gallery Cards
 Featured Projects
 Testimonials
 Call-To-Action
==========================================================*/


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

.services{

    background:var(--white);

}

.card-grid{

    display:grid;

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

    gap:35px;

}

.service-card{

    background:var(--white);

    padding:40px;

    border-radius:var(--radius-lg);

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

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:var(--primary);

    transform:scaleY(0);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.service-card:hover::before{

    transform:scaleY(1);

}

.service-card i{

    font-size:54px;

    color:var(--primary);

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:18px;

}

.service-card p{

    margin-bottom:0;

}


/*=========================================================
FEATURES
==========================================================*/

.why-us{

    background:var(--gray-100);

}

.features{

    display:grid;

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

    gap:30px;

}

.feature{

    background:white;

    padding:35px;

    text-align:center;

    border-radius:var(--radius);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.feature:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.feature-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

}

.feature h3{

    margin-bottom:15px;

}


/*=========================================================
FEATURED PROJECTS
==========================================================*/

.featured-projects{

    background:white;

}

.gallery-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fill,minmax(340px,1fr));

    gap:35px;

}


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

.gallery-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    cursor:pointer;

}

.gallery-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.gallery-image{

    position:relative;

    overflow:hidden;

}

.gallery-image img{

    height:270px;

    object-fit:cover;

    transition:.45s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

.gallery-badge{

    position:absolute;

    left:18px;

    top:18px;

    background:var(--accent);

    color:white;

    padding:8px 16px;

    border-radius:50px;

    font-size:.8rem;

    font-weight:700;

}

.photo-count{

    position:absolute;

    right:18px;

    bottom:18px;

    background:rgba(0,0,0,.75);

    color:white;

    padding:8px 14px;

    border-radius:50px;

    font-size:.8rem;

}

.gallery-info{

    padding:28px;

}

.gallery-info h3{

    margin-bottom:12px;

}

.gallery-location{

    color:var(--gray-500);

    margin-bottom:20px;

}

.project-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.project-tag{

    background:var(--gray-100);

    color:var(--gray-700);

    padding:8px 14px;

    border-radius:50px;

    font-size:.82rem;

}


/*=========================================================
PROJECT DETAILS
==========================================================*/

.project-meta{

    display:grid;

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

    gap:15px;

    margin-top:20px;

}

.meta-box{

    background:var(--gray-50);

    padding:14px;

    border-radius:10px;

}

.meta-label{

    font-size:.75rem;

    color:var(--gray-500);

    text-transform:uppercase;

}

.meta-value{

    font-weight:600;

    margin-top:5px;

}


/*=========================================================
TESTIMONIALS
==========================================================*/

.testimonials{

    background:var(--gray-100);

}

.testimonial-grid{

    display:grid;

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

    gap:35px;

}

.testimonial{

    background:white;

    padding:40px;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-sm);

    transition:.30s;

}

.testimonial:hover{

    transform:translateY(-6px);

}

.quote{

    font-size:4rem;

    color:var(--primary);

    line-height:1;

    margin-bottom:20px;

}

.customer{

    display:flex;

    align-items:center;

    gap:18px;

    margin-top:30px;

}

.customer img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

}

.customer-name{

    font-weight:700;

}

.customer-location{

    color:var(--gray-500);

    font-size:.9rem;

}


/*=========================================================
STAR RATING
==========================================================*/

.stars{

    display:flex;

    gap:4px;

    margin-top:15px;

}

.star{

    color:#FBBF24;

    font-size:20px;

}


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

.cta{

    background:

    linear-gradient(

        135deg,

        var(--primary),

        var(--primary-dark)

    );

    color:white;

    text-align:center;

}

.cta h2{

    color:white;

    margin-bottom:25px;

}

.cta p{

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

    max-width:700px;

    margin:0 auto 40px;

}

.cta .btn-primary{

    background:white;

    color:var(--primary-dark);

}

.cta .btn-primary:hover{

    background:var(--accent);

    color:white;

}


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

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.zoom{

    transition:.35s;

}

.zoom:hover{

    transform:scale(1.05);

}

.rotate:hover{

    transform:rotate(2deg);

}
/*=========================================================
 Part 4
 Contact
 About
 Gallery Filters
 Lightbox
 Footer
 Forms
 Responsive Design
 Print Styles
==========================================================*/


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

.contact-section{

    background:var(--gray-100);

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 420px;

    gap:50px;

    align-items:start;

}

.contact-form{

    background:white;

    padding:45px;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow);

}

.contact-info{

    background:var(--primary-dark);

    color:white;

    border-radius:var(--radius-lg);

    padding:40px;

}

.contact-info h2,
.contact-info h3{

    color:white;

}

.contact-item{

    display:flex;

    gap:18px;

    margin:25px 0;

}

.contact-item i{

    width:46px;

    height:46px;

    border-radius:50%;

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

    display:flex;

    align-items:center;

    justify-content:center;

}


/*=========================================================
FORMS
==========================================================*/

form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

label{

    display:block;

    font-weight:600;

    margin-bottom:8px;

    color:var(--gray-700);

}

input,
textarea,
select{

    width:100%;

    padding:14px 18px;

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

    border-radius:var(--radius);

    background:white;

    transition:var(--transition);

}

textarea{

    resize:vertical;

    min-height:180px;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(11,95,165,.15);

}

.required{

    color:#dc2626;

}


/*=========================================================
ABOUT PAGE
==========================================================*/

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-grid img{

    border-radius:20px;

    box-shadow:var(--shadow-lg);

}

.stats-grid{

    display:grid;

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

    gap:20px;

    margin-top:40px;

}

.stat{

    background:white;

    padding:30px;

    text-align:center;

    border-radius:var(--radius);

    box-shadow:var(--shadow-sm);

}

.stat h2{

    color:var(--primary);

    margin-bottom:8px;

}


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

.filter-bar{

    display:grid;

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

    gap:15px;

    background:white;

    padding:25px;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow);

    margin-bottom:40px;

}

.results-bar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.results-count{

    color:var(--gray-500);

}


/*=========================================================
LIGHTBOX
==========================================================*/

#lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.90);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

#lightbox.show{

    display:flex;

}

.lightbox-container{

    width:min(1200px,95vw);

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow-lg);

}

.lightbox-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:var(--primary-dark);

    color:white;

    padding:20px 30px;

}

.lightbox-header h2{

    color:white;

    margin:0;

}

.lightbox-close{

    background:none;

    border:none;

    color:white;

    font-size:2rem;

}

.lightbox-body{

    display:grid;

    grid-template-columns:2fr 1fr;

}

.lightbox-image{

    background:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:600px;

}

.lightbox-image img{

    max-width:100%;

    max-height:80vh;

    object-fit:contain;

}

.lightbox-sidebar{

    padding:35px;

    overflow:auto;

}

.lightbox-sidebar h3{

    margin-bottom:20px;

}

.detail{

    margin-bottom:18px;

    padding-bottom:18px;

    border-bottom:1px solid var(--gray-200);

}

.detail strong{

    display:block;

    color:var(--gray-500);

    margin-bottom:4px;

}

.lightbox-nav{

    position:absolute;

    width:100%;

    display:flex;

    justify-content:space-between;

    padding:0 20px;

}

.lightbox-nav button{

    width:60px;

    height:60px;

    border-radius:50%;

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

    color:var(--primary-dark);

    border:none;

    font-size:1.5rem;

}


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

footer{

    background:var(--gray-900);

    color:white;

    padding:70px 0 30px;

}

.footer-grid{

    display:grid;

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

    gap:40px;

}

footer h3{

    color:white;

    margin-bottom:20px;

}

footer p,
footer li,
footer a{

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

}

footer ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

footer a:hover{

    color:white;

}

.footer-bottom{

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

    margin-top:50px;

    padding-top:30px;

    text-align:center;

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

}


/*=========================================================
UTILITY CLASSES
==========================================================*/

.shadow{

    box-shadow:var(--shadow);

}

.rounded{

    border-radius:var(--radius);

}

.hidden{

    display:none !important;

}

.w-100{

    width:100%;

}

.text-primary{

    color:var(--primary);

}

.bg-white{

    background:white;

}


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

@media (max-width:1100px){

    .hero-stats{

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

    }

    .contact-grid,
    .about-grid,
    .lightbox-body,
    .footer-grid{

        grid-template-columns:1fr;

    }

    .filter-bar{

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

    }

}

@media (max-width:768px){

    nav{

        display:none;

    }

    .menu-toggle{

        display:block;

    }

    section{

        padding:60px 0;

    }

    .hero{

        min-height:70vh;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .form-row{

        grid-template-columns:1fr;

    }

    .filter-bar{

        grid-template-columns:1fr;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .card-grid{

        grid-template-columns:1fr;

    }

    .features{

        grid-template-columns:1fr;

    }

}

@media (max-width:480px){

    h1{

        font-size:2.3rem;

    }

    h2{

        font-size:1.8rem;

    }

    .contact-form,
    .contact-info{

        padding:25px;

    }

    .hero-stats{

        grid-template-columns:1fr;

    }

}


/*=========================================================
PRINT
==========================================================*/

@media print{

    header,
    footer,
    .btn-primary,
    .btn-secondary,
    .filter-bar,
    #lightbox{

        display:none !important;

    }

    body{

        background:white;

        color:black;

    }

    a{

        text-decoration:none;

        color:black;

    }

}
/*=========================================================
CONTACT PAGE ENHANCEMENTS
==========================================================*/

.contact-hero{

    background:
        linear-gradient(
            90deg,
            rgba(4,31,54,.92),
            rgba(4,31,54,.66)
        ),
        url("../images/about-hero.jpg")
        center / cover no-repeat;

}

.header-phone{

    font-weight:700;

    color:var(--primary-dark);

}

.form-group{

    min-width:0;

}

.form-note{

    margin:0;

    text-align:center;

    color:var(--gray-500);

    font-size:.9rem;

}

.form-note a{

    font-weight:700;

    color:var(--primary);

}

.checkbox-label{

    display:flex;

    align-items:flex-start;

    gap:12px;

    cursor:pointer;

    font-weight:400;

    line-height:1.5;

}

.checkbox-label input{

    width:18px;

    height:18px;

    flex:0 0 auto;

    margin-top:3px;

}

.contact-info a{

    color:white;

}

.contact-info address{

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

    font-style:normal;

    line-height:1.7;

}

.contact-info strong{

    display:block;

    margin-bottom:4px;

}

.contact-icon{

    width:46px;

    height:46px;

    flex:0 0 46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

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

}

.contact-divider{

    height:1px;

    margin:30px 0;

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

}

.contact-benefits{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.contact-benefits li{

    position:relative;

    padding-left:26px;

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

}

.contact-benefits li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#7dd3fc;

    font-weight:800;

}

.location-section{

    background:white;

}

.map-container{

    overflow:hidden;

    min-height:480px;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-lg);

}

.map-container iframe{

    width:100%;

    height:480px;

    border:0;

    display:block;

}

.service-area-section{

    background:var(--gray-100);

}

.service-area-grid{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:60px;

    align-items:center;

}

.service-area-card{

    padding:40px;

    border-radius:var(--radius-lg);

    background:white;

    box-shadow:var(--shadow);

}

.check-list{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-top:25px;

}

.check-list li{

    position:relative;

    padding-left:30px;

    color:var(--gray-700);

}

.check-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--primary);

    font-weight:800;

}

.text-center{

    text-align:center;

}

.footer-logo{

    width:min(240px,100%);

    margin-bottom:20px;

}

.btn-light{

    background:white;

    color:var(--primary-dark);

}

.btn-light:hover{

    background:var(--gray-100);

}

.btn-outline-light{

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

    color:white;

    background:transparent;

}

.btn-outline-light:hover{

    color:var(--primary-dark);

    background:white;

}

@media (max-width:900px){

    .service-area-grid{

        grid-template-columns:1fr;

    }

    .header-phone{

        display:none;

    }

}

@media (max-width:768px){

    .map-container,
    .map-container iframe{

        min-height:360px;

        height:360px;

    }

    .service-area-card{

        padding:28px;

    }

}
/*=========================================================
ABOUT PAGE
==========================================================*/

.about-hero{

    background:
        linear-gradient(
            90deg,
            rgba(4,31,54,.94),
            rgba(4,31,54,.62)
        ),
        url("../images/about-hero.jpg")
        center / cover no-repeat;

}

.about-intro-section{

    background:white;

}

.about-image-wrap{

    position:relative;

}

.about-image-wrap img{

    width:100%;

    min-height:560px;

    object-fit:cover;

}

.about-license-card{

    position:absolute;

    right:-25px;

    bottom:35px;

    width:min(300px,80%);

    padding:25px 30px;

    border-radius:var(--radius-lg);

    background:var(--primary-dark);

    color:white;

    box-shadow:var(--shadow-lg);

}

.about-license-card span{

    display:block;

    margin-bottom:6px;

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

    font-size:.85rem;

    letter-spacing:.05em;

    text-transform:uppercase;

}

.about-license-card strong{

    display:block;

    font-size:1.45rem;

}

.about-division{

    margin-top:-10px;

    color:var(--primary);

    font-weight:700;

}

.about-contact-links{

    display:grid;

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

    gap:15px;

    margin-top:30px;

}

.about-contact-link{

    padding:20px;

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

    border-radius:var(--radius);

    background:var(--gray-100);

    transition:var(--transition);

}

.about-contact-link:hover{

    border-color:var(--primary);

    background:white;

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.about-contact-link span{

    display:block;

    margin-bottom:5px;

    color:var(--gray-500);

    font-size:.85rem;

}

.about-contact-link strong{

    color:var(--primary-dark);

    overflow-wrap:anywhere;

}


/*=========================================================
ABOUT BENEFITS
==========================================================*/

.about-benefits-section{

    background:var(--gray-100);

}

.about-benefits-grid{

    display:grid;

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

    gap:25px;

    margin-top:45px;

}

.about-benefit-card{

    height:100%;

    padding:35px;

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

    border-radius:var(--radius-lg);

    background:white;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.about-benefit-card:hover{

    transform:translateY(-7px);

    border-color:rgba(11,95,165,.35);

    box-shadow:var(--shadow-lg);

}

.about-benefit-icon{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    border-radius:16px;

    background:rgba(11,95,165,.10);

    color:var(--primary);

    font-weight:800;

    font-size:1.15rem;

}

.about-benefit-card h3{

    margin-bottom:14px;

}

.about-benefit-card p{

    margin-bottom:0;

}


/*=========================================================
ABOUT PROCESS
==========================================================*/

.about-process-section{

    background:white;

}

.process-grid{

    display:grid;

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

    gap:22px;

    margin-top:45px;

}

.process-card{

    position:relative;

    padding:35px 28px;

    border-radius:var(--radius-lg);

    background:var(--primary-dark);

    color:white;

    overflow:hidden;

}

.process-card::after{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    right:-55px;

    bottom:-60px;

    border-radius:50%;

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

}

.process-number{

    display:block;

    margin-bottom:30px;

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

    font-size:2.2rem;

    font-weight:800;

}

.process-card h3{

    position:relative;

    z-index:1;

    color:white;

}

.process-card p{

    position:relative;

    z-index:1;

    margin-bottom:0;

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

}


/*=========================================================
COMPANY INFORMATION
==========================================================*/

.company-info-section{

    background:var(--gray-100);

}

.company-info-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.company-detail-list{

    margin-top:35px;

    border-top:1px solid var(--gray-300);

}

.company-detail{

    display:grid;

    grid-template-columns:150px 1fr;

    gap:25px;

    padding:18px 0;

    border-bottom:1px solid var(--gray-300);

}

.company-detail span{

    color:var(--gray-500);

    font-size:.9rem;

}

.company-detail strong{

    color:var(--gray-800);

}

.company-detail a{

    color:var(--primary);

}

.company-info-image img{

    width:100%;

    min-height:570px;

    object-fit:cover;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-lg);

}


/*=========================================================
MANUFACTURERS
==========================================================*/

.manufacturer-section{

    background:white;

}

.manufacturer-grid{

    display:grid;

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

    gap:35px;

    margin-top:50px;

}

.manufacturer-card{

    display:flex;

    flex-direction:column;

    height:100%;

    overflow:hidden;

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

    border-radius:var(--radius-lg);

    background:white;

    box-shadow:var(--shadow);

}

.manufacturer-logo-wrap{

    min-height:210px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:35px;

    border-bottom:1px solid var(--gray-200);

    background:var(--gray-100);

}

.manufacturer-logo{

    width:auto;

    max-width:320px;

    max-height:130px;

    object-fit:contain;

}

.manufacturer-logo-text{

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

}

.manufacturer-name-logo{

    display:flex;

    flex-direction:column;

    align-items:center;

    color:white;

    line-height:1;

    text-align:center;

}

.manufacturer-name-logo span{

    font-size:1.1rem;

    letter-spacing:.35em;

}

.manufacturer-name-logo strong{

    margin:7px 0;

    font-size:3.3rem;

    letter-spacing:.08em;

}

.manufacturer-name-logo small{

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

    font-size:.78rem;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.manufacturer-card-content{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:38px;

}

.manufacturer-label{

    display:inline-block;

    align-self:flex-start;

    margin-bottom:15px;

    padding:7px 12px;

    border-radius:999px;

    background:rgba(11,95,165,.10);

    color:var(--primary);

    font-size:.75rem;

    font-weight:800;

    letter-spacing:.05em;

    text-transform:uppercase;

}

.manufacturer-card-content h3{

    margin-bottom:20px;

}

.manufacturer-features{

    display:grid;

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

    gap:12px 18px;

    margin:10px 0 30px;

}

.manufacturer-features li{

    position:relative;

    padding-left:24px;

    color:var(--gray-700);

    font-size:.94rem;

}

.manufacturer-features li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--primary);

    font-weight:800;

}

.manufacturer-card-content .btn{

    align-self:flex-start;

    margin-top:auto;

}


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

@media (max-width:1100px){

    .about-benefits-grid{

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

    }

    .process-grid{

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

    }

    .company-info-grid{

        grid-template-columns:1fr;

    }

    .company-info-image{

        order:-1;

    }

    .company-info-image img{

        min-height:430px;

    }

}

@media (max-width:900px){

    .manufacturer-grid{

        grid-template-columns:1fr;

    }

    .about-license-card{

        right:20px;

    }

}

@media (max-width:768px){

    .about-image-wrap img{

        min-height:400px;

    }

    .about-license-card{

        position:relative;

        right:auto;

        bottom:auto;

        width:calc(100% - 30px);

        margin:-45px auto 0;

    }

    .about-contact-links{

        grid-template-columns:1fr;

    }

    .about-benefits-grid,
    .process-grid{

        grid-template-columns:1fr;

    }

    .company-detail{

        grid-template-columns:1fr;

        gap:5px;

    }

    .manufacturer-card-content{

        padding:28px;

    }

    .manufacturer-features{

        grid-template-columns:1fr;

    }

}

@media (max-width:480px){

    .manufacturer-logo-wrap{

        min-height:170px;

        padding:25px;

    }

    .manufacturer-logo{

        max-width:240px;

    }

    .manufacturer-name-logo strong{

        font-size:2.5rem;

    }

}
/*=========================================================
PREMIUM GALLERY PAGE
==========================================================*/

.gallery-hero{

    background:
        linear-gradient(
            90deg,
            rgba(4,31,54,.95),
            rgba(4,31,54,.62)
        ),
        url("../images/about-hero.jpg")
        center / cover no-repeat;

}

.gallery-intro-section{

    background:white;

}

.gallery-intro-grid{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:65px;

    align-items:center;

}

.gallery-intro-card{

    display:grid;

    gap:0;

    overflow:hidden;

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

    border-radius:var(--radius-lg);

    background:white;

    box-shadow:var(--shadow);

}

.gallery-intro-card > div{

    display:flex;

    flex-direction:column;

    gap:6px;

    padding:26px 30px;

    border-bottom:1px solid var(--gray-200);

}

.gallery-intro-card > div:last-child{

    border-bottom:0;

}

.gallery-intro-card strong{

    color:var(--primary-dark);

    font-size:1.08rem;

}

.gallery-intro-card span{

    color:var(--gray-500);

}


/*=========================================================
GALLERY PROJECT SECTION
==========================================================*/

.gallery-projects-section{

    background:var(--gray-100);

}

.gallery-filter-panel{

    margin-top:45px;

    margin-bottom:35px;

    padding:32px;

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

    border-radius:var(--radius-lg);

    background:white;

    box-shadow:var(--shadow);

}

.gallery-filter-heading{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:25px;

    margin-bottom:25px;

}

.gallery-filter-heading h3{

    margin:5px 0 0;

}

.gallery-filter-label{

    color:var(--primary);

    font-size:.76rem;

    font-weight:800;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.gallery-reset-button{

    padding:10px 17px;

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

    border-radius:999px;

    background:white;

    color:var(--primary-dark);

    font-weight:700;

    cursor:pointer;

    transition:var(--transition);

}

.gallery-reset-button:hover{

    border-color:var(--primary);

    color:var(--primary);

    box-shadow:var(--shadow-sm);

}

.gallery-filter-panel .filter-bar{

    display:grid;

    grid-template-columns:
        repeat(5,minmax(130px,1fr))
        minmax(220px,1.6fr);

    gap:16px;

    margin:0;

    padding:0;

    border-radius:0;

    box-shadow:none;

}

.filter-group{

    min-width:0;

}

.filter-group label{

    margin-bottom:8px;

    color:var(--gray-600);

    font-size:.8rem;

    font-weight:800;

    letter-spacing:.03em;

}

.filter-group select,
.filter-group input{

    min-height:50px;

    border-color:var(--gray-300);

    background:var(--gray-100);

}

.gallery-search-wrap{

    position:relative;

}

.gallery-search-icon{

    position:absolute;

    left:16px;

    top:50%;

    transform:translateY(-50%);

    color:var(--gray-500);

    font-size:1.1rem;

    pointer-events:none;

}

.gallery-search-wrap input{

    padding-left:44px;

}


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

.results-bar{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:25px;

    margin:0 0 28px;

}

.results-label{

    display:block;

    margin-bottom:3px;

    color:var(--gray-500);

    font-size:.75rem;

    font-weight:800;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.results-count{

    margin:0;

    color:var(--primary-dark);

    font-size:1.1rem;

    font-weight:700;

}

.gallery-estimate-link{

    color:var(--gray-600);

    text-align:right;

}

.gallery-estimate-link strong{

    display:block;

    color:var(--primary);

}

.gallery-estimate-link:hover strong{

    text-decoration:underline;

}


/*=========================================================
PREMIUM GALLERY GRID
==========================================================*/

.premium-gallery-grid{

    display:grid;

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

    gap:28px;

}

.premium-gallery-grid .gallery-card{

    overflow:hidden;

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

    border-radius:var(--radius-lg);

    background:white;

    box-shadow:var(--shadow-sm);

    cursor:pointer;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.premium-gallery-grid .gallery-card:hover{

    transform:translateY(-8px);

    border-color:rgba(11,95,165,.35);

    box-shadow:var(--shadow-lg);

}

.premium-gallery-grid .gallery-image{

    position:relative;

    aspect-ratio:4 / 3;

    overflow:hidden;

    background:var(--gray-200);

}

.premium-gallery-grid .gallery-image::after{

    content:"View Project";

    position:absolute;

    left:50%;

    bottom:22px;

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

    padding:10px 18px;

    border-radius:999px;

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

    color:var(--primary-dark);

    font-size:.78rem;

    font-weight:800;

    letter-spacing:.04em;

    opacity:0;

    transition:var(--transition);

}

.premium-gallery-grid .gallery-card:hover .gallery-image::after{

    opacity:1;

    transform:translate(-50%,0);

}

.premium-gallery-grid .gallery-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

}

.premium-gallery-grid .gallery-card:hover .gallery-image img{

    transform:scale(1.06);

}

.premium-gallery-grid .gallery-badge{

    position:absolute;

    top:18px;

    left:18px;

    z-index:2;

    padding:8px 13px;

    border-radius:999px;

    background:var(--primary);

    color:white;

    font-size:.72rem;

    font-weight:800;

    letter-spacing:.05em;

    text-transform:uppercase;

}

.premium-gallery-grid .photo-count{

    position:absolute;

    right:18px;

    bottom:18px;

    z-index:2;

    padding:8px 12px;

    border-radius:999px;

    background:rgba(4,31,54,.82);

    color:white;

    font-size:.76rem;

    font-weight:700;

    backdrop-filter:blur(8px);

}

.premium-gallery-grid .gallery-info{

    padding:25px;

}

.premium-gallery-grid .gallery-info h3{

    margin-bottom:8px;

    color:var(--primary-dark);

}

.premium-gallery-grid .gallery-location{

    margin-bottom:18px;

    color:var(--gray-500);

    font-size:.92rem;

}

.premium-gallery-grid .project-tags{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

}

.premium-gallery-grid .project-tag{

    padding:7px 11px;

    border-radius:999px;

    background:var(--gray-100);

    color:var(--gray-700);

    font-size:.74rem;

    font-weight:700;

}


/*=========================================================
NO RESULTS
==========================================================*/

.gallery-no-results{

    max-width:650px;

    margin:45px auto 0;

    padding:55px 35px;

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

    border-radius:var(--radius-lg);

    background:white;

    text-align:center;

    box-shadow:var(--shadow);

}

.gallery-no-results-icon{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 22px;

    border-radius:50%;

    background:rgba(11,95,165,.10);

    color:var(--primary);

    font-size:2rem;

}

.gallery-no-results p{

    margin-bottom:25px;

}


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

.gallery-benefits-section{

    background:white;

}

.gallery-benefits-grid{

    display:grid;

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

    gap:22px;

    margin-top:45px;

}

.gallery-benefit-card{

    padding:32px;

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

    border-radius:var(--radius-lg);

    background:white;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.gallery-benefit-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow);

}

.gallery-benefit-number{

    display:block;

    margin-bottom:24px;

    color:rgba(11,95,165,.32);

    font-size:2rem;

    font-weight:900;

}

.gallery-benefit-card h3{

    margin-bottom:12px;

}

.gallery-benefit-card p{

    margin:0;

}


/*=========================================================
PREMIUM LIGHTBOX
==========================================================*/

.gallery-lightbox{

    position:fixed;

    inset:0;

    z-index:99999;

    display:none;

    align-items:center;

    justify-content:center;

    padding:30px;

}

.gallery-lightbox.show{

    display:flex;

}

.lightbox-backdrop{

    position:absolute;

    inset:0;

    background:rgba(2,15,27,.92);

    backdrop-filter:blur(7px);

}

.gallery-lightbox .lightbox-container{

    position:relative;

    z-index:1;

    width:min(1280px,96vw);

    max-height:92vh;

    overflow:hidden;

    border-radius:22px;

    background:white;

    box-shadow:0 30px 80px rgba(0,0,0,.42);

}

.gallery-lightbox .lightbox-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:20px 26px;

    background:var(--primary-dark);

    color:white;

}

.lightbox-eyebrow{

    display:block;

    margin-bottom:3px;

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

    font-size:.7rem;

    font-weight:800;

    letter-spacing:.1em;

    text-transform:uppercase;

}

.gallery-lightbox .lightbox-header h2{

    margin:0;

    color:white;

    font-size:1.45rem;

}

.gallery-lightbox .lightbox-close{

    width:44px;

    height:44px;

    flex:0 0 44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid rgba(255,255,255,.22);

    border-radius:50%;

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

    color:white;

    font-size:1.8rem;

    cursor:pointer;

}

.gallery-lightbox .lightbox-body{

    display:grid;

    grid-template-columns:minmax(0,2fr) minmax(320px,.8fr);

    max-height:calc(92vh - 85px);

}

.lightbox-image-area{

    position:relative;

    min-height:620px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:#08121b;

}

.gallery-lightbox .lightbox-image{

    width:100%;

    height:100%;

    min-height:620px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.gallery-lightbox .lightbox-image img{

    width:100%;

    height:100%;

    max-height:calc(92vh - 85px);

    object-fit:contain;

}

.lightbox-arrow{

    position:absolute;

    top:50%;

    width:54px;

    height:54px;

    display:flex;

    align-items:center;

    justify-content:center;

    transform:translateY(-50%);

    border:0;

    border-radius:50%;

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

    color:var(--primary-dark);

    font-size:2rem;

    cursor:pointer;

    box-shadow:var(--shadow);

}

.lightbox-arrow-prev{

    left:20px;

}

.lightbox-arrow-next{

    right:20px;

}

.lightbox-image-count{

    position:absolute;

    left:50%;

    bottom:20px;

    transform:translateX(-50%);

    padding:8px 13px;

    border-radius:999px;

    background:rgba(4,31,54,.78);

    color:white;

    font-size:.78rem;

    font-weight:700;

}

.gallery-lightbox .lightbox-sidebar{

    padding:32px;

    overflow:auto;

}

.gallery-lightbox .lightbox-sidebar > p{

    color:var(--gray-600);

}

.lightbox-details{

    margin:28px 0;

    border-top:1px solid var(--gray-200);

}

.gallery-lightbox .detail{

    display:grid;

    grid-template-columns:115px 1fr;

    gap:18px;

    margin:0;

    padding:16px 0;

    border-bottom:1px solid var(--gray-200);

}

.gallery-lightbox .detail strong{

    margin:0;

    color:var(--gray-500);

    font-size:.82rem;

}

.gallery-lightbox .detail span{

    color:var(--primary-dark);

    font-weight:700;

}


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

@media (max-width:1180px){

    .gallery-filter-panel .filter-bar{

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

    }

    .premium-gallery-grid{

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

    }

    .gallery-benefits-grid{

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

    }

}

@media (max-width:900px){

    .gallery-intro-grid{

        grid-template-columns:1fr;

    }

    .gallery-lightbox .lightbox-body{

        grid-template-columns:1fr;

        overflow:auto;

    }

    .lightbox-image-area,
    .gallery-lightbox .lightbox-image{

        min-height:420px;

    }

    .gallery-lightbox .lightbox-container{

        overflow:auto;

    }

}

@media (max-width:768px){

    .gallery-filter-panel{

        padding:24px;

    }

    .gallery-filter-heading{

        flex-direction:column;

    }

    .gallery-filter-panel .filter-bar{

        grid-template-columns:1fr;

    }

    .results-bar{

        flex-direction:column;

        align-items:flex-start;

    }

    .gallery-estimate-link{

        text-align:left;

    }

    .premium-gallery-grid{

        grid-template-columns:1fr;

    }

    .gallery-benefits-grid{

        grid-template-columns:1fr;

    }

    .gallery-lightbox{

        padding:12px;

    }

    .gallery-lightbox .lightbox-container{

        width:100%;

        max-height:96vh;

        border-radius:15px;

    }

    .gallery-lightbox .lightbox-body{

        max-height:none;

    }

    .lightbox-image-area,
    .gallery-lightbox .lightbox-image{

        min-height:330px;

    }

    .gallery-lightbox .lightbox-sidebar{

        padding:24px;

    }

    .gallery-lightbox .detail{

        grid-template-columns:1fr;

        gap:4px;

    }

}

@media (max-width:480px){

    .gallery-filter-panel{

        padding:20px;

    }

    .premium-gallery-grid .gallery-info{

        padding:21px;

    }

    .lightbox-arrow{

        width:44px;

        height:44px;

    }

    .lightbox-arrow-prev{

        left:10px;

    }

    .lightbox-arrow-next{

        right:10px;

    }

}
/*=========================================================
PREMIUM HOMEPAGE
==========================================================*/

.home-hero{

    position:relative;

    min-height:780px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
        url("../images/about-hero.jpg")
        center / cover no-repeat;

}

.home-hero-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(4,31,54,.96) 0%,
            rgba(4,31,54,.84) 42%,
            rgba(4,31,54,.35) 78%,
            rgba(4,31,54,.18) 100%
        );

}

.home-hero-container{

    position:relative;

    z-index:1;

    width:100%;

    max-width:1400px;

    margin:0 auto;

    padding-left:60px;

    padding-right:60px;

}

.home-hero-content{

    max-width:760px;

    padding:120px 0;

    color:white;

}

.home-hero-content .eyebrow{

    color:#8bd4ff;

}

.home-hero-content h1{

    max-width:780px;

    margin-bottom:24px;

    color:white;

    font-size:clamp(3rem,5.7vw,5.7rem);

    line-height:1.02;

    letter-spacing:-.045em;

}

.home-hero-content > p{

    max-width:690px;

    margin-bottom:32px;

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

    font-size:1.18rem;

    line-height:1.75;

}

.home-hero-trust{

    display:grid;

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

    gap:0;

    max-width:760px;

    margin-top:48px;

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

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

}

.home-hero-trust > div{

    padding:20px 24px;

    border-right:1px solid rgba(255,255,255,.22);

}

.home-hero-trust > div:first-child{

    padding-left:0;

}

.home-hero-trust > div:last-child{

    border-right:0;

}

.home-hero-trust strong{

    display:block;

    margin-bottom:5px;

    color:white;

    font-size:.95rem;

}

.home-hero-trust span{

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

    font-size:.82rem;

}


/*=========================================================
HOMEPAGE HIGHLIGHTS
==========================================================*/

.home-highlights{

    position:relative;

    z-index:5;

    background:white;

    box-shadow:0 15px 45px rgba(4,31,54,.08);

}

.home-highlights-grid{

    display:grid;

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

}

.home-highlight{

    display:flex;

    align-items:flex-start;

    gap:17px;

    padding:32px 26px;

    border-right:1px solid var(--gray-200);

}

.home-highlight:last-child{

    border-right:0;

}

.home-highlight-icon{

    width:46px;

    height:46px;

    flex:0 0 46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:rgba(11,95,165,.10);

    color:var(--primary);

    font-size:.9rem;

    font-weight:900;

}

.home-highlight h2{

    margin:0 0 5px;

    color:var(--primary-dark);

    font-size:1rem;

}

.home-highlight p{

    margin:0;

    color:var(--gray-500);

    font-size:.84rem;

    line-height:1.55;

}


/*=========================================================
HOMEPAGE ABOUT
==========================================================*/

.home-about-section{

    background:white;

}

.home-about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:75px;

    align-items:center;

}

.home-about-image{

    position:relative;

}

.home-about-image img{

    width:100%;

    min-height:600px;

    object-fit:cover;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-lg);

}

.home-about-license{

    position:absolute;

    right:-25px;

    bottom:35px;

    width:min(300px,82%);

    padding:25px 28px;

    border-radius:var(--radius-lg);

    background:var(--primary-dark);

    color:white;

    box-shadow:var(--shadow-lg);

}

.home-about-license span{

    display:block;

    margin-bottom:6px;

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

    font-size:.75rem;

    letter-spacing:.07em;

    text-transform:uppercase;

}

.home-about-license strong{

    font-size:1.4rem;

}

.home-division{

    margin-top:-7px;

    color:var(--primary);

    font-weight:700;

}

.home-check-list{

    display:flex;

    flex-direction:column;

    gap:13px;

    margin:28px 0 32px;

}

.home-check-list li{

    position:relative;

    padding-left:29px;

    color:var(--gray-700);

}

.home-check-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--primary);

    font-weight:900;

}


/*=========================================================
HOMEPAGE PRODUCTS
==========================================================*/

.home-products-section{

    background:var(--gray-100);

}

.home-products-grid{

    display:grid;

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

    gap:28px;

    margin-top:48px;

}

.home-product-card{

    height:100%;

    overflow:hidden;

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

    border-radius:var(--radius-lg);

    background:white;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.home-product-card:hover{

    transform:translateY(-8px);

    border-color:rgba(11,95,165,.32);

    box-shadow:var(--shadow-lg);

}

.home-product-image{

    aspect-ratio:4 / 3;

    overflow:hidden;

    background:var(--gray-200);

}

.home-product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .65s ease;

}

.home-product-card:hover .home-product-image img{

    transform:scale(1.06);

}

.home-product-content{

    padding:31px;

}

.home-product-label{

    display:inline-block;

    margin-bottom:13px;

    color:var(--primary);

    font-size:.72rem;

    font-weight:900;

    letter-spacing:.09em;

    text-transform:uppercase;

}

.home-product-content h3{

    margin-bottom:15px;

}

.home-product-content p{

    margin-bottom:20px;

}

.home-product-content ul{

    display:flex;

    flex-direction:column;

    gap:9px;

    margin-bottom:25px;

}

.home-product-content li{

    position:relative;

    padding-left:21px;

    color:var(--gray-600);

    font-size:.9rem;

}

.home-product-content li::before{

    content:"";

    position:absolute;

    left:0;

    top:.58em;

    width:7px;

    height:7px;

    border-radius:50%;

    background:var(--primary);

}

.home-product-content > a{

    display:inline-flex;

    align-items:center;

    gap:9px;

    color:var(--primary);

    font-weight:800;

}

.home-product-content > a span{

    transition:transform .25s ease;

}

.home-product-content > a:hover span{

    transform:translateX(5px);

}


/*=========================================================
HOMEPAGE BENEFITS
==========================================================*/

.home-benefits-section{

    background:white;

}

.home-benefits-heading{

    display:grid;

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

    gap:65px;

    align-items:end;

    margin-bottom:45px;

}

.home-benefits-heading p{

    margin-bottom:5px;

}

.home-benefits-grid{

    display:grid;

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

    gap:22px;

}

.home-benefit-card{

    padding:34px;

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

    border-radius:var(--radius-lg);

    background:white;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.home-benefit-card:hover{

    transform:translateY(-6px);

    border-color:rgba(11,95,165,.35);

    box-shadow:var(--shadow);

}

.home-benefit-number{

    display:block;

    margin-bottom:25px;

    color:rgba(11,95,165,.30);

    font-size:2rem;

    font-weight:900;

}

.home-benefit-card h3{

    margin-bottom:12px;

}

.home-benefit-card p{

    margin:0;

}


/*=========================================================
HOMEPAGE PROCESS
==========================================================*/

.home-process-section{

    background:var(--primary-dark);

}

.home-process-section .section-heading .eyebrow{

    color:#8bd4ff;

}

.home-process-section .section-heading h2{

    color:white;

}

.home-process-section .section-heading p{

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

}

.home-process-grid{

    display:grid;

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

    gap:1px;

    margin-top:48px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.13);

    border-radius:var(--radius-lg);

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

}

.home-process-card{

    position:relative;

    min-height:320px;

    padding:36px 30px;

    overflow:hidden;

    background:var(--primary-dark);

}

.home-process-card::after{

    content:"";

    position:absolute;

    right:-65px;

    bottom:-75px;

    width:170px;

    height:170px;

    border-radius:50%;

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

}

.home-process-card > span{

    display:block;

    margin-bottom:62px;

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

    font-size:2.4rem;

    font-weight:900;

}

.home-process-card h3{

    position:relative;

    z-index:1;

    color:white;

}

.home-process-card p{

    position:relative;

    z-index:1;

    margin:0;

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

}


/*=========================================================
FEATURED PROJECTS
==========================================================*/

.home-projects-section{

    background:var(--gray-100);

}

.home-projects-heading{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:40px;

    margin-bottom:42px;

}

.home-projects-heading p{

    max-width:650px;

    margin-bottom:0;

}

.home-featured-projects{

    display:grid;

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

    gap:28px;

}

.home-featured-projects .gallery-card{

    overflow:hidden;

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

    border-radius:var(--radius-lg);

    background:white;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.home-featured-projects .gallery-card:hover{

    transform:translateY(-7px);

    box-shadow:var(--shadow-lg);

}

.home-featured-projects .gallery-image{

    position:relative;

    aspect-ratio:4 / 3;

    overflow:hidden;

}

.home-featured-projects .gallery-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

}

.home-featured-projects .gallery-card:hover .gallery-image img{

    transform:scale(1.06);

}

.home-featured-projects .gallery-info{

    padding:25px;

}

.home-featured-projects .gallery-info h3{

    margin-bottom:8px;

}

.home-featured-projects .gallery-location{

    color:var(--gray-500);

}

.home-project-placeholder{

    overflow:hidden;

    border-radius:var(--radius-lg);

    background:white;

    box-shadow:var(--shadow-sm);

}

.home-project-placeholder-image{

    min-height:280px;

    background:
        linear-gradient(
            110deg,
            var(--gray-200) 25%,
            var(--gray-100) 45%,
            var(--gray-200) 65%
        );

    background-size:200% 100%;

    animation:homeLoading 1.4s infinite linear;

}

.home-project-placeholder > div:last-child{

    padding:25px;

}

.home-project-placeholder span{

    color:var(--primary);

    font-size:.75rem;

    font-weight:800;

    text-transform:uppercase;

}

@keyframes homeLoading{

    from{

        background-position:200% 0;

    }

    to{

        background-position:-200% 0;

    }

}


/*=========================================================
HOMEPAGE SERVICE AREA
==========================================================*/

.home-service-section{

    background:white;

}

.home-service-grid{

    display:grid;

    grid-template-columns:1.08fr .92fr;

    gap:70px;

    align-items:center;

}

.home-service-actions{

    display:flex;

    align-items:center;

    gap:28px;

    margin-top:32px;

}

.home-service-phone{

    display:flex;

    flex-direction:column;

}

.home-service-phone span{

    color:var(--gray-500);

    font-size:.75rem;

    text-transform:uppercase;

    letter-spacing:.07em;

}

.home-service-phone strong{

    color:var(--primary-dark);

    font-size:1.12rem;

}

.home-service-card{

    padding:42px;

    border-radius:var(--radius-lg);

    background:var(--primary-dark);

    color:white;

    box-shadow:var(--shadow-lg);

}

.home-service-card-label{

    display:block;

    margin-bottom:12px;

    color:#8bd4ff;

    font-size:.75rem;

    font-weight:900;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.home-service-card h3{

    color:white;

}

.home-service-card > p{

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

}

.home-service-detail{

    display:grid;

    grid-template-columns:110px 1fr;

    gap:20px;

    padding:17px 0;

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

}

.home-service-detail span{

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

    font-size:.82rem;

}

.home-service-detail strong{

    color:white;

}

.home-service-detail a{

    color:white;

}


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

@media (max-width:1100px){

    .home-highlights-grid{

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

    }

    .home-highlight:nth-child(2){

        border-right:0;

    }

    .home-highlight:nth-child(-n+2){

        border-bottom:1px solid var(--gray-200);

    }

    .home-products-grid,
    .home-benefits-grid,
    .home-featured-projects{

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

    }

    .home-process-grid{

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

    }

}

@media (max-width:900px){

    .home-hero{

        min-height:700px;

    }

    .home-hero-overlay{

        background:rgba(4,31,54,.84);

    }

    .home-about-grid,
    .home-service-grid{

        grid-template-columns:1fr;

    }

    .home-about-license{

        right:20px;

    }

    .home-benefits-heading{

        grid-template-columns:1fr;

        gap:12px;

    }

    .home-projects-heading{

        align-items:flex-start;

        flex-direction:column;

    }

}

@media (max-width:768px){

    .home-hero{

        min-height:auto;

    }

    .home-hero-content{

        padding:85px 0;

    }

    .home-hero-content h1{

        font-size:clamp(2.65rem,12vw,4rem);

    }

    .home-hero-trust{

        grid-template-columns:1fr;

    }

    .home-hero-trust > div{

        padding:17px 0;

        border-right:0;

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

    }

    .home-hero-trust > div:last-child{

        border-bottom:0;

    }

    .home-highlights-grid{

        grid-template-columns:1fr;

    }

    .home-highlight{

        border-right:0;

        border-bottom:1px solid var(--gray-200);

    }

    .home-highlight:last-child{

        border-bottom:0;

    }

    .home-about-image img{

        min-height:420px;

    }

    .home-about-license{

        position:relative;

        right:auto;

        bottom:auto;

        width:calc(100% - 30px);

        margin:-45px auto 0;

    }

    .home-products-grid,
    .home-benefits-grid,
    .home-process-grid,
    .home-featured-projects{

        grid-template-columns:1fr;

    }

    .home-process-card{

        min-height:auto;

    }

    .home-process-card > span{

        margin-bottom:35px;

    }

    .home-service-actions{

        align-items:flex-start;

        flex-direction:column;

    }

}

@media (max-width:480px){

    .home-product-content,
    .home-benefit-card,
    .home-service-card{

        padding:27px;

    }

    .home-service-detail{

        grid-template-columns:1fr;

        gap:5px;

    }

}
@media (max-width:768px){

    .home-hero-container{

        padding-left:25px;

        padding-right:25px;

    }

}
.form-honeypot{

    position:absolute;

    left:-9999px;

    width:1px;

    height:1px;

    overflow:hidden;

}
.form-status{

    display:none;

    margin-bottom:18px;

    padding:14px 16px;

    border-radius:8px;

    font-weight:700;

    line-height:1.5;

}

.form-status.show{

    display:block;

}

.form-status.success{

    border:1px solid #9ad7b0;

    background:#edf9f1;

    color:#176c35;

}

.form-status.error{

    border:1px solid #efb0b0;

    background:#fff1f1;

    color:#9f2323;

}

#estimateSubmit:disabled{

    cursor:not-allowed;

    opacity:.65;

}