/* =========================================================
   GNM POWER, LLC - Main Stylesheet
   Brand: Blue & Yellow (Electrical / Power)
   ========================================================= */

:root {
    --blue-900: #0b2a5b;
    --blue-800: #103a7a;
    --blue-700: #1e4ea0;
    --blue-600: #2563c4;
    --blue-500: #3b82f6;
    --yellow-500: #fbbf24;
    --yellow-400: #fcd34d;
    --yellow-600: #f59e0b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 6px 18px rgba(0,0,0,.10);
    --shadow-lg: 0 20px 40px rgba(0,0,0,.14);
    --radius: 10px;
    --radius-lg: 18px;
    --transition: all .3s ease;
    --container: 1200px;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.65;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-700); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--yellow-600); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--gray-900);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: .6em;
}
h1 { font-size: clamp(1.5rem, 6vw, 3.4rem); word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }
h2 { font-size: clamp(1.3rem, 5vw, 2.5rem); word-wrap: break-word; overflow-wrap: break-word; }
h3 { font-size: clamp(1.1rem, 3.5vw, 1.6rem); word-wrap: break-word; overflow-wrap: break-word; }
p  { margin-bottom: 1em; word-wrap: break-word; overflow-wrap: break-word; }

/* Prevent any element from forcing horizontal scroll */
section, header, footer, .hero, .topbar, .container { max-width: 100vw; }
.hero-inner, .container > * { max-width: 100%; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--yellow-500);
    color: var(--blue-900);
    border: 2px solid var(--yellow-500);
    font-weight: 700;
    font-family: var(--font-head);
    letter-spacing: .3px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: .9rem;
}
.btn:hover {
    background: var(--blue-900);
    color: var(--yellow-500);
    border-color: var(--blue-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--blue-900);
}
.btn-blue {
    background: var(--blue-700);
    color: var(--white);
    border-color: var(--blue-700);
}
.btn-blue:hover {
    background: var(--yellow-500);
    color: var(--blue-900);
    border-color: var(--yellow-500);
}

/* ===== Top Bar ===== */
.topbar {
    background: var(--blue-900);
    color: var(--white);
    font-size: .85rem;
    padding: 10px 0;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--yellow-400); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar i { color: var(--yellow-500); margin-right: 6px; }
.topbar-call {
    background: var(--yellow-500);
    color: var(--blue-900) !important;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
}
.topbar-call i { color: var(--blue-900); }
.topbar-call:hover { background: var(--white); }

/* ===== Header ===== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}
.logo img { height: 64px; width: auto; }

.main-nav ul { list-style: none; display: flex; gap: 6px; align-items: center; }
.main-nav a {
    display: inline-block;
    padding: 10px 16px;
    color: var(--gray-800);
    font-weight: 600;
    font-family: var(--font-head);
    font-size: .95rem;
    border-radius: 6px;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--yellow-500);
    transition: var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 24px; }
.main-nav a.active { color: var(--blue-700); }
.main-nav .nav-cta a {
    background: var(--yellow-500);
    color: var(--blue-900);
    padding: 12px 22px;
    border-radius: 8px;
}
.main-nav .nav-cta a::after { display: none; }
.main-nav .nav-cta a:hover {
    background: var(--blue-700);
    color: var(--white);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--blue-900);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(11,42,91,.92), rgba(16,58,122,.85)),
        url('../images/work-1.jpg') center/cover no-repeat;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(251,191,36,.15), transparent 50%);
    pointer-events: none;
}
.hero-inner { padding: 80px 0; position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
    display: inline-block;
    background: var(--yellow-500);
    color: var(--blue-900);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 14px rgba(0,0,0,.25);
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.hero h1 span { color: var(--yellow-400); }
.hero p.lead {
    font-size: 1.2rem;
    max-width: 620px;
    margin-bottom: 32px;
    color: rgba(255,255,255,.92);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    max-width: 700px;
}
.stat .num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--yellow-400);
    display: block;
    line-height: 1;
}
.stat .lbl {
    font-size: .9rem;
    color: rgba(255,255,255,.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    display: block;
}

/* ===== Sections ===== */
section { padding: 90px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-tag {
    display: inline-block;
    color: var(--yellow-600);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: .8rem;
    margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--gray-500); font-size: 1.05rem; }

