:root {
    --primary: #00A86B;
    --primary-dark: #006d3e;
    --secondary: #1E88E5;
    --accent: #FFA726;
    --success: #4CAF50;
    --danger: #E53935;
    --warning: #FFB300;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --text: #2c3e50;
    --text-light: #555;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, .12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, .15);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, .2);
    --gradient: linear-gradient(135deg, #000620, #764ba2)
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: 'Segoe UI', Trebuchet MS, sans-serif;
    background: #fafbfc;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    padding-top: 65px;
    letter-spacing: .3px
}



#hero-canvas {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100vh + 70px);
    display: block;
    z-index: 0;
    pointer-events: auto;
    transition: opacity .3s ease, transform .3s ease;
    max-height: 100vh; /* Prevent vertical overflow */
    overflow: hidden; /* Clip any excess */
}

@media (max-width: 768px) {
    #hero-canvas {
        height: calc(100vh - 65px);
    }
}

@media (max-width: 480px) {
    #hero-canvas {
        height: 60vh;
        top: 70px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

header {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: slideDown .5s ease;
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem
}

.company-name {
    font-size: 1.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00A86B, #1E88E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.8px
}

.tagline {
    font-size: .7rem;
    color: #888;
    font-style: italic;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600
}

.nav-toggle {
    display: none;
    background: 0;
    border: 0;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: transform .3s
}

.nav-toggle:hover {
    transform: rotate(90deg)
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: all .3s;
    position: relative;
    padding: .7rem 0;
    font-size: .95rem;
    letter-spacing: .2px
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width .3s cubic-bezier(.4, 0, .2, 1)
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

.nav-links a:hover {
    color: var(--primary)
}

.hero {
    background: transparent;
    backdrop-filter: none;
    color: #fff;
    text-align: center;
    padding: 200px 0 150px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(0, 168, 107, .05) 0%, transparent 30%), linear-gradient(180deg, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .15) 50%, rgba(0, 0, 0, .3) 100%);
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.8rem;
    font-weight: 900;
    animation: fadeInUp 1s ease;
    letter-spacing: -1.5px;
    line-height: 1.15
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: .98;
    animation: fadeInUp 1.2s ease;
    font-weight: 300;
    letter-spacing: .5px;
    line-height: 1.6
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
        letter-spacing: -1px;
    }

    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
}

.cta-buttons {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease
}

@media (max-width: 768px) {
    .cta-buttons {
        gap: 1.2rem;
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.transport-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2.5rem
}

@media (max-width: 900px) {
    .transport-modes {
        gap: 1rem;
        margin-bottom: 2rem
    }
}

@media (max-width: 600px) {
    .transport-modes {
        gap: 0.8rem;
        margin-bottom: 1.8rem
    }
}

@media (max-width: 480px) {
    .transport-modes {
        gap: 0.6rem;
        margin-bottom: 1.5rem
    }
}

.transport-toggle {
    background: rgba(255, 255, 255, .95);
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 1.2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    user-select: none;
    position: relative;
    animation: scaleIn .6s ease backwards;
    box-shadow: var(--shadow-sm);
    min-height: 80px;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .transport-toggle {
        padding: 1rem 0.8rem;
        min-height: 70px;
        border-radius: 12px;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .transport-toggle {
        padding: 0.9rem 0.7rem;
        min-height: 65px;
        border-radius: 10px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .transport-toggle {
        padding: 0.8rem 0.6rem;
        min-height: 60px;
        border-radius: 10px;
        max-width: 100%;
    }
}

.transport-toggle:nth-child(1) {
    animation-delay: .05s
}

.transport-toggle:nth-child(2) {
    animation-delay: .1s
}

.transport-toggle:nth-child(3) {
    animation-delay: .15s
}

.transport-toggle:nth-child(4) {
    animation-delay: .2s
}

.transport-toggle:nth-child(5) {
    animation-delay: .25s
}

.transport-toggle:nth-child(6) {
    animation-delay: .3s
}

.transport-toggle:nth-child(7) {
    animation-delay: .35s
}

.transport-toggle:nth-child(8) {
    animation-delay: .4s
}

.transport-toggle:nth-child(9) {
    animation-delay: .45s
}

.transport-toggle:nth-child(10) {
    animation-delay: .5s
}

.transport-toggle:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 168, 107, .2)
}

.transport-toggle.selected {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 168, 107, .3)
}

