/**
 * TIME TRAVELING - Premium Styles (Light theme)
 * Primary: #32615E | White to teal | Bright & clean
 */

:root {
    --primary: #32615E;
    --primary-light: #4a7572;
    --primary-dark: #264947;
    --accent: #5a9c98;
    --accent-glow: rgba(50, 97, 94, 0.2);
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(50, 97, 94, 0.12);
    --glass-strong: rgba(255, 255, 255, 0.95);
    --bg-dark: #ffffff;
    --bg-mid: #f5f9f9;
    --bg-soft: #eef5f4;
    --text: #1a2d2b;
    --text-muted: #4a6563;
    --shadow: 0 25px 50px -12px rgba(50, 97, 94, 0.15);
    --shadow-soft: 0 10px 40px -10px rgba(50, 97, 94, 0.12);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-lg: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background: bright gradient between white and primary */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 40%, rgba(238, 245, 244, 0.6) 100%),
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(50, 97, 94, 0.08), transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 60%, rgba(90, 156, 152, 0.06), transparent 45%),
        radial-gradient(ellipse 50% 30% at 0% 70%, rgba(50, 97, 94, 0.06), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 1.5rem;
    transition: background var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 24px rgba(50, 97, 94, 0.06);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    display: block;
    max-height: 44px;
    width: auto;
    object-fit: contain;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    position: relative;
    transition: color var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-flyplane {
    position: absolute;
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.5;
    display: block;
    will-change: transform;
}

.hero-flyplane-1 {
    top: 18%;
    left: 0;
    animation: heroPlane1 6s linear infinite;
}

.hero-flyplane-2 {
    top: 52%;
    left: 0;
    animation: heroPlane2 7s linear infinite;
    animation-delay: -3s;
}

.hero-flyplane-3 {
    top: 82%;
    left: 0;
    font-size: 2rem;
    animation: heroPlane3 8s linear infinite;
    animation-delay: -6s;
}

@keyframes heroPlane1 {
    0% { transform: translateX(-100px) rotate(-15deg); opacity: 0.5; }
    100% { transform: translateX(calc(100vw + 100px)) rotate(-12deg); opacity: 0.5; }
}

@keyframes heroPlane2 {
    0% { transform: translateX(-80px) rotate(10deg) scaleX(-1); opacity: 0.5; }
    100% { transform: translateX(calc(100vw + 80px)) rotate(8deg) scaleX(-1); opacity: 0.5; }
}

@keyframes heroPlane3 {
    0% { transform: translateX(-60px) rotate(-5deg); opacity: 0.45; }
    100% { transform: translateX(calc(100vw + 60px)) rotate(-8deg); opacity: 0.45; }
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease-out;
    box-shadow: var(--shadow-soft);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    animation: fadeUp 0.8s ease-out 0.1s both;
}

.hero-title .line {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeUp 0.8s ease-out 0.3s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    border: none;
    box-shadow: 0 10px 40px rgba(50, 97, 94, 0.25);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: fadeUp 0.8s ease-out 0.4s both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(50, 97, 94, 0.35);
}

/* 3D Globe / timeline concept in hero */
.hero-visual {
    position: absolute;
    width: min(90vw, 500px);
    height: min(90vw, 500px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    perspective: 1000px;
}

.globe-orb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(238,245,244,0.5) 50%, rgba(50, 97, 94, 0.08) 100%);
    border: 1px solid var(--glass-border);
    position: relative;
    animation: globeFloat 20s ease-in-out infinite;
    transform-style: preserve-3d;
    box-shadow: 0 0 60px rgba(50, 97, 94, 0.08);
}

.globe-orb::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0.4;
    animation: globePulse 4s ease-in-out infinite;
}

.orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 110%;
    height: 110%;
    margin-left: -55%;
    margin-top: -55%;
    border: 1px solid rgba(50, 97, 94, 0.2);
    border-radius: 50%;
    animation: orbitRotate 25s linear infinite;
}

.orbit-ring:nth-child(2) { width: 130%; height: 130%; margin-left: -65%; margin-top: -65%; animation-duration: 30s; animation-direction: reverse; }
.orbit-ring:nth-child(3) { width: 150%; height: 150%; margin-left: -75%; margin-top: -75%; animation-duration: 35s; }

@keyframes globeFloat {
    0%, 100% { transform: translate(-50%, -50%) rotateY(0deg) rotateX(5deg); }
    50% { transform: translate(-50%, -50%) rotateY(180deg) rotateX(-5deg); }
}