/* ===== Features Strip ===== */
.features-strip {
    background: var(--blue-900);
    color: var(--white);
    padding: 0;
    position: relative;
    margin-top: -60px;
    z-index: 5;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: min(calc(var(--container) - 48px), 100%);
    margin-left: auto;
    margin-right: auto;
}
.features-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.features-strip-grid > div {
    padding: 32px 26px;
    display: flex;
    gap: 18px;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,.1);
}
.features-strip-grid > div:last-child { border-right: 0; }
.features-strip i {
    font-size: 2rem;
    color: var(--yellow-500);
    flex-shrink: 0;
}
.features-strip h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.features-strip p { color: rgba(255,255,255,.7); margin: 0; font-size: .85rem; }

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: var(--yellow-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow-500);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
    color: var(--yellow-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--gray-500); margin-bottom: 18px; }
.service-card a {
    color: var(--blue-700);
    font-weight: 700;
    font-family: var(--font-head);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.service-card a:hover { color: var(--yellow-600); }

/* ===== About / Split ===== */
.split { background: var(--gray-50); }
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-text .section-tag { text-align: left; }
.split-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--yellow-500);
    color: var(--blue-900);
    padding: 18px 22px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 800;
    box-shadow: var(--shadow-md);
}
.split-image-badge .num {
    font-size: 2rem;
    display: block;
    line-height: 1;
}
.split-image-badge .lbl {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.checklist { list-style: none; margin: 24px 0; }
.checklist li {
    padding: 8px 0 8px 32px;
    position: relative;
    color: var(--gray-700);
}
.checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    width: 22px;
    height: 22px;
    background: var(--yellow-500);
    color: var(--blue-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
}

/* ===== CTA Bar ===== */
.cta-bar {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
    color: var(--white);
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.cta-bar::before {
    content: '\f0e7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18rem;
    color: rgba(251,191,36,.06);
    pointer-events: none;
}
.cta-bar h2 { color: var(--white); margin-bottom: 10px; }
.cta-bar p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 2; }

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11,42,91,.85));
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 2;
}
.gallery-item:hover .overlay { opacity: 1; transform: translateY(0); }
.gallery-item .overlay h4 { color: var(--white); margin: 0; }
.gallery-item .overlay span { color: var(--yellow-400); font-size: .85rem; }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
    background:
        linear-gradient(135deg, rgba(11,42,91,.92), rgba(16,58,122,.85)),
        url('../images/work-3.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 90px 0 70px;
    text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 700px; margin: 0 auto; }
.breadcrumb {
    margin-top: 22px;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
}
.breadcrumb a { color: var(--yellow-400); }
.breadcrumb i { font-size: .65rem; margin: 0 10px; }

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}
.contact-info {
    background: var(--blue-900);
    color: var(--white);
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: '\f0e7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -30px;
    bottom: -50px;
    font-size: 14rem;
    color: rgba(251,191,36,.07);
}
.contact-info h3 { color: var(--white); }
.contact-info .info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 24px 0;
    position: relative;
    z-index: 2;
}
.contact-info .info-item i {
    width: 44px;
    height: 44px;
    background: var(--yellow-500);
    color: var(--blue-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}
.contact-info .info-item strong {
    color: var(--white);
    display: block;
    font-family: var(--font-head);
    margin-bottom: 2px;
}
.contact-info .info-item a,
.contact-info .info-item span {
    color: rgba(255,255,255,.85);
}
.contact-info .info-item a:hover { color: var(--yellow-400); }

.contact-form {
    background: var(--white);
    padding: 44px 38px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    scroll-margin-top: 110px;  /* offset for sticky header when scrolled to */
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
    font-size: .9rem;
    font-family: var(--font-head);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--gray-50);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--yellow-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(251,191,36,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ===== Map ===== */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== Testimonials ===== */
.testimonials {
    background: var(--gray-50);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}
.testimonial {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 4px solid var(--yellow-500);
}
.testimonial .stars { color: var(--yellow-500); margin-bottom: 12px; }
.testimonial p { font-style: italic; color: var(--gray-700); }
.testimonial .author {
    margin-top: 16px;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--gray-900);
}
.testimonial .author span {
    display: block;
    font-weight: 500;
    color: var(--gray-500);
    font-size: .85rem;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--gray-900);
    color: rgba(255,255,255,.7);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-col h4 {
    color: var(--white);
    margin-bottom: 22px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--yellow-500);
    border-radius: 2px;
}
.footer-logo {
    background: var(--white);
    padding: 10px 14px;
    border-radius: var(--radius);
    max-width: 180px;
    margin-bottom: 18px;
}
.footer-tag {
    color: var(--yellow-400);
    font-family: var(--font-head);
    font-weight: 700;
    margin-bottom: 14px;
}
.footer-links, .footer-contact { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--yellow-400); padding-left: 5px; }
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}
.footer-contact i { color: var(--yellow-500); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--yellow-400); }

