/* ============================================
   PONY CLEANING SERVICES - Professional Styles
   Mobile-First, 100% Responsive Design
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo Color Palette */
    --primary-blue: #1e3a5f;
    --secondary-blue: #2c5282;
    --accent-orange: #ff6b35;
    --accent-green: #22c55e;
    --light-orange: #f7931e;
    --light-green: #16a34a;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f1f5f9;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
    --text-dark: #0f172a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-green: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(44, 82, 130, 0.85) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --shadow-orange: 0 8px 25px rgba(255, 107, 53, 0.35);
    --shadow-green: 0 8px 25px rgba(34, 197, 94, 0.35);
    --shadow-card: 0 4px 20px rgba(30, 58, 95, 0.08);
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --section-padding-mobile: 60px 0;
    --section-padding-tablet: 80px 0;
    --section-padding-desktop: 100px 0;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container - Mobile First */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

/* ============================================
   NAVIGATION - Mobile First
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition-normal);
    overflow: visible;
}

.navbar.scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 16px;
    position: relative;
    overflow: visible;
}

@media (min-width: 768px) {
    .nav-container {
    height: 80px;
        padding: 0 24px;
    }
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
    transition: var(--transition-normal);
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 42px;
    width: 42px;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition-normal);
}

@media (min-width: 768px) {
.logo-img {
    height: 50px;
    width: 50px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .logo-main {
        font-size: 1.6rem;
    }
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: var(--font-weight-bold);
    color: var(--accent-orange);
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(255, 107, 53, 0.2);
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .logo-sub {
        font-size: 0.65rem;
    }
}

/* Sidebar Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation Menu - Sidebar Style */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 0 40px;
    gap: 0;
    list-style: none;
    margin: 0;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    box-shadow: 6px 0 30px rgba(0, 0, 0, 0.15);
    -webkit-overflow-scrolling: touch;
    border-right: 2px solid rgba(255, 107, 53, 0.1);
}

.nav-menu.active {
    transform: translateX(0);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0.8;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Sidebar Navigation Links */
.nav-menu .nav-link {
    display: block !important;
    width: 100% !important;
    padding: 18px 32px !important;
    color: var(--text-dark) !important;
    text-decoration: none !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-left: 3px solid transparent !important;
    position: relative !important;
    border-radius: 0 8px 8px 0 !important;
    margin: 2px 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link:focus {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.04) 100%) !important;
    color: var(--accent-orange) !important;
    border-left-color: var(--accent-orange) !important;
    padding-left: 36px !important;
    transform: translateX(4px) !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15) !important;
    opacity: 1 !important;
}

.nav-menu .nav-cta {
    display: block !important;
    width: calc(100% - 64px) !important;
    margin: 24px 32px 0 !important;
    padding: 16px 24px !important;
    background: #ff6b35 !important;
    background-color: #ff6b35 !important;
    color: #ffffff !important;
    text-align: center !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
    border: 2px solid #ff6b35 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1001 !important;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus {
    background: var(--accent-orange-hover) !important;
    background-color: var(--accent-orange-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    color: var(--text-dark) !important; /* Change text color to dark on hover */
    opacity: 1 !important;
}

@media (min-width: 768px) {
    .menu-overlay {
        display: none;
    }
    
    .nav-menu {
        position: absolute;
        top: 0;
        right: 0;
        height: 80px;
        width: auto;
        max-width: none;
        flex-direction: row;
    align-items: center;
        background: transparent;
        padding: 0 24px;
        gap: 32px;
        transform: none;
        opacity: 1;
        visibility: visible;
        overflow: visible;
        box-shadow: none;
        bottom: auto;
        left: auto;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        gap: 40px;
    }
}

.nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 32px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    font-size: 1.05rem;
    transition: var(--transition-normal);
    position: relative;
    border-left: 3px solid transparent;
}

.nav-link:hover {
    color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.08);
    border-left-color: var(--accent-orange);
}

@media (min-width: 768px) {
    .nav-link {
        width: auto;
        padding: 8px 0;
        font-size: 0.95rem;
        background: transparent !important;
}

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

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 64px);
    margin: 16px 32px 0;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--accent-orange-hover) 0%, #e55a2b 100%);
}

@media (min-width: 768px) {
    .nav-cta {
        width: auto;
        max-width: none;
        padding: 12px 24px;
        margin: 0;
        font-size: 0.9rem;
    }
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 10px;
    gap: 6px;
    position: relative;
    transition: var(--transition-normal);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.hamburger:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.2);
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--primary-blue);
    border-radius: 1px;
    transition: var(--transition-normal);
    transform-origin: center;
    pointer-events: none;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

