:root {
    /* Aviation-Inspired Color Palette */
    --navy-deep: #0B1F3F;
    --navy-mid: #1A3A5C;
    --sky-blue: #3B82F6;
    --sky-light: #60A5FA;
    --sky-pale: #DBEAFE;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-light: #E2E8F0;
    --gray-mid: #64748B;
    --gray-dark: #475569;
    --accent-gold: #F59E0B;
    --success: #10B981;
    
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(11, 31, 63, 0.1);
    --shadow-md: 0 4px 12px rgba(11, 31, 63, 0.15);
    --shadow-lg: 0 10px 30px rgba(11, 31, 63, 0.2);
    --shadow-xl: 0 20px 50px rgba(11, 31, 63, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-dark);
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition-base);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: auto;
    width: 140px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: var(--space-xl);
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--navy-mid);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sky-blue);
    transition: var(--transition-base);
}

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

.nav-cta {
    background: var(--sky-blue);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: var(--transition-fast);
}

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

.nav-cta:hover {
    background: var(--sky-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy-deep);
    transition: var(--transition-base);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 31, 63, 0.82) 0%,
        rgba(26, 58, 92, 0.7) 50%,
        rgba(11, 31, 63, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    text-align: center;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(8px);
    animation: fadeInUp 1s 0.2s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-badge svg {
    color: var(--sky-light);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s 0.3s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-title .highlight {
    color: var(--sky-light);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 1s 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 1s 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.stat {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--sky-light);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

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

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

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

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

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

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

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

.btn.full-width {
    width: 100%;
    justify-content: center;
}

/* Trust Bar */
.trust-bar {
    background: var(--navy-deep);
    color: var(--white);
    padding: var(--space-lg) 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item svg {
    flex-shrink: 0;
    color: var(--sky-light);
}

/* Problem/Solution Section */
.problem-solution {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

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

.problem-box,
.solution-box {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.problem-box {
    border-left: 4px solid var(--navy-mid);
}

.solution-box {
    border-left: 4px solid var(--sky-blue);
}

.box-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.problem-icon {
    background: rgba(26, 58, 92, 0.1);
    color: var(--navy-mid);
}

.solution-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--sky-blue);
}

.problem-box h3,
.solution-box h3 {
    margin-bottom: var(--space-md);
}

.problem-list,
.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.problem-list li,
.solution-list li {
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--navy-mid);
    font-weight: bold;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sky-blue);
    font-weight: bold;
}

/* Gallery Strip */
.gallery-strip {
    overflow: hidden;
    padding: var(--space-lg) 0;
    background: var(--navy-deep);
}

.gallery-track {
    display: flex;
    gap: var(--space-md);
    width: max-content;
    animation: gallery-scroll 40s linear infinite;
}

.gallery-track img {
    height: 200px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes gallery-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-strip:hover .gallery-track {
    animation-play-state: paused;
}

/* Services Section */
.services {
    padding: var(--space-3xl) 0;
}

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

.section-header.centered {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--sky-pale);
    color: var(--sky-blue);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: var(--space-md);
}

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

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

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

.service-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 20px;
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.service-card.featured {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
    color: var(--white);
    border-color: var(--navy-deep);
}

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

.service-badge {
    position: absolute;
    top: -12px;
    right: var(--space-lg);
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gray-light);
    margin-bottom: var(--space-md);
}

.service-card.featured .service-number {
    color: rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--sky-pale);
    color: var(--sky-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

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

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

.service-description {
    color: var(--gray-dark);
    margin-bottom: var(--space-lg);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.service-features li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--gray-dark);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--sky-blue);
    border-radius: 50%;
}

.service-card.featured .service-features li::before {
    background: var(--sky-light);
}

.service-benefit {
    padding: var(--space-md);
    background: var(--off-white);
    border-left: 3px solid var(--sky-blue);
    border-radius: 8px;
    font-size: 0.95rem;
}