@keyframes globePulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.02); }
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SECTIONS ========== */
.section {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ========== COUNTERS ========== */
.counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.counter-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-soft);
}

.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.counter-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.counter-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========== FEATURED / CARDS ========== */
.section-featured {
    position: relative;
    overflow: hidden;
    perspective: 1200px;
}

.featured-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    min-height: 400px;
}

.featured-flyplane {
    position: absolute;
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.45;
    display: block;
    will-change: transform;
}

.featured-flyplane-1 {
    top: 15%;
    left: 0;
    animation: planeFly1 6s linear infinite;
}

.featured-flyplane-2 {
    top: 55%;
    left: 0;
    animation: planeFly2 7s linear infinite;
    animation-delay: -3s;
}

.featured-flyplane-3 {
    top: 80%;
    left: 0;
    font-size: 2rem;
    animation: planeFly3 8s linear infinite;
    animation-delay: -6s;
}

@keyframes planeFly1 {
    0% { transform: translateX(-100px) rotate(-15deg); opacity: 0.55; }
    100% { transform: translateX(calc(100% + 100px)) rotate(-12deg); opacity: 0.55; }
}

@keyframes planeFly2 {
    0% { transform: translateX(-100px) rotate(10deg) scaleX(-1); opacity: 0.55; }
    100% { transform: translateX(calc(100% + 100px)) rotate(8deg) scaleX(-1); opacity: 0.55; }
}

@keyframes planeFly3 {
    0% { transform: translateX(-80px) rotate(-5deg); opacity: 0.5; }
    100% { transform: translateX(calc(100% + 80px)) rotate(-8deg); opacity: 0.5; }
}

.section-featured .section-inner {
    position: relative;
    z-index: 1;
}

.featured-card {
    animation: cardFloat 6s ease-in-out infinite;
}

.featured-card:nth-child(2) { animation-delay: -2s; }
.featured-card:nth-child(3) { animation-delay: -4s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-4px) rotateX(1deg); }
}

.featured-card:hover {
    animation: none;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.featured-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform var(--transition), border-color var(--transition);
    transform-style: preserve-3d;
    box-shadow: var(--shadow-soft);
}

.featured-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(2deg);
    border-color: rgba(50, 97, 94, 0.25);
    box-shadow: var(--shadow);
}

.featured-card .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #fff;
}
.featured-card .icon-wrap .service-icon-fa {
    font-size: 1.5rem;
    color: #fff;
}

.featured-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.featured-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== SERVICES PAGE ========== */
.section-services-animated {
    position: relative;
    overflow: hidden;
    perspective: 1200px;
}

.services-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.services-flyplane {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.45;
    display: block;
    will-change: transform;
}

.services-flyplane-1 {
    top: 12%;
    left: 0;
    animation: servicesPlane1 6s linear infinite;
}

.services-flyplane-2 {
    top: 50%;
    left: 0;
    animation: servicesPlane2 7s linear infinite;
    animation-delay: -3s;
}

.services-flyplane-3 {
    top: 78%;
    left: 0;
    font-size: 1.5rem;
    animation: servicesPlane3 8s linear infinite;
    animation-delay: -6s;
}

@keyframes servicesPlane1 {
    0% { transform: translateX(-100px) rotate(-15deg); opacity: 0.45; }
    100% { transform: translateX(calc(100% + 100px)) rotate(-12deg); opacity: 0.45; }
}

@keyframes servicesPlane2 {
    0% { transform: translateX(-80px) rotate(10deg) scaleX(-1); opacity: 0.45; }
    100% { transform: translateX(calc(100% + 80px)) rotate(8deg) scaleX(-1); opacity: 0.45; }
}

@keyframes servicesPlane3 {
    0% { transform: translateX(-60px) rotate(-5deg); opacity: 0.4; }
    100% { transform: translateX(calc(100% + 60px)) rotate(-8deg); opacity: 0.4; }
}

.section-services-animated .section-inner {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1.5rem 0;
}

.service-card {
    min-width: 0;
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-10px) rotateY(3deg) rotateX(-2deg);
    box-shadow: var(--shadow);
    border-color: rgba(50, 97, 94, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .service-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: #fff;
}
.service-card .service-icon .service-icon-fa {
    font-size: 1rem;
    color: #fff;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    flex-shrink: 0;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.service-card p::-webkit-scrollbar {
    width: 4px;
}

.service-card p::-webkit-scrollbar-track {
    background: rgba(50, 97, 94, 0.08);
    border-radius: 4px;
}