.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .85rem;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===== Floating Call ===== */
.float-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--yellow-500);
    color: var(--blue-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(251,191,36,.6);
    z-index: 99;
    animation: pulse 2.2s infinite;
}
.float-call:hover {
    background: var(--blue-900);
    color: var(--yellow-500);
    transform: scale(1.08);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(251,191,36,.55); }
    50% { box-shadow: 0 6px 30px rgba(251,191,36,.85), 0 0 0 12px rgba(251,191,36,.0); }
}

/* ===== Animations ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .split-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    section { padding: 60px 0; }
    .container { padding: 0 18px; }
    .hide-mobile { display: none; }
    .nav-toggle { display: block; }
    .header-inner { padding: 12px 18px; }
    .logo img { height: 50px; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }
    .main-nav.open { max-height: 600px; }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 4px;
    }
    .main-nav a { padding: 14px 16px; border-radius: 8px; }
    .main-nav a:hover, .main-nav a.active { background: var(--gray-100); }
    .main-nav a::after { display: none; }
    .main-nav .nav-cta a { text-align: center; }
    .hero { min-height: auto; }
    .hero-inner { padding: 50px 0; }
    .hero p.lead { font-size: 1rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 36px; }
    .stat .num { font-size: 1.7rem; }
    .features-strip { margin-top: 0; border-radius: 0; max-width: 100%; }
    .features-strip-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding: 22px 18px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
    .topbar { font-size: .75rem; padding: 8px 0; }
    .topbar-inner { justify-content: center; }
    .topbar-left, .topbar-right { gap: 12px; justify-content: center; }
    .contact-info, .contact-form { padding: 30px 22px; }
    .page-hero { padding: 60px 0 50px; }
    .section-head { margin-bottom: 40px; }
    .split-grid, .contact-grid { gap: 30px; }
    .cta-bar { padding: 60px 18px; }
    .gallery-grid { gap: 12px; }
    .float-call { width: 52px; height: 52px; bottom: 18px; right: 18px; font-size: 1.2rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero-inner { padding: 40px 0; }
    .hero-badge { font-size: .72rem; padding: 6px 14px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .btn { padding: 12px 22px; font-size: .85rem; }
    .stat .num { font-size: 1.5rem; }
    .stat .lbl { font-size: .75rem; }
    .topbar-left span:first-child { display: none; }
    .cta-actions { flex-direction: column; align-items: stretch; width: 100%; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .features-strip-grid > div { padding: 18px 16px; }
    .features-strip i { font-size: 1.6rem; }
    .service-card { padding: 28px 22px; }
    .service-icon { width: 54px; height: 54px; font-size: 1.4rem; }
    .testimonial { padding: 26px 22px; }
    .map-wrap { height: 320px; }
    .contact-info::before, .cta-bar::before { font-size: 10rem; }
}
