/* ===============================================
   PATIO ADDITIONS TEXAS – Company / Logo Standards
   Deep navy, sky blue (accent), sun, Texas red – greens mapped to blue
   =============================================== */

:root {
    /* Company / logo standard colors */
    --navy: #0A2242;
    --navy-dark: #001F3F;
    --navy-light: #1e3a5f;
    --forest: #228B22;
    --forest-dark: #1b6b1b;
    --forest-light: #2d9d2d;
    --lime: #A7E04C;
    --lime-dark: #8bc73e;
    --sky-blue: #87CEEB;
    --sky-blue-dark: #5a9fc9;
    --sun: #FFC200;
    --sun-dark: #c99400;
    --texas-red: #C0392B;
    --texas-red-dark: #922b21;
    --white: #ffffff;
    --cream: #faf8f5;
    --warm-gray: #f5f3f0;
    --stone: #8B7355;
    --brown: #5A351D;
    
    /* Semantic – blue (green replaced with blue) */
    --primary: var(--navy);
    --primary-dark: var(--navy-dark);
    --primary-light: var(--sky-blue);
    --secondary: var(--navy);
    --accent: var(--sky-blue);
    --accent-alt: var(--texas-red);
    --teal: var(--navy);
    --teal-dark: var(--navy-dark);
    --teal-light: var(--sky-blue);
    --forest: var(--navy);
    --forest-dark: var(--navy-dark);
    --lime: var(--sky-blue);
    --slate: var(--navy-dark);
    --slate-light: var(--navy-light);
    --amber: var(--sun);
    --amber-dark: var(--sun-dark);
    --amber-light: var(--sun);
    --coral: var(--texas-red);
    
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    /* Typography */
    --font-display: 'DM Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Nothing You Could Do', cursive;
    --font-body: var(--font-display);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(10, 34, 66, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(10, 34, 66, 0.08), 0 2px 4px -1px rgba(10, 34, 66, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(10, 34, 66, 0.1), 0 4px 6px -2px rgba(10, 34, 66, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(10, 34, 66, 0.1), 0 10px 10px -5px rgba(10, 34, 66, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(10, 34, 66, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    --announcement-height: 40px;
}

/* ===============================================
   RESET & BASE
   =============================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--neutral-700);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    scrollbar-gutter: stable;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--slate);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Skip link – visible on focus for keyboard users */
.skip-link {
    position: absolute;
    top: -100px;
    left: var(--spacing-md);
    background: var(--navy);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: var(--spacing-md);
    outline: 2px solid var(--sun);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--announcement-height);
    background: linear-gradient(90deg, rgba(10, 34, 66, 0.95), rgba(30, 58, 95, 0.95));
    color: var(--white);
    z-index: 1100;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    font-size: 0.9rem;
    font-weight: 600;
}

.announcement-text {
    letter-spacing: 0.2px;
    animation: announcementBlink 1.6s ease-in-out infinite;
}

.announcement-link {
    color: var(--sun);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255, 194, 0, 0.6);
    padding-bottom: 2px;
    transition: color var(--transition-base), border-color var(--transition-base);
}

.announcement-link:hover {
    color: var(--white);
    border-color: var(--white);
}

@keyframes announcementBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.announcement-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.announcement-call {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* Announcement bar – mobile: allow motto to wrap and show fully */
@media (max-width: 768px) {
    :root {
        --announcement-height: 56px;
    }
    .announcement-bar {
        height: auto;
        min-height: var(--announcement-height);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    .announcement-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: var(--spacing-xs);
        font-size: 0.85rem;
    }
    .announcement-text {
        width: 100%;
        line-height: 1.4;
    }
    .announcement-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    .announcement-content {
        font-size: 0.8rem;
    }
    
    /* Hero Section Mobile Adjustments */
    .hero {
        min-height: auto;
        align-items: flex-start;
        padding-top: calc(80px + var(--announcement-height));
        padding-bottom: var(--spacing-xl);
    }
    
    .hero-content {
        padding-top: 1rem;
    }
    
    .hero-title {
        margin-top: 0;
        margin-bottom: 0.1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 0.1rem;
    }
    
    .hero-motto-lines {
        margin-top: 0;
        gap: 0.3rem;
        flex-wrap: nowrap;
    }
    
    .hero-motto-item {
        font-size: 0.7rem;
        gap: 0.15rem;
        white-space: nowrap;
    }
    
    .hero-motto-icon {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
        flex-shrink: 0;
    }
    
    .hero-contact-line {
        margin-top: 1rem;
        font-size: 0.9rem;
    }
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
    border-radius: 2px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13, 148, 136, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--teal);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--teal);
    box-shadow: var(--shadow-lg);
}

.btn-light:hover {
    background: var(--cream);
    color: var(--teal-dark);
    box-shadow: var(--shadow-xl);
}

.btn-full {
    width: 100%;
}

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

.navbar {
    position: fixed;
    top: var(--announcement-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(10, 34, 66, 0.06);
    box-shadow: 0 1px 3px rgba(10, 34, 66, 0.06);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(10, 34, 66, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem var(--spacing-lg);
}

.logo-link {
    flex-shrink: 0;
}

.logo {
    height: 100px;
    width: auto;
    transition: transform var(--transition-base);
    display: block;
}

.logo:hover {
    transform: scale(1.03);
}


.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--navy);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white) !important;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(13, 148, 136, 0.5);
}

.cta-mobile {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: calc(80px + var(--announcement-height));
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(0, 31, 63, 0.85) 0%,
        rgba(10, 34, 66, 0.75) 40%,
        rgba(30, 58, 95, 0.65) 100%);
    opacity: 1;
}