.transport-toggle .icon {
    font-size: 1.9rem;
    margin-bottom: .7rem;
    display: block
}

.transport-toggle .name {
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
    word-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 768px) {
    .transport-toggle .icon {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .transport-toggle .name {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .transport-toggle .icon {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }

    .transport-toggle .name {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

.transport-toggle.selected .name {
    color: #fff
}

.calculator-step {
    margin-bottom: 2.5rem;
    opacity: .4;
    transition: opacity .4s ease, transform .4s ease;
    transform: translateY(10px)
}

.calculator-step.active {
    opacity: 1;
    transform: translateY(0)
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(0, 168, 107, .35);
    transition: all .3s ease;
    position: relative;
    min-width: 48px;
    min-height: 48px
}

.calculator-step.active .step-number {
    animation: pulse 2s infinite;
    box-shadow: 0 12px 35px rgba(0, 168, 107, .45)
}

.step-number.inactive {
    background: linear-gradient(135deg, #e8e8e8, #f0f0f0);
    box-shadow: var(--shadow-sm);
    color: #999
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.2px
}

.distance-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem
}

.distance-input-group {
    display: none;
    opacity: 0;
    transform: translateY(10px) scale(.95);
    transition: opacity .4s ease, transform .4s ease
}

.distance-input-group.active {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    cursor: pointer;
    border: 0;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    letter-spacing: .3px;
    min-height: 52px;
    touch-action: manipulation;
}

@media (max-width: 768px) {
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-height: 48px;
    }
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s
}

.btn:hover::before {
    width: 350px;
    height: 350px
}

.btn-primary {
    background: linear-gradient(135deg, #00A86B, #006d3e);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 168, 107, .35)
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(0, 168, 107, .45)
}

.btn-secondary {
    border: 2.5px solid #fff;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px)
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary);
    border-color: var(--primary)
}

/* Calculator section parent - override body background */
#travel-calculator {
    background: #fafbfc;
    position: relative;
    z-index: 4;
    padding: 80px 20px 0;
    margin-top: 0
}

.travel-calculator {
    background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(250, 251, 252, .99));
    backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 5rem 6rem;
    margin: -80px auto 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .15);
    animation: slideUp 1s cubic-bezier(.34, 1.56, .64, 1);
    max-width: 1400px;
    border: 1.5px solid rgba(0, 168, 107, .15)
}

.travel-calculator::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: linear-gradient(135deg, rgba(0, 168, 107, .03), rgba(30, 136, 229, .03));
    pointer-events: none
}

.calculator-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2
}

.calculator-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    animation: fadeInUp .8s ease;
    font-weight: 900;
    letter-spacing: -.8px
}

@media (max-width: 768px) {
    .calculator-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .calculator-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
}

.calculator-header h2 i {
    margin-right: .8rem;
    animation: rotateIn 1s ease .2s both
}

.calculator-header p {
    color: #888;
    font-size: 1.15rem;
    animation: fadeInUp 1s ease .1s both;
    font-weight: 400;
    letter-spacing: .2px
}

@media (max-width: 768px) {
    .calculator-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .calculator-header p {
        font-size: 0.9rem;
    }
}

.quick-calc-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.5rem
}

.form-group {
    position: relative
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text);
    font-size: .9rem;
    letter-spacing: .3px;
    text-transform: uppercase
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e8f0ff;
    border-radius: 18px;
    font-size: 1rem;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(248, 249, 250, .98));
    font-weight: 500;
    color: var(--text);
    -webkit-appearance: none;
    appearance: none;
    min-height: 50px;
    box-sizing: border-box;
    touch-action: manipulation;
}

@media (max-width: 768px) {
    .form-group input,
    .form-group select {
        padding: 13px 16px 13px 44px;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .form-group input,
    .form-group select {
        padding: 12px 14px 12px 40px;
        font-size: 16px;
        min-height: 48px;
        border-radius: 12px;
    }
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: #aaa
}

.form-group input:hover,
.form-group select:hover {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 168, 107, .12)
}

.form-group input:focus,
.form-group select:focus {
    outline: 0;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 5px rgba(0, 168, 107, .15), 0 12px 35px rgba(0, 168, 107, .15);
    transform: translateY(-2px)
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    pointer-events: none;
    margin-top: 12px;
    font-size: 1.1rem
}

