/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1768995888
Updated: 2026-01-21 11:44:48

*/

/* ============================================
   ASPEN AIR CONDITIONING - Main Stylesheet
   Commercial HVAC Website - WordPress Ready
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Professional Blue Palette */
    --primary-800: #0a2540;
    --primary-700: #0d3050;
    --primary-600: #0f4c75;
    --primary-500: #1a73e8;
    --primary-400: #4a90e2;
    --primary-300: #7cb3f0;
    --primary-200: #b3d4fc;
    --primary-100: #e3f2fd;
    
    /* Accent Colors - Energy/Action */
    --accent-500: #ff6b35;
    --accent-600: #e55a2b;
    --accent-400: #ff8a5c;
    
    /* Neutral Colors */
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    
    /* Success/Trust Colors */
    --success-500: #22c55e;
    --success-100: #dcfce7;
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: var(--space-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: var(--white);
    border-color: var(--primary-500);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-600);
    border-color: var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--primary-500);
}

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Top Bar */
.top-bar {
    background: var(--primary-800);
    color: var(--gray-300);
    font-size: 0.875rem;
    padding: var(--space-sm) 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.top-bar .location,
.top-bar .hours {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.top-bar .phone-link {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--white);
    font-weight: 600;
}

.top-bar .phone-link:hover {
    color: var(--primary-300);
}

.top-bar .divider {
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .top-bar .location {
        display: none;
    }
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-mark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.logo-icon {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    font-weight: 400;
}

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

.logo-name {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-800);
    letter-spacing: 0.05em;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.625rem;
    color: var(--gray-500);
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-500);
    transition: width var(--transition-normal);
}

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

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.dropdown-menu li a:hover {
    background: var(--gray-100);
}

.dropdown-menu li a::after {
    display: none;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all var(--transition-fast);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 50%, var(--primary-600) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.badge-icon {
    color: var(--accent-400);
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-200);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--primary-300);
    margin-top: var(--space-xs);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
}

/* Section Styles */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    max-width: 700px;
    margin-bottom: var(--space-3xl);
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-500);
    background: var(--primary-100);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Services Section */
.services {
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
}

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

.service-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
    color: var(--white);
}

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

.service-card.featured p {
    color: var(--primary-200);
}

.service-card.featured .service-icon svg {
    stroke: var(--primary-300);
}

.service-card.highlight {
    border: 2px solid var(--primary-500);
}

.service-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--success-100);
    color: var(--success-500);
    font-size: 0.75rem;
    font-weight: 700;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.1);
}

.service-icon svg {
    stroke: var(--primary-600);
}

.service-card h3 {
    margin-bottom: var(--space-md);
}

.service-features {
    margin: var(--space-lg) 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.service-features li {
    font-size: 0.875rem;
    color: var(--primary-200);
    padding-left: var(--space-md);
    position: relative;
}

.service-features li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--primary-400);
}

.service-highlight-box {
    background: var(--primary-100);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.highlight-value {
    font-weight: 700;
    color: var(--primary-700);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--primary-500);
    margin-top: var(--space-md);
}

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

.service-link:hover {
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .service-card.featured {
        grid-column: span 1;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

/* Why Us Section */
.why-us {
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.why-us-content h2 {
    margin-bottom: var(--space-lg);
}

.why-us-content > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--space-2xl);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.benefit {
    display: flex;
    gap: var(--space-lg);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    stroke: var(--primary-600);
}

.benefit-content h4 {
    margin-bottom: var(--space-xs);
    color: var(--gray-800);
}

.benefit-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

.why-us-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary-500);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: var(--space-xl);
    right: -40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-600);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .why-us-image {
        order: -1;
    }
    
    .experience-badge {
        right: var(--space-lg);
    }
}

/* Project Types Section */
.project-types {
    background: var(--gray-50);
}

.project-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.project-type {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.project-type:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.project-type-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.project-type h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.project-type p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.project-cta {
    text-align: center;
}

@media (max-width: 1024px) {
    .project-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .project-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Areas Section */
.service-areas {
    background: var(--white);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.service-areas-content h2 {
    margin-bottom: var(--space-md);
}

.service-areas-content > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.areas-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.area-column h4 {
    color: var(--primary-700);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary-100);
}

.area-column ul li {
    padding: var(--space-xs) 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.service-areas-map {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--gray-100);
}

.map-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--gray-50) 100%);
}

.map-overlay {
    text-align: center;
    padding: var(--space-xl);
}

.map-overlay span {
    display: block;
    font-weight: 700;
    color: var(--primary-700);
    margin-bottom: var(--space-xs);
}

.map-overlay p {
    color: var(--gray-500);
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.125rem;
    color: var(--primary-200);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-mark {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-logo .logo-name {
    color: var(--white);
    font-size: 1.125rem;
}

.footer-logo .logo-tagline {
    color: var(--gray-500);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact a,
.footer-contact span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

.footer-links ul li {
    margin-bottom: var(--space-sm);
}

.footer-links ul li a {
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: var(--space-sm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .top-bar,
    .nav-cta,
    .mobile-menu-toggle,
    .cta-section,
    .hero-ctas {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero h1 {
        color: var(--gray-900);
    }
    
    .hero-subtitle {
        color: var(--gray-700);
    }
}