.hero-sunburst {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 60%;
    background: radial-gradient(ellipse at center,
        rgba(251, 146, 60, 0.12) 0%,
        rgba(234, 88, 12, 0.06) 30%,
        transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 0.9s ease;
}

/* ===============================================
   MOTTO SECTION
   =============================================== */

.motto-section {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.motto-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 194, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.motto-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 1;
}

.motto-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.motto-section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

.motto-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.motto-card-new {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
    border: 1px solid rgba(10, 34, 66, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    text-align: center;
    transition: all 0.3s ease;
}

.motto-card-new:hover {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
    border-color: var(--sun);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 34, 66, 0.15);
}

.motto-card-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    display: block;
}

.motto-card-title {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.motto-card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}


@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Scroll animation class */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    color: var(--white);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.title-line {
    display: block;
    animation: slideIn 0.6s ease forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.15s; }
.title-line:nth-child(2) { animation-delay: 0.3s; }
.title-line:nth-child(3) { animation-delay: 0.45s; }

@keyframes slideIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.highlight {
    color: var(--lime);
    text-shadow: 0 0 40px rgba(167, 224, 76, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    margin: 0 auto var(--spacing-md);
    font-weight: 400;
    animation: fadeIn 0.8s ease 0.5s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease 0.7s backwards;
}

.hero-motto-lines {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease 0.9s backwards;
}

.hero-motto-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.hero-motto-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 194, 0, 0.3);
    color: var(--sun);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
}

.hero-contact-line {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-contact-line a {
    color: var(--sun);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 194, 0, 0.6);
    padding-bottom: 2px;
}

.hero-contact-line a:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.mobile-call-cta {
    display: none;
    position: fixed;
    left: 50%;
    bottom: max(16px, env(safe-area-inset-bottom));
    transform: translateX(-50%) translateY(120px);
    z-index: 1200;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(13, 148, 136, 0.45);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    opacity: 0;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.mobile-call-cta.visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.mobile-call-cta:active {
    transform: translateX(-50%) translateY(2px);
    box-shadow: 0 6px 14px rgba(13, 148, 136, 0.35);
}

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

.stats-bar {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    padding: var(--spacing-3xl) 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 194, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stats-bar::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 224, 76, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stats-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 1;
}

.stats-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.stats-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: var(--spacing-2xl) var(--spacing-xl);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 194, 0, 0.5);
    transform: translateY(-6px);
}

.stat-icon-bg {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 194, 0, 0.15);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 194, 0, 0.3);
}

.stat-icon-bg svg {
    width: 36px;
    height: 36px;
    stroke: var(--sun);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--sun);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 700;
    color: rgba(255, 194, 0, 0.8);
    margin-left: 2px;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