@media (max-width: 768px) {
    .input-icon {
        left: 14px;
        font-size: 1rem;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .input-icon {
        left: 12px;
        font-size: 0.9rem;
        margin-top: 8px;
    }
}

.calc-button {
    background: linear-gradient(135deg, #00A86B, #006d3e);
    color: #fff;
    border: 0;
    padding: 18px 45px;
    border-radius: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 168, 107, .3);
    letter-spacing: .3px;
    min-height: 56px;
    touch-action: manipulation;
}

@media (max-width: 768px) {
    .calc-button {
        padding: 16px 35px;
        font-size: 1.1rem;
        min-height: 52px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .calc-button {
        padding: 14px 25px;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 14px;
    }
}

.calc-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transform: translateX(-100%);
    transition: transform .6s ease
}

.calc-button:hover::before {
    transform: translateX(100%)
}

.calc-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 168, 107, .4)
}

.calc-button:active {
    transform: translateY(-2px) scale(.98)
}

.quick-results {
    display: none;
    background: linear-gradient(135deg, rgba(0, 168, 107, .08), rgba(30, 136, 229, .08));
    border-radius: 30px;
    padding: 3.5rem;
    margin-top: 3rem;
    text-align: center;
    border: 1.5px solid rgba(0, 168, 107, .15);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    animation: slideInUp .8s ease both;
    position: relative;
    z-index: 2
}

.quick-results h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 900;
    animation: fadeInUp .6s ease .1s both
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0
}

.result-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, .95), #fff);
    padding: 2.2rem 1.8rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 168, 107, .08);
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    animation: slideInUp .8s ease backwards;
    position: relative;
    overflow: hidden
}

.result-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary))
}

.result-item:nth-child(1) {
    animation-delay: .1s
}

.result-item:nth-child(2) {
    animation-delay: .2s
}

.result-item:nth-child(3) {
    animation-delay: .3s
}

.result-item:nth-child(4) {
    animation-delay: .4s
}

.result-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 168, 107, .2)
}

.result-value {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
    font-family: monospace;
    letter-spacing: .5px
}

.result-label {
    font-size: 1rem;
    color: #888;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase
}

.about-section {
    padding: 120px 0 80px;
    background: #fafbfc;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.about-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 168, 107, .06), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite
}

.about-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 136, 229, .06), transparent);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite 1s
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2
}

.about-content {
    text-align: left
}

.about-content h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 900;
    animation: slideInLeft .8s ease;
    position: relative;
    letter-spacing: -.8px
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
}

.about-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    animation: expandWidth 1s ease .3s forwards;
    transform-origin: left
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
    animation: fadeInUp 1s ease .2s both;
    font-weight: 400
}

.about-content p:nth-of-type(2) {
    animation: fadeInUp 1s ease .4s both
}

@media (max-width: 768px) {
    .about-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .about-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
}

.highlight {
    color: var(--primary);
    font-weight: 900
}

.highlight::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    right: -4px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: .25;
    border-radius: 2px
}

.about-video {
    position: relative;
    animation: slideInRight .8s ease;
    width: 100%;
    overflow: hidden
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    transition: all .4s ease
}

.video-wrapper:hover {
    box-shadow: var(--shadow-lg)
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #e0f2ff, #f0e6ff);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all .4s ease
}

.video-placeholder:hover {
    transform: translateY(-8px)
}

.video-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, .1) 50%, transparent 70%);
    animation: shimmer 3s infinite
}

.play-button {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all .3s ease;
    box-shadow: 0 12px 40px rgba(0, 168, 107, .4)
}

.play-button::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: .25;
    animation: pulse 2s infinite;
    z-index: -1
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: 0 20px 50px rgba(0, 168, 107, .5)
}

.services-preview {
    padding: 140px 0;
    background: #000620 !important;
    position: relative;
    overflow: visible;
    isolation: isolate;
    z-index: 2
}

.services-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 6, 32, .3), rgba(0, 6, 32, .5));
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen
}

.services-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 168, 107, .15), rgba(30, 136, 229, .12) 50%, rgba(0, 168, 107, .15));
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: color-dodge
}

.services-preview .container {
    position: relative;
    z-index: 2;
    background: transparent
}

