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

:root {
    --primary: #0047AB;
    --primary-dark: #002D6B;
    --secondary: #0088CC;
    --accent: #E0E0E0;
    --text: #1A1A1A;
    --text-light: #555555;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY — Mobile-first with clamp()
   ============================================ */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================
   BASE LAYOUT — Mobile (320px+)
   ============================================ */
section {
    padding: 50px 4%;
}

.container {
    width: 100%;
}

/* ============================================
   HEADER & NAV — Mobile-first
   ============================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 64px;
    animation: slideDownNav 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo {
    font-size: clamp(1.1rem, 3.5vw, 1.5rem);
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-cta {
    padding: 10px 20px !important;
    border-radius: 5px !important;
    min-height: 44px;
}

.logo span {
    color: var(--text);
}

/* Hamburger — visible by default on mobile */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 10px;
    transition: var(--transition);
}

/* Morph to X - triggered by class on nav-links sibling */
.nav-links.active ~ .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-links.active ~ .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-links.active ~ .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Nav links — hidden on mobile, slide-in panel */
.nav-links {
    display: flex; /* Always flex but hidden via opacity/transform */
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: white;
    padding: 16px 4%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    gap: 0;
    text-align: center;
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
    padding: 14px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Sliding underline for desktop */
@media (min-width: 768px) {
    .nav-links a {
        padding: 0;
        border-bottom: none;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: var(--transition);
    }
    
    .nav-links a:hover::after {
        width: 100%;
    }
}

.nav-links a:last-child {
    border-bottom: none;
    margin-top: 8px;
}

.nav-links a:hover {
    color: var(--primary);
}

/* ============================================
   HERO — Full-width, mobile-first
   ============================================ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #17324f, #0b1d34);
    color: white;
    padding: 80px 5% 50px;
    max-width: none;
    margin: 0;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background-color: #06192e;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 29, 52, 0.58), rgba(23, 50, 79, 0.34));
    z-index: -1;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.02);
    will-change: transform;
}

.hero-content {
    max-width: 100%;
    padding: 0 2%;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(1.75rem, 6vw, 4rem);
    margin-bottom: 16px;
}

.hero-content p {
    font-size: clamp(0.95rem, 2.5vw, 1.35rem);
    margin-bottom: 28px;
}

.cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: clamp(0.875rem, 2vw, 1rem);
    min-height: 48px;
    border: none;
    width: 100%;
    max-width: 340px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 71, 171, 0.3);
    animation: pulseGlow 1.5s infinite;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

.trust-line {
    margin-top: 36px;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
}

.trust-line .locations {
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 8px;
    line-height: 1.5;
}

.trust-line .badges {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   SERVICES — Mobile-first
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-heavy);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

.service-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 16px;
    flex-grow: 1;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.service-info .btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.service-info .btn-text:hover {
    text-decoration: underline;
}

/* ============================================
   WHY CHOOSE US — Mobile-first
   ============================================ */
.why-us {
    background-color: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.why-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.why-content ul {
    list-style: none;
    margin: 20px 0;
}

.why-content li {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.why-content li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 900;
    background: white;
    width: 25px;
    height: 25px;
    min-width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
}

.why-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* ============================================
   SHOWCASE / BEFORE-AFTER — Mobile-first (compact)
   ============================================ */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    max-height: 220px;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.showcase-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   OUR PROJECTS — Cards, Mobile-first
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.project-card {
    background: var(--bg-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    will-change: transform;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.project-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-location-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    color: var(--primary);
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    margin-bottom: 4px;
}

.project-info .project-location {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.project-info p:last-child {
    color: var(--text-light);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.6;
}

/* ============================================
   SERVICE AREAS — Mobile-first
   ============================================ */
.areas {
    text-align: center;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.area-tag {
    background: white;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid #EEE;
    font-weight: 600;
    color: var(--primary);
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    min-height: 40px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.area-tag:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 71, 171, 0.35);
    box-shadow: 0 8px 18px rgba(0, 71, 171, 0.08);
}

/* ============================================
   TESTIMONIALS SECTION — Card grid, Mobile-first
   ============================================ */
.testimonials-section {
    background: var(--bg-light);
}

.testimonials-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 10px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    will-change: transform;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 3rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    margin-bottom: -8px;
    animation: quoteDrift 6s ease-in-out infinite alternate;
}

.testimonial-review {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 14px;
    font-style: italic;
}

.star-rating {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    color: var(--text);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Old single-quote testimonial (keep for backward compat) */
.testimonials {
    background: var(--primary);
    color: white;
    text-align: center;
}

.testimonial-text {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

/* ============================================
   CONTACT / CTA — Mobile-first
   ============================================ */
.contact-section {
    background: var(--primary-dark);
    background-image: linear-gradient(120deg, var(--primary-dark), var(--primary), #0066cc);
    background-size: 200% 200%;
    animation: gradientShift 16s ease-in-out infinite alternate;
    color: white;
    padding: 60px 4%;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.contact-section p {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    margin-bottom: 28px;
}

.contact-section h3 {
    margin-top: 30px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
}

.cta-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    background: white;
    padding: 16px 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    animation: logoFloat 4s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

@media (min-width: 768px) {
    .cta-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cta-text-content {
        flex: 1;
        padding-right: 50px;
    }

    .cta-logo-content {
        flex: 0 0 350px;
        display: flex;
        justify-content: flex-end;
    }

    .cta-text-content .cta-group {
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* ============================================
   CONTACT PAGE — Mobile-first
   ============================================ */
.contact-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    background-size: 200% 200%;
    animation: gradientShift 16s ease-in-out infinite alternate;
    color: white;
    padding: 100px 5% 50px;
    max-width: none;
    margin: 0;
}

.contact-hero h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: 12px;
}

.contact-hero p {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page {
    max-width: none;
    margin: 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.contact-form-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.contact-form-wrapper h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text);
}

.contact-form .required {
    color: #e53e3e;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg-light);
    transition: var(--transition);
    min-height: 48px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 71, 171, 0.2);
    background: white;
    transform: translateX(5px);
}

.form-submit-btn {
    width: 100%;
    margin-top: 8px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: var(--transition);
    z-index: -1;
}

.form-submit-btn:hover::before {
    left: 0;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.info-icon {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    transform: translateY(-2px) scale(1.04);
    background: rgba(0, 71, 171, 0.08);
}

.info-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: block;
}

.info-item a:hover {
    text-decoration: underline;
}

.info-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.info-item span {
    color: var(--text);
    font-weight: 500;
}

.business-hours h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 8px;
}

.business-hours p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.map-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.map-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.map-wrapper h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.map-embed iframe {
    width: 100%;
    border-radius: 12px;
}

/* ============================================
   FOOTER — Mobile-first
   ============================================ */
footer {
    background: #001A3D;
    color: rgba(255, 255, 255, 0.6);
    padding: 30px 4%;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.footer-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 16px;
}

.footer-keywords span {
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
}

/* ============================================
   SECTION HEADINGS — used via inline styles
   Provide responsive overrides
   ============================================ */
#services h2,
#projects h2,
#our-projects h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

/* ============================================
   BREAKPOINT: 480px — Larger phones
   ============================================ */
@media (min-width: 480px) {
    .cta-group {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        width: auto;
        max-width: none;
    }

    .service-img {
        height: 220px;
    }

    .services-grid {
        gap: 24px;
    }

    .area-tags {
        gap: 12px;
    }

    .area-tag {
        padding: 10px 20px;
    }

    .showcase-item {
        max-height: 250px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .form-submit-btn {
        width: auto;
    }

    .testimonials-grid {
        gap: 20px;
    }
}

/* ============================================
   BREAKPOINT: 768px — Tablets
   ============================================ */
@media (min-width: 768px) {
    /* Header — show nav, hide hamburger */
    header {
        height: 80px;
        padding: 0 5%;
    }

    .menu-toggle {
        display: none !important;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        gap: 30px;
        opacity: 1;
        transform: none;
        pointer-events: all;
    }

    .nav-links a {
        padding: 0;
        min-height: auto;
        border-bottom: none;
    }

    .nav-links a:last-child {
        margin-top: 0;
    }

    /* Sections — more padding */
    section {
        padding: 70px 5%;
    }

    /* Hero */
    .hero {
        padding: 100px 5% 60px;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero-content h1 {
        margin-bottom: 20px;
    }

    .hero-content p {
        margin-bottom: 36px;
    }

    .cta-group {
        gap: 16px;
    }

    .trust-line {
        margin-top: 50px;
    }

    /* Services — 2 columns */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin-top: 40px;
    }

    .service-img {
        height: 240px;
    }

    .service-info {
        padding: 24px;
    }

    /* Why Choose Us — 2 columns */
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .why-content ul {
        margin: 28px 0;
    }

    /* Showcase — 3 columns, compact */
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 36px;
    }

    .showcase-item {
        border-radius: 12px;
        max-height: 200px;
    }

    /* Projects — 2 columns */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Testimonials — 2 columns */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Contact page — 2 columns */
    .contact-page-grid {
        grid-template-columns: 1.3fr 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 36px 32px;
    }

    .contact-info-card {
        padding: 28px 24px;
    }

    .map-wrapper {
        padding: 24px;
    }

    /* Contact CTA */
    .contact-section {
        padding: 80px 5%;
    }

    /* Testimonials section full bleed */
    .testimonials-section {
        max-width: none;
        margin: 0;
    }

    /* Footer */
    footer {
        padding: 36px 5%;
    }

    .footer-keywords {
        gap: 10px;
    }
}

/* ============================================
   BREAKPOINT: 1024px — Desktop
   ============================================ */
@media (min-width: 1024px) {
    section {
        padding: 80px 5%;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero — full bleed, override section max-width */
    .hero {
        max-width: none;
        margin: 0;
        padding: 100px 5% 70px;
    }

    .hero-content {
        max-width: 1100px;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 4.5vw, 4rem);
    }

    /* Services — 3 columns */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

    .service-img {
        height: 250px;
    }

    .service-info {
        padding: 30px;
    }

    .service-card:hover {
        transform: translateY(-10px);
    }

    /* Why Choose Us */
    .why-grid {
        gap: 50px;
    }

    .why-content ul {
        margin: 30px 0;
    }

    /* Showcase — keep compact */
    .showcase-grid {
        gap: 20px;
        margin-top: 40px;
        max-width: 1000px;
    }

    .showcase-item {
        max-height: 220px;
    }

    /* Projects — 3 columns */
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
    }

    .project-img {
        height: 220px;
    }

    .project-info {
        padding: 24px;
    }

    /* Testimonials grid */
    .testimonials-grid {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Contact page */
    .contact-page-grid {
        max-width: 1200px;
    }

    .contact-form-wrapper {
        padding: 40px 36px;
    }

    /* Contact */
    .contact-section {
        padding: 100px 5%;
        /* Full bleed like hero */
        max-width: none;
        margin: 0;
    }

    /* Testimonials — full bleed */
    .testimonials {
        max-width: none;
        margin: 0;
    }

    /* Why-us — full bleed bg */
    .why-us {
        max-width: none;
        margin: 0;
    }

    /* Areas — full bleed bg */
    .areas {
        max-width: none;
        margin: 0;
    }

    .btn {
        padding: 18px 35px;
    }
}

/* ============================================
   BREAKPOINT: 1280px — Large desktop
   ============================================ */
@media (min-width: 1280px) {
    .hero-content {
        max-width: 1150px;
    }

    .hero-content h1 {
        font-size: 3.8rem;
    }

    .services-grid,
    .why-grid {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-grid {
        margin-top: 50px;
    }

    .showcase-grid {
        margin-top: 40px;
        max-width: 1060px;
    }

    .area-tags {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .testimonial-text {
        font-size: 1.6rem;
    }

    .trust-line {
        margin-top: 60px;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
    font-size: 1.5rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ============================================
   ADDITIONAL ANIMATION KEYFRAMES
   ============================================ */
@keyframes slideDownNav {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes heroKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes gradientShift {
    from { background-position: 0% 50%; }
    to { background-position: 100% 50%; }
}

@keyframes quoteDrift {
    from { transform: translateY(0); }
    to { transform: translateY(-4px); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 71, 171, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 71, 171, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 71, 171, 0); }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero::before {
        animation: none !important;
    }
}