.stat-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-sm);
    line-height: 1.4;
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: var(--spacing-md);
    color: var(--slate);
}

.section-description {
    font-size: 1.15rem;
    color: var(--neutral-500);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.about {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10, 34, 66, 0.1);
}

.about-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: var(--spacing-lg);
    left: var(--spacing-lg);
    background: var(--white);
    color: var(--navy);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.about-badge-star {
    color: var(--sun);
}

.about-content .section-tag {
    margin-bottom: var(--spacing-sm);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.about-lead {
    font-size: 1.2rem;
    color: var(--neutral-600);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.about-content > p {
    margin-bottom: var(--spacing-lg);
    color: var(--neutral-600);
}

.about-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.about-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 0;
    color: var(--neutral-700);
    font-size: 1.05rem;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--forest);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

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

.services {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.service-card {
    background: var(--white);
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(10, 34, 66, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--forest), var(--lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(15, 23, 42, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(10, 34, 66, 0.25);
}

.service-card.featured::before {
    background: linear-gradient(90deg, var(--lime), var(--sun));
    transform: scaleX(1);
}

.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured .service-features {
    color: rgba(255, 255, 255, 0.95);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-card.featured .service-icon svg {
    stroke: currentColor;
}

.service-card.featured .service-features li::before {
    color: var(--lime);
}

.featured-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--lime);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--forest), var(--forest-dark));
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-shrink: 0;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    color: inherit;
    display: block;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    color: var(--navy-dark);
}

.service-description {
    font-size: 1rem;
    color: var(--neutral-700);
    margin-bottom: var(--spacing-lg);
    line-height: 1.65;
}

.service-card.featured .service-description {
    color: var(--white);
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 0.95rem;
    color: var(--neutral-600);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest);
    font-weight: 700;
}

.service-card.featured .service-features li {
    color: var(--white);
}

/* ===============================================
   CTA STRIP
   =============================================== */

.cta-strip {
    background: var(--forest);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    position: relative;
}

.cta-strip-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-strip-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

/* ===============================================
   GALLERY (Our Work)
   =============================================== */

.gallery {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

/* ===============================================
   GALLERY FOLDER STYLES
   =============================================== */

.gallery-folder {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 34, 66, 0.08);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 240px;
    justify-content: flex-end;
    color: var(--white);
    min-width: 0; /* lets grid item shrink correctly; preview stays full width */
}

.gallery-folder:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy);
}

.folder-icon {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 2.5rem;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.folder-preview {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    background: linear-gradient(135deg, #0A2242, #1e3a5f);
    background-size: cover;
    background-position: center;
    position: absolute;
    inset: 0;
    z-index: 0;
    box-sizing: border-box;
}

.folder-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 34, 66, 0.1) 0%, rgba(10, 34, 66, 0.75) 100%);
}

.folder-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.folder-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-xs);
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.folder-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-sm);
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.folder-count {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    margin: 0;
    position: relative;
    z-index: 1;
}

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

.gallery-grid-view {
    display: none;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--cream);
    border-radius: var(--radius-lg);
    min-height: 600px;
}

.gallery-grid-view.visible {
    display: flex;
}

.gallery-view-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--neutral-200);
}

.btn-back {
    background: var(--navy);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-base);
}

.btn-back:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-back:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.gallery-view-title {
    font-size: 1.5rem;
    color: var(--navy-dark);
    margin: 0;
    flex: 1;
}

.gallery-grid {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-padding-inline: calc(var(--spacing-md) + 2.75rem);
    padding: 0.5rem calc(var(--spacing-md) + 2.75rem) 0.8rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(10, 34, 66, 0.03), rgba(10, 34, 66, 0.01));
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.gallery-grid:active {
    cursor: grabbing;
}

.gallery-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.5s ease;
    flex: 0 0 clamp(450px, 55vw, 650px);
    scroll-snap-align: start;
}

.gallery-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.gallery-card:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

.gallery-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-card .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-card-caption {
    padding: var(--spacing-md) var(--spacing-sm) var(--spacing-md) 0;
}