.section-title {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
    z-index: 2
}

.section-title h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #00A86B, #1E88E5, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 900;
    animation: fadeInUp .8s ease;
    letter-spacing: -1px;
    position: relative;
    display: inline-block
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
}

.section-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 90px;
    height: 5px;
    background: #fff;
    border-radius: 3px;
    animation: expandWidth 1s ease .3s forwards;
    transform-origin: center
}

.section-title p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .95);
    animation: fadeInUp 1s ease .2s both;
    font-weight: 300;
    letter-spacing: .3px
}

@media (max-width: 768px) {
    .section-title p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-title p {
        font-size: 0.95rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
}

.service-card {
    background: linear-gradient(135deg, rgba(0, 168, 107, .12), rgba(30, 136, 229, .08));
    backdrop-filter: blur(6px);
    padding: 3rem;
    border-radius: 24px;
    border: 1.5px solid rgba(0, 168, 107, .3);
    transition: all .6s cubic-bezier(.34, 1.56, .64, 1);
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    animation: slideInUp .8s ease backwards;
    box-shadow: 0 12px 40px rgba(0, 168, 107, .15)
}

.service-card:nth-child(1) {
    animation-delay: 0s
}

.service-card:nth-child(2) {
    animation-delay: .15s
}

.service-card:nth-child(3) {
    animation-delay: .3s
}

.service-card:nth-child(4) {
    animation-delay: .45s
}

.service-card:nth-child(5) {
    animation-delay: .6s
}

.service-card:nth-child(6) {
    animation-delay: .75s
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: left .7s ease
}

.service-card:hover::before {
    left: 100%
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity .3s ease
}

.service-card:hover::after {
    opacity: 1
}

.service-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 40px 80px rgba(0, 168, 107, .3);
    border-color: rgba(0, 168, 107, .6);
    background: linear-gradient(135deg, rgba(0, 168, 107, .2), rgba(30, 136, 229, .12))
}

.service-icon {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: all .5s cubic-bezier(.34, 1.56, .64, 1);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .2))
}

.service-card:hover .service-icon {
    transform: scale(1.3) rotate(12deg) translateY(-8px);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, .3))
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
    color: #fff;
    position: relative;
    z-index: 1;
    font-weight: 800;
    letter-spacing: -.3px
}

@media (max-width: 768px) {
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
}

.service-card p {
    color: rgba(255, 255, 255, .92);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 400
}

@media (max-width: 768px) {
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

footer {
    background: linear-gradient(135deg, #0d1219, #1a2635);
    color: #fff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 168, 107, 0.5), transparent);
        }

.footer::after {
            content: '';
            position: absolute;
            top: 0;
            right: -50%;
            width: 600px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 168, 107, 0.05), transparent);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite;
        }

.footer-content {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    padding: 1.5rem 0;
    position: relative;
    z-index: 2
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 1.2rem 0;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.8rem 0;
    }
}

.footer-col {
    text-align: left;
    animation: fadeInUp .8s ease backwards
}

.footer-col:nth-child(1) {
    animation-delay: 0s
}

.footer-col:nth-child(2) {
    animation-delay: .1s
}

.footer-col:nth-child(3) {
    animation-delay: .2s
}

.footer-col-logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem
}

.footer-col-logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00A86B, #006d3e);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 12px 35px rgba(0, 168, 107, .25);
    transition: all .3s ease
}

.footer-col:hover .footer-col-logo-icon {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(0, 168, 107, .35)
}

.footer-col p {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 0.6rem;
    font-size: .95rem;
    line-height: 1.5;
    font-weight: 400
}

.brand-title {
    color: #00A86B;
    font-size: 2.2rem;
    font-weight: 900;
    margin: .5rem 0 1.5rem;
    background: linear-gradient(135deg, #00A86B, #1E88E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px
}

.footer-tagline {
    font-size: .85rem;
    color: rgba(0, 168, 107, .9);
    font-weight: 600;
    letter-spacing: .4px;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 168, 107, .2);
    text-transform: uppercase
}

.footer-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: -.2px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-size: 1rem
}

.footer-content h3::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 5px;
    height: 2.5px;
    background: linear-gradient(90deg, #00A86B, #1E88E5);
    border-radius: 2px
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem
}

.footer-links a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    font-weight: 500
}