.service-card.featured .service-benefit {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--sky-light);
    color: var(--white);
}

/* About Section */
.about {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-text p {
    line-height: 1.8;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: var(--space-md) 0;
}

.about-list li {
    padding-left: 1.75rem;
    position: relative;
}

.about-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sky-blue);
    font-weight: bold;
}

.highlight-text {
    background: var(--sky-pale);
    padding: var(--space-lg);
    border-left: 4px solid var(--sky-blue);
    border-radius: 8px;
    margin: var(--space-lg) 0;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.credential strong {
    color: var(--navy-deep);
    font-weight: 600;
}

.credential span {
    font-size: 0.875rem;
    color: var(--gray-mid);
}

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

.about-photo-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-photo-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.about-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.about-photo-small {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.about-photo-small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

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

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(transparent, rgba(11, 31, 63, 0.8));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
}

.quote-card {
    background: var(--navy-deep);
    color: var(--white);
    padding: var(--space-xl);
    border-radius: 16px;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    opacity: 0.1;
}

.quote-card p {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Why Choose Section */
.why-choose {
    padding: var(--space-3xl) 0;
}

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

.why-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 16px;
    border: 2px solid var(--gray-light);
    transition: var(--transition-base);
    position: relative;
}

.why-card:hover {
    border-color: var(--sky-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 200;
    color: var(--gray-light);
    line-height: 1;
}

.why-card h3 {
    margin-bottom: var(--space-md);
    padding-right: 3rem;
}

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

/* FAQ Section */
.faq-section {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--sky-blue);
    box-shadow: var(--shadow-sm);
}

.faq-item[open] {
    border-color: var(--sky-blue);
    box-shadow: var(--shadow-md);
}

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

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

.faq-question::marker {
    display: none;
    content: '';
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--sky-blue);
    transition: var(--transition-base);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-md);
    color: var(--gray-dark);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--navy-deep);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

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

.cta-content > p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

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

.cta-note {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Contact Section */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
    overflow-x: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-info .lead {
    margin-bottom: var(--space-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-base);
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: var(--sky-pale);
    color: var(--sky-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-label {
    font-size: 0.875rem;
    color: var(--gray-mid);
    font-weight: 500;
}

.method-value {
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 1.125rem;
    word-break: break-word;
}

.business-hours {
    padding: var(--space-lg);
    background: var(--white);
    border-radius: 12px;
}

.business-hours h4 {
    margin-bottom: var(--space-md);
}

.business-hours p {
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.hours-note {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-light);
    font-size: 0.875rem;
    font-style: italic;
    color: var(--gray-mid);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy-deep);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
}

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

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

.form-note {
    font-size: 0.875rem;
    color: var(--gray-mid);
    margin-top: var(--space-md);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

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

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--sky-light);
    padding-left: 0.5rem;
}

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

.footer-contact a {
    color: var(--sky-light);
    text-decoration: none;
}

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

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

.footer-legal {
    font-size: 0.875rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    opacity: 0.7;
}

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

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        width: 120px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-bg-image {
        object-position: 35% 40%;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        padding: var(--space-xl);
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }

    .faq-question {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 var(--space-md) var(--space-sm);
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
    }

    .method-value {
        font-size: 0.95rem;
    }

    .gallery-track img {
        height: 150px;
    }

    .about-photo-main img {
        height: 250px;
    }

    .about-photo-small img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    :root {
        --space-3xl: 3rem;
    }

    .nav-logo {
        width: 110px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Animations and Interactions */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .why-card,
    .contact-method {
        transition: all var(--transition-base);
    }

    .service-card:hover,
    .why-card:hover {
        animation: float 3s ease-in-out infinite;
    }

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

@media (prefers-reduced-motion: reduce) {
    .gallery-track {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .nav,
    .hero,
    .trust-bar,
    .cta-section,
    .footer {
        display: none;
    }
}