.gallery-card-caption h3 {
    font-size: 1.2rem;
    color: var(--navy-dark);
    margin-bottom: 0.25rem;
}

.gallery-card-caption p {
    font-size: 0.9rem;
    color: var(--neutral-500);
}

.gallery-card-hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .gallery-card {
        flex: 0 0 clamp(380px, 50vw, 550px);
    }
}

@media (max-width: 600px) {
    .gallery-card {
        flex: 0 0 clamp(280px, 85vw, 420px);
    }
}

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

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 34, 66, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.lightbox[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    transition: background var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: var(--spacing-lg);
}

.lightbox-next {
    right: var(--spacing-lg);
}

.lightbox-content {
    max-width: 900px;
    width: 100%;
}

.lightbox-image {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    background: var(--navy-light);
}

.lightbox-caption h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.lightbox-caption p {
    color: var(--sky-blue);
    font-size: 1rem;
}

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

.process {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.process-timeline {
    max-width: 880px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 31px;
    top: 80px;
    width: 2px;
    height: calc(100% + var(--spacing-2xl));
    background: linear-gradient(to bottom, var(--forest), var(--sky-blue));
    opacity: 0.4;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--forest), var(--forest-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step:hover .step-number {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.4);
}

.step-content {
    transition: all 0.3s ease;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: var(--spacing-sm);
    color: var(--navy-dark);
    transition: color 0.3s ease;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--neutral-600);
    line-height: 1.75;
}

.process-step:hover .step-content h3 {
    color: var(--forest);
}

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

.testimonials {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(10, 34, 66, 0.05);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 23, 42, 0.15);
}

.stars {
    color: var(--sun);
    font-size: 1.15rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--neutral-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

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

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--neutral-500);
}

/* ===============================================
   FAQ
   =============================================== */

.faq {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(10, 34, 66, 0.08);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy-dark);
    padding: var(--spacing-md) var(--spacing-lg);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--forest);
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    margin: 0;
    padding-top: 0;
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

.faq-answer::before {
    content: '';
    display: block;
    height: 1px;
    background: rgba(10, 34, 66, 0.08);
    margin-bottom: var(--spacing-md);
}

/* ===============================================
   TRUST BADGES
   =============================================== */

.trust-badges {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    padding: var(--spacing-md) var(--spacing-sm);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(13, 148, 136, 0.05);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.15);
}

.trust-icon {
    font-size: 1.75rem;
}

/* ===============================================
   CALCULATOR
   =============================================== */

.calculator {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.calculator .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator .section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #1a9d5d 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calculator .section-title {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.calculator .section-description {
    color: var(--navy-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.calculator-content {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(25, 42, 86, 0.1);
    margin-bottom: 2rem;
}

.calculator-form .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.calculator-form label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: block;
    position: static !important;
    top: auto !important;
    left: auto !important;
    background: none !important;
    padding: 0 !important;
}

.calculator-form select,
.calculator-form input {
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: white;
    color: var(--navy);
    transition: all 0.3s ease;
    height: auto;
    min-height: 44px;
}

.calculator-form select option:first-child {
    color: #999;
}

.calculator-form select option {
    color: var(--navy);
}

.calculator-form select:focus,
.calculator-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(34, 177, 76, 0.1);
}

.calculator-form input::placeholder {
    color: #999;
}

.calculator-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.calculator-form .btn {
    margin-top: 1rem;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent) 0%, #1a9d5d 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 177, 76, 0.3);
}

.calculator-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 177, 76, 0.4);
}

.calculator-form .btn:active {
    transform: translateY(0);
}

.calculator-result {
    display: none;
}