.footer-links a::before {
            content: '';
            width: 0;
            color: var(--primary);
            transition: width .3s ease;
            border-radius: 1px;
            height: 2.5px;
            background: linear-gradient(90deg, #00A86B, #1E88E5);
        }

.footer-links a:hover {
    color: #fff;
    transform: translateX(8px)
}

.footer-links a:hover::before {
    width: 30x;
    opacity: 1;
    margin-right: -.5rem
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.2rem
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(0, 168, 107, .15);
    border: 2px solid rgba(0, 168, 107, .3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A86B;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    cursor: pointer;
    font-size: 1.1rem
}

.footer-social a:hover {
    background: linear-gradient(135deg, #00A86B, #006d3e);
    color: #fff;
    border-color: #00A86B;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 168, 107, .4)
}

.footer-bottom {
    border-top: 1px solid rgba(0, 168, 107, .2);
    padding: 1.5rem 0;
    position: relative;
    z-index: 2
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1rem
}

.footer-bottom-text {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    line-height: 1.9;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-bottom-text p {
    margin: .5rem 0;
    word-wrap: break-word;
}

@media (max-width: 600px) {
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-bottom-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }
}



.footer-bottom-footer {
    text-align: center;
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    padding-top: 1.2rem;
    font-weight: 500
}

.footer-bottom-footer p {
    margin: .4rem 0
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0
    }

    to {
        width: 90px;
        opacity: 1
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(.95)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-5deg) scale(.95)
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1)
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 168, 107, .3)
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 168, 107, .6)
    }
}

@keyframes float-subtle {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

@keyframes shine {
    0% {
        left: -100%
    }

    100% {
        left: 100%
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.8) translateY(20px)
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .3
    }

    50% {
        transform: scale(1.2);
        opacity: .1
    }
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(.95)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes contentSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes contentSlideInRight {
    from {
        opacity: 0;
        transform: translateX(60px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.section-visible {
    animation: sectionFadeIn .8s ease-out forwards
}

.slide-in-left {
    animation: contentSlideInLeft 1s cubic-bezier(.34, 1.56, .64, 1) forwards
}

.slide-in-right {
    animation: contentSlideInRight 1s cubic-bezier(.34, 1.56, .64, 1) forwards
}

.animate-in {
    animation: fadeInUp .8s ease-out forwards
}

.card-animate-in {
    animation: cardSlideIn .7s cubic-bezier(.34, 1.56, .64, 1) forwards
}

@media(max-width:768px) {
    .nav-toggle {
        display: block
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 25px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 20px 20px
    }

    .nav-links.active {
        display: flex
    }

    .hero h1 {
        font-size: 2.8rem
    }

    .hero .subtitle {
        font-size: 1.2rem
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .cta-buttons {
        flex-direction: column
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .travel-calculator {
        margin: -60px 10px 0;
        padding: 2rem 1.5rem;
        border-radius: 25px
    }

    .quick-calc-form {
        grid-template-columns: 1fr
    }

    .calculator-header h2 {
        font-size: 2rem
    }

    .calculator-header p {
        font-size: 1rem
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .calc-button {
        font-size: 1rem;
        padding: 14px 30px
    }

    footer {
        padding: 60px 0 0
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 0
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .footer-certifications {
        flex-wrap: wrap;
        justify-content: center
    }
}

/* Extra Small Screens (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero .subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .travel-calculator {
        margin: -40px 8px 0;
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .transport-modes {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .transport-toggle {
        padding: 0.7rem 0.5rem;
        min-height: 50px;
        border-radius: 8px;
        max-width: 100%;
    }

    .transport-toggle .icon {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .transport-toggle .name {
        font-size: 0.65rem;
        line-height: 1.1;
    }

    .calculator-header h2 {
        font-size: 1.6rem;
    }

    .calculator-header p {
        font-size: 0.9rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .result-item {
        padding: 1.5rem 1rem;
    }

    .calc-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    footer {
        padding: 40px 0 20px;
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 2.2rem
    }

    .hero .subtitle {
        font-size: 1rem
    }

    .results-grid {
        grid-template-columns: 1fr
    }

    .about-content h2 {
        font-size: 2rem
    }

    .about-content p {
        font-size: .95rem
    }

    .section-title h2 {
        font-size: 2rem
    }
}