.service-card p::-webkit-scrollbar-thumb {
    background: rgba(50, 97, 94, 0.25);
    border-radius: 4px;
}

.service-card h3,
.service-card p {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* ========== ABOUT PAGE ========== */
.about-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 4rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 4rem;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: 16px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== CONTACT PAGE ========== */
.contact-layout {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    padding: 0 1.5rem 4rem;
}

.contact-info {
    min-width: 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info p,
.contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: color var(--transition);
    overflow-wrap: break-word;
    word-wrap: break-word;
    flex-wrap: wrap;
}

.contact-info a:hover {
    color: var(--primary);
}

.contact-info .fa-solid,
.contact-info .fa-brands {
    font-size: 1.1rem;
    width: 1.25rem;
    text-align: center;
}

.contact-form-wrap {
    min-width: 0;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(50, 97, 94, 0.3);
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    display: none;
}

.form-message.success { background: rgba(34, 197, 94, 0.12); color: #15803d; display: block; }
.form-message.error { background: rgba(239, 68, 68, 0.12); color: #b91c1c; display: block; }

/* ========== FOOTER ========== */
.site-footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-soft);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 1rem 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--primary);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem 3rem;
    }
    
    .contact-info,
    .contact-form-wrap {
        padding: 1.5rem;
    }
    
    .counters {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2.5rem 1rem;
    }
    
    .contact-layout {
        padding: 0 1rem 2rem;
        gap: 1.5rem;
    }
    
    .contact-info,
    .contact-form-wrap {
        padding: 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p,
    .contact-info a {
        font-size: 0.9rem;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-form label {
        font-size: 0.9rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.875rem 1rem;
        font-size: 16px;
        margin-bottom: 1rem;
    }
    
    .contact-form textarea {
        min-height: 100px;
    }
    
    .contact-form button {
        padding: 0.875rem 1.5rem;
    }
    
    .hero-flyplane {
        font-size: 1.5rem;
        opacity: 0.35;
    }
    
    .hero-flyplane-3 {
        font-size: 1.2rem;
    }
    
    .services-flyplane {
        font-size: 1.25rem;
        opacity: 0.3;
    }
    
    .services-flyplane-3 {
        font-size: 1rem;
    }
    
    .site-header {
        padding: 0.75rem 1rem;
    }
    
    .services-grid {
        gap: 0.75rem;
    }
    
    .service-card {
        padding: 0.75rem;
    }
    
    .service-card .service-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.3rem;
    }
    
    .service-card .service-icon .service-icon-fa {
        font-size: 0.85rem;
    }
    
    .service-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .service-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

@media (max-width: 360px) {
    .hero-flyplane {
        font-size: 1.25rem;
        opacity: 0.3;
    }
    
    .hero-flyplane-3 {
        font-size: 1rem;
    }
    
    .services-flyplane {
        font-size: 1rem;
        opacity: 0.25;
    }
    
    .services-flyplane-3 {
        font-size: 0.85rem;
    }
    
    .contact-info,
    .contact-form-wrap {
        padding: 0.75rem;
    }
    
    .contact-layout {
        padding: 0 0.75rem 1.5rem;
    }
    
    
    .service-card {
        padding: 0.6rem;
    }
    
    .service-card .service-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 0.25rem;
    }
    
    .service-card .service-icon .service-icon-fa {
        font-size: 0.75rem;
    }
    
    .service-card h3 {
        font-size: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--glass);
        border-left: 1px solid var(--glass-border);
        padding: 5rem 2rem 2rem;
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(50, 97, 94, 0.08);
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding: 5rem 1.5rem 3rem;
    }
    
    .hero-flyplane {
        font-size: 1.75rem;
        opacity: 0.4;
    }
    
    .hero-flyplane-3 {
        font-size: 1.4rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .services-grid {
        padding: 1rem 0;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card .service-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.35rem;
    }
    
    .service-card .service-icon .service-icon-fa {
        font-size: 0.9rem;
    }
    
    .service-card h3 {
        font-size: 0.95rem;
    }
    
    .service-card p {
        font-size: 0.82rem;
    }
    
    
    .services-flyplane {
        font-size: 1.5rem;
        opacity: 0.35;
    }
    
    .services-flyplane-3 {
        font-size: 1.15rem;
    }
    
    .timeline-dot {
        border-color: #fff;
    }
}

/* ========== PAGE TRANSITIONS ========== */
.main-content {
    animation: pageIn 0.5s ease-out;
}

@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Utility */
.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;
}