.result-card {
    background: white;
    border-left: 5px solid var(--accent);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(25, 42, 86, 0.1);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.result-amount .currency {
    font-size: 1.8rem;
}

.result-disclaimer {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.result-details {
    margin-bottom: 1.5rem;
}

.result-details p {
    color: var(--navy);
    margin: 0.75rem 0;
    font-size: 1.05rem;
}

.result-details p strong {
    color: var(--navy);
    font-weight: 600;
}

.result-details p span {
    color: var(--accent);
    font-weight: 600;
}

.result-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
    color: var(--navy);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .calculator .section-title {
        font-size: 1.8rem;
    }
    
    .calculator-form {
        padding: 1.5rem;
    }
    
    .calculator-row {
        grid-template-columns: 1fr;
    }
    
    .result-amount {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .calculator {
        padding: var(--spacing-2xl) 0;
    }
    
    .calculator .section-title {
        font-size: 1.5rem;
    }
    
    .calculator .section-description {
        font-size: 1rem;
    }
    
    .calculator-form {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .calculator-form .form-group {
        margin-bottom: 1rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-amount {
        font-size: 1.6rem;
    }
    
    .result-details p {
        font-size: 0.95rem;
    }
}

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

.contact {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.contact-info > p {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: var(--spacing-xl);
    line-height: 1.75;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.2rem;
    stroke: var(--lime);
}

.contact-item strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: var(--white);
}

.contact-item p {
    opacity: 0.9;
    font-size: 1rem;
}

.contact-form {
    background: transparent;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: none;
}

.form-group {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 1rem;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--white);
    color: var(--navy-dark);
}

/* Override browser autofill styling - GLOBAL & AGGRESSIVE */
input,
textarea,
select {
    -webkit-autofill-font-size-adjustment: 16px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--white) inset !important;
    -webkit-text-fill-color: var(--navy-dark) !important;
    background-color: var(--white) !important;
    border-color: var(--neutral-200) !important;
    caret-color: var(--navy-dark) !important;
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill:active,
.form-group select:-webkit-autofill,
.form-group select:-webkit-autofill:hover,
.form-group select:-webkit-autofill:focus,
.form-group select:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--white) inset !important;
    -webkit-text-fill-color: var(--navy-dark) !important;
    background-color: var(--white) !important;
    border-color: var(--neutral-200) !important;
    caret-color: var(--navy-dark) !important;
}

.form-group input:-webkit-autofill + label,
.form-group textarea:-webkit-autofill + label,
.form-group select:-webkit-autofill + label {
    top: -0.6rem;
    left: 0.75rem;
    font-size: 0.8rem;
    background: var(--white);
    padding: 0 0.4rem;
    color: var(--forest);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.12);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--neutral-500);
    font-size: 1rem;
    pointer-events: none;
    transition: all var(--transition-base);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -0.6rem;
    left: 0.75rem;
    font-size: 0.8rem;
    background: var(--white);
    padding: 0 0.4rem;
    color: var(--forest);
}

.form-group select + label {
    display: block;
    /* Always show label above the select, never overlapping */
    top: -0.6rem;
    left: 0.75rem;
    font-size: 0.8rem;
    background: var(--white);
    padding: 0 0.4rem;
    color: var(--forest);
}

.form-group select option[value=""] {
    color: var(--neutral-400);
}

.form-toast {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    display: none;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

.form-toast.success {
    display: block;
    background: linear-gradient(135deg, rgba(30, 86, 49, 0.95) 0%, rgba(15, 23, 42, 0.90) 100%);
    color: var(--white);
    border-left: 4px solid var(--forest);
    box-shadow: 0 4px 12px rgba(30, 86, 49, 0.3);
}

.form-toast.error {
    display: block;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.95) 0%, rgba(169, 32, 20, 0.90) 100%);
    color: var(--white);
    border-left: 4px solid #c0392b;
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

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

.footer {
    background: var(--white);
    color: var(--neutral-600);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    border-top: 1px solid #e5e5e5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: var(--spacing-md);
    width: fit-content;
}

.footer-logo {
    height: 50px;
    width: auto;
    display: block;
    opacity: 0.9;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-top: 0.25rem;
    color: var(--neutral-600);
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
    color: var(--neutral-600);
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--forest);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--forest-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid #e5e5e5;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--neutral-500);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: var(--neutral-600);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--forest);
}

/* Footer developer credit */
.footer-credit {
    text-align: center;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-md);
    border-top: 1px solid #e5e5e5;
}

.footer-credit p {
    font-size: 0.9rem;
    color: var(--neutral-600);
    margin: 0;
    font-weight: 500;
}

.footer-credit a {
    color: var(--forest);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--forest);
    transition: color var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--teal);
    border-bottom-color: var(--teal);
}