/* ============================================
   HERO SECTION - Mobile First
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
}

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

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 95, 0.92) 0%,
        rgba(30, 58, 95, 0.85) 50%,
        rgba(44, 82, 130, 0.8) 100%
    );
}

@media (min-width: 768px) {
    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(30, 58, 95, 0.88) 0%,
            rgba(30, 58, 95, 0.75) 50%,
            rgba(44, 82, 130, 0.7) 100%
        );
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        padding: 0 32px;
    }
}

.hero-text {
    text-align: center;
    color: var(--white);
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--accent-orange);
    text-shadow: 0 2px 15px rgba(255, 107, 53, 0.4);
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
    flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn i {
    font-size: 0.9em;
    transition: transform var(--transition-normal);
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-orange);
    width: 100%;
    max-width: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.45);
}

@media (min-width: 480px) {
    .btn-primary {
        width: auto;
        max-width: none;
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 300px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@media (min-width: 480px) {
    .btn-secondary {
        width: auto;
        max-width: none;
    }
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    width: 100%;
    max-width: 300px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

@media (min-width: 480px) {
    .btn-outline {
        width: auto;
        max-width: none;
    }
}

.btn-full {
    width: 100%;
}

/* Hero Visual - Service Icons */
.hero-visual {
    display: none;
}

@media (min-width: 768px) {
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    }
}

.service-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 320px;
}

.icon-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.icon-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.icon-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: var(--accent-orange);
}

.icon-card span {
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.95;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
.section-header {
        margin-bottom: 64px;
    }
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-blue);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.title-decoration {
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 0 auto;
    border-radius: var(--radius-full);
}

@media (min-width: 768px) {
    .title-decoration {
        width: 80px;
    }
}

/* ============================================
   SERVICES SECTION - Mobile First
   ============================================ */
.services {
    padding: var(--section-padding-mobile);
    background: var(--light-gray);
}

@media (min-width: 768px) {
    .services {
        padding: var(--section-padding-tablet);
    }
}

@media (min-width: 1024px) {
    .services {
        padding: var(--section-padding-desktop);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(30, 58, 95, 0.06);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

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

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

@media (min-width: 768px) {
    .service-card {
        padding: 32px;
}
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-orange);
}

.service-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

@media (min-width: 768px) {
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-icon i {
    font-size: 1.4rem;
    }
}

.service-header h3 {
    font-size: 1.15rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .service-header h3 {
        font-size: 1.25rem;
    }
}

.service-description {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

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

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-features li i {
    color: var(--accent-green);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-cta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(30, 58, 95, 0.08);
}

.service-cta .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* ============================================
   GALLERY SECTION - Mobile First
   ============================================ */
.gallery {
    padding: var(--section-padding-mobile);
    background: var(--white);
}

@media (min-width: 768px) {
    .gallery {
        padding: var(--section-padding-tablet);
    }
}

@media (min-width: 1024px) {
    .gallery {
        padding: var(--section-padding-desktop);
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        gap: 24px;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

@media (min-width: 768px) {
    .gallery-item {
        aspect-ratio: 4/3;
        border-radius: var(--radius-xl);
    }
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 58, 95, 0.95) 0%,
        rgba(30, 58, 95, 0.6) 40%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 767px) {
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(30, 58, 95, 0.9) 0%,
            transparent 60%
        );
        padding: 12px;
    }
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .gallery-overlay h3 {
        font-size: 1.15rem;
    }
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    display: none;
}

@media (min-width: 768px) {
    .gallery-overlay p {
        display: block;
        font-size: 0.9rem;
    }
}

/* ============================================
   ABOUT SECTION - Mobile First
   ============================================ */
.about {
    padding: var(--section-padding-mobile);
    background: var(--white);
}

@media (min-width: 768px) {
    .about {
        padding: var(--section-padding-tablet);
}
}

@media (min-width: 1024px) {
    .about {
        padding: var(--section-padding-desktop);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
.about-content {
    grid-template-columns: 1fr 1fr;
        gap: 60px;
    align-items: start;
    }
}

.about-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.25;
}

.about-lead {
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    color: var(--accent-orange);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-description {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .stats-grid {
        gap: 20px;
    }
}

.stat-item {
    text-align: center;
    padding: 20px 12px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--medium-gray);
    font-weight: var(--font-weight-medium);
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.85rem;
}
}

/* About Features */
.about-features h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-orange);
}

.feature-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* About Images */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

