/* ========================================
   ShockWater Pool Equipment & Repair
   Professional Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Professional Blue & Orange */
    --primary-blue: #0066cc;
    --primary-blue-dark: #004999;
    --primary-blue-light: #3385d6;
    --accent-orange: #ff6b35;
    --accent-orange-dark: #e55a2b;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    --danger-red: #ef4444;
    --info-blue: #3b82f6;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ========================================
   Base Styles & Reset
   ======================================== */

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

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

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Scroll margin for smooth anchor navigation with fixed header */
section[id] {
    scroll-margin-top: 150px;
}

/* ========================================
   Typography
   ======================================== */

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* ========================================
   Container & Layout
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ========================================
   Header & Navigation
   ======================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
}

.navbar {
    padding: 0.75rem 0;
}

.nav-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-wrapper-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary-blue);
    padding: 0.5rem 0;
    flex-wrap: nowrap;
}

.logo i {
    font-size: 1.75rem;
}

.logo-text strong {
    font-weight: 800;
}

.logo-tagline {
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 600;
    color: rgba(0, 160, 233, 0.7);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.65) 0%, rgba(0, 160, 233, 0.75) 50%, rgba(0, 153, 255, 0.65) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
    filter: drop-shadow(0 1px 3px rgba(0, 160, 233, 0.3));
    white-space: nowrap;
    opacity: 1;
    flex-shrink: 0;
}

.logo-image {
    height: 90px;
    width: auto;
    display: block;
    transition: transform var(--transition-fast);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

@media (max-width: 1024px) {
    .logo-image {
        height: 70px;
    }
    
    .logo-tagline {
        font-size: 1.4rem;
    }
    
    .logo {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .logo {
        gap: 0.75rem;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .logo-image {
        height: 60px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    padding: 0.5rem 0;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
    }
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--transition-fast);
}

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

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-orange);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-phone:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.5rem;
    background: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-xl);
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        border-top: none;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-phone {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 64, 128, 0.95) 100%), 
                url('../images/premium-pool-maintenance.jpg') center center / cover no-repeat;
    padding-top: 280px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: var(--spacing-2xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    color: white;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle-lines {
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle-line {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    color: white;
}

.hero-subtitle-line:last-child {
    margin-bottom: 0;
}

.hero-subtitle strong {
    color: var(--accent-orange);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 180px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-emergency {
    background: var(--danger-red);
    color: white;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.btn-emergency:hover {
    background: #dc2626;
    animation: none;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

@media (max-width: 768px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   Emergency Banner
   ======================================== */

.emergency-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 1.25rem 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.emergency-content i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.emergency-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.emergency-text strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.emergency-text span {
    font-size: 0.95rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .emergency-content {
        justify-content: center;
        text-align: center;
    }
    
    .emergency-text {
        width: 100%;
    }
    
    .btn-emergency {
        width: 100%;
    }
}

/* ========================================
   Same Technician Feature Section
   ======================================== */

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

.same-tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.same-tech-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.same-tech-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

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

.same-tech-text {
    padding: 2rem 0;
}

.badge-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.same-tech-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .same-tech-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .same-tech-image {
        order: 1;
    }
    
    .same-tech-text {
        order: 2;
        padding: 0;
    }
}

/* ========================================
   Section Styles
   ======================================== */

section {
    padding: var(--spacing-3xl) 0;
}

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

.section-title {
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

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

/* ========================================
   Services Section
   ======================================== */

.services-section {
    background: var(--gray-50);
}

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

.service-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

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

.service-card.featured {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-orange);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-icon.pump { background: linear-gradient(135deg, #0066cc, #3385d6); }
.service-icon.service { background: linear-gradient(135deg, #0066cc, #00a0e9); }
.service-icon.filter { background: linear-gradient(135deg, #10b981, #34d399); }
.service-icon.heater { background: linear-gradient(135deg, #ef4444, #f87171); }
.service-icon.salt { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.service-icon.automation { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.service-icon.leak { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
.service-icon.lights { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.service-icon.upgrade { background: linear-gradient(135deg, #ff6b35, #ff8c5a); }

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

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

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

.service-title {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-list {
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.service-list i {
    color: var(--success-green);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--primary-blue-dark);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* ========================================
   Gallery Section
   ======================================== */

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

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

.gallery-large {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    aspect-ratio: 16 / 10;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-content h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-large {
        grid-column: span 1;
    }
    
    .gallery-item {
        aspect-ratio: 16 / 11;
    }
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing-section {
    background: white;
}

.pricing-highlight {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.pricing-main {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.pricing-details h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.price-range {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.pricing-details > p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.pricing-features {
    display: grid;
    gap: 0.75rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    color: var(--success-green);
    font-size: 1.25rem;
}

.pricing-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-blue);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pricing-note i {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.pricing-note p {
    margin: 0;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .pricing-main {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .price-range {
        font-size: 2rem;
    }
}

/* ========================================
   Why Us Section
   ======================================== */

.why-us-section {
    background: white;
}

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

.why-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    background: white;
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.why-card h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.why-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========================================
   Service Area Section
   ======================================== */

.service-area-section {
    background: var(--gray-50);
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-area-map {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: var(--radius-lg);
    color: white;
    min-height: 400px;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.map-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
}

.service-area-list h3 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.area-item:hover {
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.area-item i {
    color: var(--accent-orange);
    font-size: 1.25rem;
}

.area-item strong {
    font-size: 1.125rem;
    color: var(--gray-900);
}

.area-item span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.service-area-note {
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-yellow);
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-area-note i {
    color: var(--warning-yellow);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-area-note p {
    margin: 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .area-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
    background: white;
}

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

.testimonial-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    background: white;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--warning-yellow);
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: white;
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ========================================
   Contact Section
   ======================================== */

.contact-section {
    background: var(--gray-50);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
    font-weight: 600;
}

.contact-item a {
    color: var(--primary-blue);
    font-weight: 500;
}

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

.contact-item p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
}

.badge-item i {
    font-size: 2rem;
    color: var(--success-green);
}

.badge-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-align: center;
    margin: 0;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* ========================================
   Tagline Banner
   ======================================== */

.tagline-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tagline-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.tagline-text {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .tagline-banner {
        padding: 3rem 0;
    }
    
    .tagline-text {
        font-size: 2rem;
        line-height: 1.2;
    }
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 120px;
    width: auto;
    display: block;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-fast);
}

.footer-logo-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.footer-logo i {
    font-size: 1.75rem;
    color: var(--accent-orange);
}

.footer-tagline {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

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

.footer-contact li {
    display: flex;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--accent-orange);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-800);
    color: var(--gray-500);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-disclaimer {
    font-size: 0.9rem;
}

/* ========================================
   Back to Top Button
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-3px);
}

/* ========================================
   Animations
   ======================================== */

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

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

/* ========================================
   Utility Classes
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

/* ========================================
   Responsive Design Adjustments
   ======================================== */

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-item {
        width: 100%;
    }
}