.credit-heart {
    color: #e74c3c;
    display: inline-block;
    animation: heartBeat 1.2s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===============================================
   WHY US (VALUE/PRICING SECTION)
   =============================================== */

.why-us {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.why-us-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(10, 34, 66, 0.05);
}

.why-us-card:hover {
    transform: translateY(-4px);
    border-color: var(--forest);
    box-shadow: 0 8px 16px rgba(10, 34, 66, 0.1);
}

.why-us-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.why-us-card h3 {
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin-bottom: var(--spacing-md);
}

.why-us-card p {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.75;
}

/* ===============================================
   SCROLL REVEAL
   =============================================== */

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 520px;
        margin: 0 auto;
    }

    .motto-grid {
        grid-template-columns: 1fr;
    }
    
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 86px;
    }

    .hero {
        padding-top: calc(120px + var(--announcement-height));
    }


    .cta-desktop {
        display: none;
    }

    .cta-mobile {
        display: inline;
    }

    .nav-menu {
        position: fixed;
        top: calc(70px + var(--announcement-height));
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px - var(--announcement-height));
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-xl);
        transition: left var(--transition-base);
        box-shadow: var(--shadow-xl);
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .mobile-call-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: calc(100% - var(--spacing-md));
        max-width: 320px;
        padding: 1rem 1.8rem;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: flex-start;
        padding-left: 0;
    }
    
    .process-step::after {
        display: none;
    }
    
    .step-number {
        margin-bottom: 0.25rem;
    }
    
    .step-content {
        width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .motto-title {
        font-size: 1.5rem;
        line-height: 1.35;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .trust-item {
        padding: var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .trust-icon {
        font-size: 2rem;
    }
}

/* ===============================================
   LEGAL PAGES (Privacy / Terms)
   =============================================== */

.legal-page {
    padding: calc(var(--spacing-3xl) + 80px) 0 var(--spacing-3xl);
    min-height: 60vh;
    background: var(--white);
}

.legal-header {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--neutral-200);
}

.legal-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--navy-dark);
    margin-bottom: var(--spacing-sm);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--neutral-500);
}

.legal-content {
    max-width: 720px;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
}

.legal-content p {
    margin-bottom: var(--spacing-md);
    color: var(--neutral-700);
}

.legal-content a {
    color: var(--forest);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--navy-dark);
}

.legal-back {
    margin-top: var(--spacing-2xl);
}

/* ===============================================
   WELCOME / MOTTO POPUP
   =============================================== */

.welcome-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: rgba(10, 34, 66, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.welcome-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.welcome-modal {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    transform: scale(0.95);
    transition: transform var(--transition-base);
}

.welcome-overlay.is-visible .welcome-modal {
    transform: scale(1);
}

.welcome-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--neutral-500);
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.welcome-close:hover,
.welcome-close:focus {
    color: var(--navy);
    background: var(--warm-gray);
}

.welcome-content {
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
}

.welcome-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(135, 206, 235, 0.25);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.welcome-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

.welcome-text {
    font-size: 0.95rem;
    color: var(--neutral-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.welcome-cta {
    display: inline-block;
    width: 100%;
    margin-bottom: var(--spacing-md);
}

.welcome-dismiss {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--neutral-500);
    cursor: pointer;
}

.welcome-dismiss input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--navy);
}

/* ===============================================
   FEATURED SERVICES GRID - NEW LAYOUT
   =============================================== */

.featured-services {
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--cream) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.featured-services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto auto;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid positioning for items */
.service-item-left-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
.service-item-left-2 { grid-column: 1 / 3; grid-row: 2 / 3; }
.service-item-left-3 { grid-column: 1 / 3; grid-row: 3 / 4; }

.service-item-center { grid-column: 3 / 5; grid-row: 1 / 4; }

.service-item-right-1 { grid-column: 5 / 7; grid-row: 1 / 2; }
.service-item-right-2 { grid-column: 5 / 7; grid-row: 2 / 3; }
.service-item-right-3 { grid-column: 5 / 7; grid-row: 3 / 4; }