@media (min-width: 768px) {
    .about-image img {
        height: 200px;
    }
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   QUOTE SECTION - Mobile First
   ============================================ */
.quote {
    position: relative;
    padding: var(--section-padding-mobile);
    color: var(--white);
    overflow: hidden;
}

@media (min-width: 768px) {
    .quote {
        padding: var(--section-padding-tablet);
    }
}

@media (min-width: 1024px) {
    .quote {
        padding: var(--section-padding-desktop);
    }
}

.quote-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.quote-image {
    position: absolute;
    inset: 0;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 95, 0.95) 0%,
        rgba(30, 58, 95, 0.88) 100%
    );
}

.quote-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.quote-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.quote-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-orange);
    top: -100px;
    right: -100px;
}

.quote-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-green);
    bottom: -50px;
    left: -50px;
}

.quote-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .quote-content {
    grid-template-columns: 1fr 1fr;
        gap: 60px;
    align-items: center;
    }
}

.quote-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.quote-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .quote-description {
        font-size: 1.1rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.1rem;
    color: var(--accent-orange);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    opacity: 0.75;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
}

/* ============================================
   FORM STYLES - Mobile First
   ============================================ */
.quote-form-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
    .quote-form-container {
        padding: 32px;
    }
}

@media (min-width: 768px) {
    .quote-form-container {
    padding: 40px;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-title {
    font-size: 1.35rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 8px;
}

@media (min-width: 768px) {
.form-title {
    font-size: 1.5rem;
    }
}

.form-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

.form-section {
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .form-section {
        padding: 24px;
        margin-bottom: 28px;
    }
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--accent-orange);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .form-section-title {
        font-size: 1.1rem;
    }
}

.form-section-title i {
    font-size: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    padding: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 480px) {
    .form-row-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .form-row-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 8px;
    color: var(--white);
}

.form-group label .required {
    color: #ff6b6b;
    font-weight: var(--font-weight-bold);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-group select option {
    background: var(--primary-blue);
    color: var(--white);
}

.field-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 6px;
    font-style: italic;
}

/* Terms Section */
.terms-section {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--accent-orange);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Footer */
.form-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .form-trust-badges {
        flex-direction: row;
    justify-content: center;
        gap: 24px;
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-badge i {
    color: var(--accent-green);
    font-size: 1rem;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

.form-note i {
    color: var(--accent-orange);
}

.btn-submit {
    font-size: 1.1rem;
    padding: 16px 32px;
    margin-bottom: 0;
}

.disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.disclaimer i {
    color: var(--accent-green);
}

/* Button States */
#submit-text {
    transition: var(--transition-normal);
}

.btn.loading {
    background: linear-gradient(135deg, #6c757d, #5a6268) !important;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

.btn.success {
    background: var(--gradient-green) !important;
}

.btn.error {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ============================================
   CONTACT SECTION - Mobile First
   ============================================ */
.contact {
    padding: var(--section-padding-mobile);
    background: var(--light-gray);
}

@media (min-width: 768px) {
    .contact {
        padding: var(--section-padding-tablet);
    }
}

@media (min-width: 1024px) {
    .contact {
        padding: var(--section-padding-desktop);
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(30, 58, 95, 0.06);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .contact-card {
        padding: 36px;
    }
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-orange);
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.15rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-areas {
    list-style: none;
    text-align: left;
}

.service-areas li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.service-areas li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.business-hours {
    text-align: left;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
    font-size: 0.9rem;
}

.hour-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: var(--font-weight-medium);
    color: var(--primary-blue);
}

.time {
    color: var(--medium-gray);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: var(--medium-gray);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.contact-method:hover {
    background: rgba(255, 107, 53, 0.08);
    color: var(--accent-orange);
    transform: translateX(4px);
}

.contact-method i {
    color: var(--accent-orange);
    width: 20px;
    flex-shrink: 0;
}

/* ============================================
   FOOTER - Mobile First
   ============================================ */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 48px 0 24px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

@media (min-width: 768px) {
    .footer {
        padding: 64px 0 32px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
        gap: 40px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .footer-logo {
        justify-content: flex-start;
    }
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 640px) {
    .footer-contact-item {
        justify-content: flex-start;
    }
}

.footer-contact-item i {
    color: var(--accent-orange);
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
    }
    
.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
    }
    
/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    }
    
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    }
    
::-webkit-scrollbar-track {
    background: var(--light-gray);
    }
    
::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-orange);
    }
    
/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
    
.hidden { display: none !important; }
.visible { display: block !important; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    }
    
/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
    }
    
/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-visual,
    .hamburger,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        min-height: auto;
        padding: 20px 0;
    }
}

.mt-4 { margin-top: 2rem; }