/* ===========================
   HEADER
=========================== */

header{
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    text-decoration:none;
    font-size:32px;
    font-weight:700;
    color:#0A5DAA;
}

.logo span{
    color:#F59E0B;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.nav-links a:hover{
    color:#0A5DAA;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#F59E0B;
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.active{
    color:#0A5DAA !important;
}

.active::after{
    width:100% !important;
}

.menu-icon{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#0A5DAA;
}

/* Responsive */

@media(max-width:768px){

.nav-links{
    display:none;
}

.menu-icon{
    display:block;
}

}
/*=========================
ABOUT HERO
=========================*/

.about-hero{
    background:linear-gradient(rgba(10,93,170,.85),rgba(10,93,170,.85)),
    url("../images/about-banner.jpg") center/cover;
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.about-hero h1{
    font-size:50px;
    margin-bottom:20px;
}

.about-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

/*=========================
ABOUT SECTION
=========================*/

.about-section{
    padding:80px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.about-content h2{
    color:#0A5DAA;
    margin-bottom:20px;
    font-size:36px;
}

.about-content p{
    line-height:1.8;
    margin-bottom:20px;
}

/*=========================
MISSION
=========================*/

.mission-section{
    padding:70px 0;
    background:#f8f8f8;
}

.mission-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.mission-card{
    background:#fff;
    padding:40px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.mission-card:hover{
    transform:translateY(-8px);
}

.mission-card i{
    font-size:45px;
    color:#F59E0B;
    margin-bottom:20px;
}

.mission-card h3{
    color:#0A5DAA;
    margin-bottom:15px;
}

/*=========================
WHY US
=========================*/

.why-section{
    padding:80px 0;
}

.why-section h2{
    text-align:center;
    margin-bottom:40px;
    color:#0A5DAA;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.why-box{
    background:#fff;
    text-align:center;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-8px);
}

.why-box i{
    color:#0A5DAA;
    font-size:30px;
    margin-bottom:15px;
}

/*=========================
CTA
=========================*/

.about-cta{
    background:#0A5DAA;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.about-cta h2{
    font-size:38px;
    margin-bottom:20px;
}

.about-cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
    line-height:1.8;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:768px){

.about-grid,
.mission-grid,
.why-grid{
    grid-template-columns:1fr;
}

.about-hero h1{
    font-size:38px;
}

}
/*=========================
SERVICES PAGE
=========================*/

.services-hero{

    background:linear-gradient(rgba(10,93,170,.88),rgba(10,93,170,.88)),
    url("../images/services-banner.jpg") center/cover;

    color:#fff;

    text-align:center;

    padding:100px 20px;

}

.services-hero h1{

    font-size:50px;

    margin-bottom:20px;

}

.services-hero p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    font-size:18px;

}

.services-page{

    padding:80px 0;

}

.service-row{

    display:flex;

    align-items:center;

    gap:60px;

    margin-bottom:80px;

}

.reverse{

    flex-direction:row-reverse;

}

.service-image{

    flex:1;

}

.service-image img{

    width:100%;

    border-radius:12px;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.service-content{

    flex:1;

}

.service-content h2{

    color:#0A5DAA;

    font-size:38px;

    margin-bottom:20px;

}

.service-content p{

    line-height:1.9;

    margin-bottom:20px;

    color:#555;

}

.service-content ul{

    list-style:none;

    padding:0;

}

.service-content li{

    margin-bottom:15px;

    font-size:17px;

}

.service-content i{

    color:#F59E0B;

    margin-right:10px;

}

@media(max-width:768px){

.service-row{

flex-direction:column;

}

.reverse{

flex-direction:column;

}

.services-hero h1{

font-size:38px;

}

}
/*=========================
CONTACT PAGE
=========================*/

.contact-hero{

background:linear-gradient(rgba(10,93,170,.88),rgba(10,93,170,.88)),
url("../images/contact-banner.jpg") center/cover;

padding:100px 20px;

color:#fff;

text-align:center;

}

.contact-hero h1{

font-size:50px;

margin-bottom:20px;

}

.contact-hero p{

max-width:700px;

margin:auto;

font-size:18px;

line-height:1.8;

}

.contact-page{

padding:80px 0;

}

.contact-grid{

display:grid;

grid-template-columns:2fr 1fr;

gap:40px;

}

.contact-info{

background:#fff;

padding:40px;

border-radius:12px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.contact-info h2{

color:#0A5DAA;

margin-bottom:20px;

}

.info-box{

display:flex;

gap:20px;

margin-top:35px;

}

.info-box i{

font-size:28px;

color:#F59E0B;

margin-top:5px;

}

.info-box h3{

margin-bottom:10px;

color:#0A5DAA;

}

.info-box p{

line-height:1.8;

}

.contact-card{

background:#0A5DAA;

color:#fff;

padding:40px;

border-radius:12px;

box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.contact-card h2{

margin-bottom:25px;

}

.contact-card ul{

list-style:none;

padding:0;

margin-bottom:35px;

}

.contact-card li{

margin-bottom:18px;

}

.contact-card i{

color:#FFD54F;

margin-right:10px;

}

@media(max-width:768px){

.contact-grid{

grid-template-columns:1fr;

}

.contact-hero h1{

font-size:38px;

}

}
/*=========================
WHATSAPP FLOAT
=========================*/

.whatsapp-float{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

text-decoration:none;

color:#fff;

font-size:34px;

box-shadow:0 5px 20px rgba(0,0,0,.3);

z-index:9999;

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.1);

background:#20ba5a;

}
.social-icons{

display:flex;

gap:15px;

align-items:center;

}

.social-icons a{

width:40px;

height:40px;

border-radius:50%;

background:#0A5DAA;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

text-decoration:none;

transition:.3s;

}

.social-icons a:hover{

background:#F59E0B;

transform:translateY(-3px);

}
.footer-social{

display:flex;

justify-content:center;

gap:15px;

margin-bottom:20px;

}

.footer-social a{

width:45px;

height:45px;

border-radius:50%;

background:#F59E0B;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:20px;

text-decoration:none;

transition:.3s;

}

.footer-social a:hover{

background:#0A5DAA;

}

.map-section{

padding:80px 0;

}

.map-section h2{

text-align:center;

margin-bottom:30px;

color:#0A5DAA;

}

.map-section iframe{

border-radius:12px;

box-shadow:0 5px 15px rgba(0,0,0,.1);

}
/*=========================
INSTAGRAM FEED
=========================*/

.instagram-feed{

    padding:80px 0;

    background:#f8fafc;

}

.section-heading{

    text-align:center;

    margin-bottom:50px;

}

.section-heading h2{

    color:#0A5DAA;

    font-size:40px;

    margin-bottom:15px;

}

.section-heading p{

    max-width:650px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

.instagram-widget{

    background:#fff;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    padding:60px;

}

.instagram-placeholder{

    text-align:center;

}

.instagram-placeholder i{

    font-size:70px;

    color:#E1306C;

    margin-bottom:20px;

}

.instagram-placeholder h3{

    color:#0A5DAA;

    margin-bottom:15px;

}

.instagram-placeholder p{

    margin-bottom:30px;

    color:#666;

}

@media(max-width:768px){

.instagram-widget{

padding:35px 20px;

}

.section-heading h2{

font-size:32px;

}

}
/* ==============================================
   GLOBAL SHARED (index + all pages)
============================================== */

.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    line-height:1.6;
}

/* Section Header */
.section-head{
    text-align:center;
    margin-bottom:60px;
}

.section-tag{
    display:inline-block;
    background:linear-gradient(135deg,#0A5DAA,#1a7fd4);
    color:#fff;
    font-size:13px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    padding:6px 18px;
    border-radius:30px;
    margin-bottom:16px;
}

.section-title{
    font-size:38px;
    font-weight:700;
    color:#0A5DAA;
    margin-bottom:12px;
    line-height:1.2;
}

.section-sub{
    color:#666;
    font-size:17px;
    max-width:600px;
    margin:0 auto;
}

/* Shared Buttons */
.btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    font-size:15px;
    text-decoration:none;
    transition:all .3s;
    border:none;
    cursor:pointer;
}

.btn-primary{
    background:linear-gradient(135deg,#0A5DAA,#1a7fd4);
    color:#fff;
    box-shadow:0 4px 15px rgba(10,93,170,.35);
}

.btn-primary:hover{
    background:linear-gradient(135deg,#084e93,#0A5DAA);
    transform:translateY(-2px);
    box-shadow:0 8px 25px rgba(10,93,170,.45);
}

.btn-white{
    background:#fff;
    color:#0A5DAA;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

.btn-white:hover{
    background:#f0f7ff;
    transform:translateY(-2px);
}

.btn-outline-white{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,.7);
}

.btn-outline-white:hover{
    background:rgba(255,255,255,.15);
    border-color:#fff;
}

/* ==============================================
   HERO SECTION
============================================== */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#03254E 0%,#0A5DAA 55%,#1a7fd4 100%),
               url("../images/hero-bg.jpg") center/cover no-repeat;
    background-blend-mode:multiply;
    overflow:hidden;
    padding:120px 0 80px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(ellipse at 70% 50%,rgba(245,158,11,.12) 0%,transparent 60%);
    pointer-events:none;
}

.hero-shapes{pointer-events:none;}

.shape{
    position:absolute;
    border-radius:50%;
    opacity:.06;
    background:#fff;
}

.shape-1{
    width:500px;height:500px;
    top:-200px;right:-150px;
    animation:floatShape 8s ease-in-out infinite;
}

.shape-2{
    width:300px;height:300px;
    bottom:-100px;left:-80px;
    animation:floatShape 10s ease-in-out infinite reverse;
}

.shape-3{
    width:200px;height:200px;
    top:40%;right:25%;
    animation:floatShape 6s ease-in-out infinite;
}

@keyframes floatShape{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-30px);}
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-badge-top{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(245,158,11,.18);
    border:1px solid rgba(245,158,11,.4);
    color:#F59E0B;
    font-size:13px;
    font-weight:600;
    padding:7px 18px;
    border-radius:30px;
    margin-bottom:22px;
    letter-spacing:.5px;
}

.hero-text h1{
    font-size:52px;
    font-weight:800;
    color:#fff;
    line-height:1.15;
    margin-bottom:20px;
}

.hero-highlight{
    color:#F59E0B;
}

.hero-text > p{
    color:rgba(255,255,255,.82);
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
    max-width:480px;
}

.features{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:38px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:rgba(255,255,255,.9);
    font-size:15px;
}

.feat-icon{
    width:26px;
    height:26px;
    background:#F59E0B;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    color:#fff;
    flex-shrink:0;
}

.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-hero-outline{
    background:rgba(255,255,255,.1);
    color:#fff;
    border:2px solid rgba(255,255,255,.5);
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    font-size:15px;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:all .3s;
    backdrop-filter:blur(4px);
}

.btn-hero-outline:hover{
    background:rgba(255,255,255,.2);
    border-color:#fff;
    transform:translateY(-2px);
}

.hero-img-wrapper{
    position:relative;
    animation:heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-16px);}
}

.hero-img-wrapper img{
    width:100%;
    max-width:480px;
    display:block;
    margin:0 auto;
    filter:drop-shadow(0 20px 40px rgba(0,0,0,.4));
}

.hero-float-badge{
    position:absolute;
    bottom:20px;
    left:-10px;
    background:#fff;
    border-radius:14px;
    padding:14px 20px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.hero-float-badge i{
    font-size:28px;
    color:#0A5DAA;
}

.hero-float-badge strong{
    display:block;
    color:#0A5DAA;
    font-size:14px;
}

.hero-float-badge small{
    color:#666;
    font-size:12px;
}

.hero-scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    color:rgba(255,255,255,.6);
    font-size:20px;
    text-decoration:none;
    animation:bounce 2s infinite;
    z-index:5;
}

@keyframes bounce{
    0%,100%{transform:translateX(-50%) translateY(0);}
    50%{transform:translateX(-50%) translateY(8px);}
}

/* ==============================================
   STATISTICS SECTION
============================================== */

.stats{
    background:linear-gradient(135deg,#03254E,#0A5DAA);
    padding:70px 0;
    position:relative;
    overflow:hidden;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
    position:relative;
    z-index:2;
}

.stat{
    text-align:center;
    padding:30px 15px;
    border-right:1px solid rgba(255,255,255,.1);
    transition:transform .3s;
}

.stat:last-child{border-right:none;}
.stat:hover{transform:translateY(-5px);}

.stat-icon-wrap{
    width:54px;
    height:54px;
    background:rgba(245,158,11,.2);
    border:1px solid rgba(245,158,11,.35);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 14px;
    font-size:22px;
    color:#F59E0B;
}

.stat h2{
    font-size:40px;
    font-weight:800;
    color:#fff;
    margin-bottom:6px;
    line-height:1;
}

.stat p{
    color:rgba(255,255,255,.7);
    font-size:14px;
    font-weight:500;
}

/* ==============================================
   SERVICES SECTION
============================================== */

.services{
    padding:100px 0;
    background:#fff;
}

.service-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:45px 40px;
    box-shadow:0 5px 30px rgba(0,0,0,.08);
    border:1px solid #eef0f5;
    transition:all .35s;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;left:0;right:0;
    height:4px;
    background:linear-gradient(90deg,#0A5DAA,#1a7fd4);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(10,93,170,.15);
    border-color:#d0e4f7;
}

.service-card:hover::before{transform:scaleX(1);}

.featured-card{
    background:linear-gradient(145deg,#0A5DAA,#1a7fd4);
    color:#fff;
    border-color:transparent;
}

.featured-card::before{
    background:linear-gradient(90deg,#F59E0B,#f7b733);
    transform:scaleX(1);
}

.featured-card:hover{
    box-shadow:0 20px 50px rgba(10,93,170,.3);
    border-color:transparent;
}

.service-pop-badge{
    position:absolute;
    top:20px;right:20px;
    background:#F59E0B;
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    padding:5px 14px;
    border-radius:20px;
}

.service-icon-wrap{
    width:68px;height:68px;
    background:linear-gradient(135deg,rgba(10,93,170,.1),rgba(26,127,212,.1));
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#0A5DAA;
    margin-bottom:22px;
    transition:.3s;
}

.featured-card .service-icon-wrap{
    background:rgba(255,255,255,.2);
    color:#fff;
}

.service-card h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:14px;
    color:#0A5DAA;
}

.featured-card h3{color:#fff;}

.service-card > p{
    line-height:1.8;
    color:#555;
    margin-bottom:22px;
    font-size:15px;
}

.featured-card > p{color:rgba(255,255,255,.85);}

.service-features{
    list-style:none;
    padding:0;
    margin-bottom:28px;
}

.service-features li{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    color:#444;
    margin-bottom:10px;
}

.featured-card .service-features li{color:rgba(255,255,255,.9);}
.service-features i{color:#F59E0B;font-size:13px;flex-shrink:0;}

/* ==============================================
   WHY CHOOSE US
============================================== */

.why{
    padding:100px 0;
    background:linear-gradient(180deg,#f4f8ff 0%,#eef3fb 100%);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.why-item{
    background:#fff;
    border-radius:18px;
    padding:36px 30px;
    text-align:center;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
    border:1px solid #e8eef8;
    transition:all .3s;
}

.why-item:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(10,93,170,.14);
    border-color:#c5d9f0;
}

.why-icon{
    width:64px;height:64px;
    background:linear-gradient(135deg,#0A5DAA,#1a7fd4);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#fff;
    margin:0 auto 18px;
    box-shadow:0 6px 20px rgba(10,93,170,.3);
    transition:.3s;
}

.why-item:hover .why-icon{
    background:linear-gradient(135deg,#F59E0B,#f7b733);
    box-shadow:0 6px 20px rgba(245,158,11,.4);
}

.why-item h4{
    font-size:17px;
    font-weight:700;
    color:#0A5DAA;
    margin-bottom:8px;
}

.why-item p{color:#777;font-size:14px;line-height:1.6;}

/* ==============================================
   INSTAGRAM + REVIEWS SECTIONS
============================================== */

.instagram-feed{padding:100px 0;background:#fff;}

.reviews{padding:100px 0;background:#f4f8ff;}

.instagram-widget,.google-review-widget{
    background:#f8fafc;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
    padding:60px;
    min-height:200px;
    border:1px dashed #d0dce8;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* ==============================================
   CTA SECTION
============================================== */

.cta{
    position:relative;
    padding:110px 0;
    background:linear-gradient(135deg,#03254E 0%,#0A5DAA 60%,#1565c0 100%);
    overflow:hidden;
    text-align:center;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 30% 50%,rgba(255,255,255,.04) 0%,transparent 50%),
               radial-gradient(circle at 70% 50%,rgba(245,158,11,.08) 0%,transparent 50%);
    pointer-events:none;
}

.cta-inner{position:relative;z-index:2;}

.cta-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(245,158,11,.2);
    border:1px solid rgba(245,158,11,.4);
    color:#F59E0B;
    font-size:13px;
    font-weight:600;
    padding:7px 18px;
    border-radius:30px;
    margin-bottom:20px;
    letter-spacing:.5px;
}

.cta h2{
    font-size:46px;
    font-weight:800;
    color:#fff;
    margin-bottom:16px;
    line-height:1.2;
}

.cta-inner p{
    color:rgba(255,255,255,.8);
    font-size:17px;
    max-width:580px;
    margin:0 auto 38px;
    line-height:1.8;
}

.cta-btns{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

/* ==============================================
   FOOTER
============================================== */

footer{
    background:#03254E;
    color:rgba(255,255,255,.7);
    text-align:center;
    padding:35px 20px;
}

footer p{font-size:14px;}

/* ==============================================
   RESPONSIVE — INDEX
============================================== */

@media(max-width:992px){
    .stats-grid{grid-template-columns:repeat(3,1fr);}
    .stat{border-right:none;}
}

@media(max-width:768px){
    .hero{padding:100px 0 70px;min-height:auto;}
    .hero-wrapper{grid-template-columns:1fr;text-align:center;gap:40px;}
    .hero-text h1{font-size:36px;}
    .hero-text > p{max-width:100%;}
    .features{align-items:center;}
    .hero-btns{justify-content:center;}
    .hero-float-badge{left:50%;transform:translateX(-50%);bottom:-15px;white-space:nowrap;}
    .hero-img-wrapper{max-width:320px;margin:0 auto;}
    .stats-grid{grid-template-columns:repeat(2,1fr);}
    .stat{border-right:none;}
    .service-grid{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr 1fr;}
    .section-title{font-size:30px;}
    .cta h2{font-size:32px;}
    .instagram-widget,.google-review-widget{padding:35px 20px;}
}

@media(max-width:480px){
    .why-grid{grid-template-columns:1fr;}
    .hero-text h1{font-size:30px;}
    .stats-grid{grid-template-columns:1fr 1fr;}
}

/* ==============================================
   GALLERY PAGE
============================================== */

.gallery-hero{
    background:linear-gradient(rgba(10,93,170,.88),rgba(10,93,170,.88)),
    url("../images/services-banner.jpg") center/cover;
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.gallery-kicker{
    display:inline-block;
    padding:7px 16px;
    border-radius:999px;
    background:rgba(245,158,11,.2);
    border:1px solid rgba(245,158,11,.5);
    color:#ffd48a;
    font-size:12px;
    letter-spacing:1.2px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:16px;
}

.gallery-hero h1{
    font-size:50px;
    margin-bottom:18px;
}

.gallery-hero p{
    max-width:760px;
    margin:0 auto;
    line-height:1.8;
    font-size:18px;
    color:rgba(255,255,255,.9);
}

.gallery-section{
    padding:90px 0;
    background:linear-gradient(180deg,#f7fbff 0%,#edf4fb 100%);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    align-items:stretch;
}

.gallery-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(3,37,78,.1);
    border:1px solid #e3edf7;
    transition:transform .3s, box-shadow .3s;
    display:flex;
    flex-direction:column;
    height:100%;
}

.gallery-card:hover{
    transform:translateY(-7px);
    box-shadow:0 20px 45px rgba(3,37,78,.16);
}

.gallery-image-wrap{
    position:relative;
    overflow:hidden;
    height:240px;
    background:#eaf2fa;
}

.gallery-media{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform .45s ease;
}

.gallery-card:hover .gallery-media{
    transform:scale(1.06);
}

.gallery-badge{
    position:absolute;
    top:14px;
    right:14px;
    background:rgba(3,37,78,.86);
    color:#fff;
    font-size:11px;
    letter-spacing:1.3px;
    border-radius:999px;
    padding:7px 12px;
    font-weight:700;
}

.gallery-card-content{
    padding:22px 22px 24px;
    display:flex;
    flex-direction:column;
    gap:8px;
    flex-grow:1;
}

.gallery-card-content h3{
    color:#0A5DAA;
    font-size:22px;
    min-height:58px;
}

.gallery-card-content p{
    color:#5f6d7b;
    font-size:15px;
    line-height:1.75;
    margin:0;
}

@media(max-width:992px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .gallery-hero h1{
        font-size:36px;
    }

    .gallery-hero p{
        font-size:16px;
    }

    .gallery-section{
        padding:70px 0;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-image-wrap{
        height:220px;
    }

    .gallery-card-content h3{
        min-height:auto;
    }
}

/* ==============================================
   SHARED IMPROVEMENTS
============================================== */

.menu-icon{
    background:transparent;
    border:none;
    padding:6px;
    line-height:1;
}

@media(max-width:768px){
    .nav-links{
        position:absolute;
        top:78px;
        right:20px;
        width:min(320px,calc(100% - 40px));
        background:#fff;
        border:1px solid #e2ebf4;
        border-radius:14px;
        box-shadow:0 14px 35px rgba(0,0,0,.13);
        padding:16px;
        flex-direction:column;
        gap:8px;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:10px 12px;
        border-radius:10px;
    }

    .nav-links.open{
        display:flex;
    }

    .nav-links a::after{
        display:none;
    }
}

/* ==============================================
   HOME SOCIAL + REVIEWS
============================================== */

.social-connect-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    width:100%;
}

.social-connect-card{
    background:#fff;
    border:1px solid #e6edf5;
    border-radius:14px;
    padding:24px;
    box-shadow:0 7px 20px rgba(0,0,0,.06);
    text-align:left;
}

.social-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:14px;
    color:#fff;
    font-size:20px;
}

.instagram-card .social-icon{background:#e1306c;}
.facebook-card .social-icon{background:#1877f2;}
.whatsapp-card .social-icon{background:#25d366;}

.social-connect-card h3{
    color:#0A5DAA;
    margin-bottom:10px;
}

.social-connect-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:16px;
}

.review-panel{
    width:100%;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:22px;
}

.review-summary,
.review-highlight-card{
    background:#fff;
    border:1px solid #e6edf5;
    border-radius:14px;
    padding:24px;
}

.review-stars{
    color:#F59E0B;
    display:flex;
    gap:6px;
    margin-bottom:12px;
    font-size:18px;
}

.review-summary h3{
    color:#0A5DAA;
    margin-bottom:10px;
}

.review-summary p{
    color:#666;
    line-height:1.7;
    margin-bottom:18px;
}

.review-highlights{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
}

.review-highlight-card h4{
    color:#0A5DAA;
    margin-bottom:8px;
}

.review-highlight-card p{
    color:#666;
    line-height:1.7;
}

/* ==============================================
   CONTACT REFINEMENTS
============================================== */

.contact-info a{
    color:#0A5DAA;
    text-decoration:none;
}

.contact-info a:hover{
    text-decoration:underline;
}

.contact-social-row{
    display:flex;
    gap:12px;
    margin-top:28px;
}

.contact-social-row a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#0A5DAA;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:all .3s;
}

.contact-social-row a:hover{
    background:#F59E0B;
    transform:translateY(-3px);
}

.contact-card-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:14px;
}

.contact-card-map-link{
    margin-top:20px;
}

.contact-card-map-link a{
    color:#fff;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:600;
}

.contact-card-map-link a:hover{
    text-decoration:underline;
}

.map-frame-wrap{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

/* ==============================================
   FOOTER REFRESH
============================================== */

.site-footer{
    background:#03254E;
    color:rgba(255,255,255,.84);
    padding:55px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr 1fr;
    gap:34px;
    margin-bottom:28px;
}

.footer-brand h3,
.footer-links-wrap h4,
.footer-contact h4{
    color:#fff;
    margin-bottom:14px;
}

.footer-brand p{
    color:rgba(255,255,255,.72);
    max-width:420px;
    line-height:1.8;
    margin-bottom:18px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a,
.footer-contact a{
    color:rgba(255,255,255,.84);
    text-decoration:none;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#ffd48a;
}

.footer-contact p{
    margin-bottom:11px;
    color:rgba(255,255,255,.78);
}

.footer-contact i{
    width:20px;
    color:#F59E0B;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.14);
    padding-top:18px;
    text-align:center;
    color:rgba(255,255,255,.65);
}

@media(max-width:992px){
    .social-connect-grid{
        grid-template-columns:1fr 1fr;
    }

    .review-panel{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){
    .social-connect-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }
}