/* Service Box Styling */
.service-box {
    background: var(--white);
    border: 2px solid var(--navy-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--sky-blue);
}

.service-box-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.service-box-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.service-box-description {
    font-size: 0.95rem;
    color: var(--neutral-600);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
    flex-grow: 1;
}

.service-box-link {
    display: inline-block;
    color: var(--sky-blue-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    font-size: 0.9rem;
    margin-top: auto;
}

.service-box-link:hover {
    color: var(--navy);
    transform: translateX(4px);
}

/* Mission Statement Box */
.mission-statement-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border: 2px solid var(--sky-blue);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl) var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.mission-statement-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    animation: shimmer 20s linear infinite;
}

.mission-statement-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-logo {
    width: 300px;
    height: auto;
    margin: 0 auto var(--spacing-lg) auto;
    display: block;
    filter: brightness(1.1);
}

.mission-statement-text {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.mission-statement-items {
    margin-bottom: var(--spacing-xl);
}

.mission-item {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 0.5rem 0;
}

.mission-statement-text strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: var(--spacing-sm);
    color: var(--sky-blue);
}

.mission-statement-contact {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid-layout {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-md);
    }

    .service-item-left-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
    .service-item-left-2 { grid-column: 1 / 3; grid-row: 2 / 3; }
    .service-item-left-3 { grid-column: 1 / 2; grid-row: 3 / 4; }

    .service-item-center { grid-column: 3 / 5; grid-row: 1 / 4; }

    .service-item-right-1 { grid-column: 2 / 4; grid-row: 3 / 4; }
    .service-item-right-2 { grid-column: 4 / 5; grid-row: 1 / 2; }
    .service-item-right-3 { grid-column: 4 / 5; grid-row: 2 / 3; }
}

@media (max-width: 768px) {
    .featured-services {
        padding: var(--spacing-2xl) 0;
    }

    .services-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }

    .gallery-folder {
        height: 280px;
        min-height: 280px;
    }

    .folder-description {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-item-left-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .service-item-left-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .service-item-left-3 { grid-column: 1 / 2; grid-row: 2 / 3; }

    .service-item-center { 
        grid-column: 1 / 3; 
        grid-row: 3 / 4;
        min-height: 250px;
    }

    .service-item-right-1 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .service-item-right-2 { grid-column: 1 / 2; grid-row: 4 / 5; }
    .service-item-right-3 { grid-column: 2 / 3; grid-row: 4 / 5; }

    .mission-item {
        font-size: 0.9rem;
    }

    .service-box {
        padding: var(--spacing-lg);
    }

    .service-box-title {
        font-size: 1.2rem;
    }

    .service-box-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .featured-services {
        padding: var(--spacing-xl) 0;
    }

    .services-grid-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .gallery-folder {
        height: 280px;
        min-height: 280px;
    }

    .folder-description {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-item-left-1, 
    .service-item-left-2,
    .service-item-left-3,
    .service-item-center,
    .service-item-right-1,
    .service-item-right-2,
    .service-item-right-3 {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .mission-statement-box {
        padding: var(--spacing-lg);
    }

    .mission-item {
        font-size: 0.85rem;
    }

    .service-box {
        padding: var(--spacing-md);
    }

    .service-box-title {
        font-size: 1.1rem;
    }

    .service-box-icon {
        font-size: 2rem;
    }

    .mission-statement-contact {
        flex-direction: column;
    }

    .btn-sm {
        width: 100%;
        padding: 0.7rem 1rem;
    }
}

/* Hide sections not in main layout */
.motto-section,
.stats-bar,
.about,
.why-us,
.gallery,
.process,
.trust-badges,
.faq {
    display: none;
}



.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(10, 34, 66, 0.3);
    z-index: 1000;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 34, 66, 0.4);
}

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

input, textarea, select {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(13, 86, 55, 0.1);
    outline: none;
}

input.error, textarea.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

input.filled, textarea.filled {
    background-color: rgba(13, 86, 55, 0.02);
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .welcome-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    .welcome-title {
        font-size: 1.25rem;
        line-height: 1.35;
    }
    .welcome-text {
        font-size: 0.9rem;
    }
}

/* ===============================================
   REDUCED MOTION
   =============================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
