/* ===================================
   DELIAS SNELTRANSPORT - MODERN WEBSITE
   Glassmorphism Design with Premium Aesthetics
   =================================== */

/* === CSS VARIABLES === */
:root {
    /* Colors */
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8C5F;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --whatsapp-green: #25D366;
    --dark-bg: #0A0E27;
    --dark-bg-secondary: #151932;
    --text-light: #FFFFFF;
    --text-gray: #B8C5D6;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;

    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

    /* Safe areas for modern phones */
    --safe-area-top: env(safe-area-inset-top, 0px);
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

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

/* === GLASSMORPHISM EFFECT === */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    padding: 20px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(78, 205, 196, 0.9));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(10, 14, 39, 0.08);
    box-shadow: 0 16px 40px rgba(10, 14, 39, 0.18);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 20px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(78, 205, 196, 0.9));
    box-shadow: 0 16px 40px rgba(10, 14, 39, 0.18);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    width: 130px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    margin-left: auto;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

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

.nav-contact .nav-cta {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 26px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.35);
    transition: transform 0.25s ease;
    animation: nav-cta-pulse 2.6s ease-in-out infinite;
}


.nav-contact .nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
}

/* === LANGUAGE SWITCH === */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switch a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.lang-switch a:hover,
.lang-switch a.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

/* === LANGUAGE PROMPT BANNER === */
.lang-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(16px + var(--safe-area-bottom));
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(10, 14, 39, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 50px rgba(10, 14, 39, 0.45);
}

.lang-banner p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.lang-banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-banner-actions a,
.lang-banner-actions button {
    font: inherit;
    border: 0;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: var(--transition);
}

.lang-banner-actions a {
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 10px 22px rgba(255, 107, 53, 0.28);
}

.lang-banner-actions button {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.lang-banner-actions a:hover,
.lang-banner-actions button:hover {
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1400;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}
/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 58, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-top: 100px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-gray);
    margin-bottom: 40px;
    padding-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-lottie {
    display: flex;
    justify-content: center;
    margin: 10px 0 20px;
}

/* === CTA BUTTON (PULSATING) === */
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    animation: none;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.hero .cta-button {
    background: linear-gradient(135deg, #ff7a1a, #ff4d00);
    box-shadow: 0 10px 28px rgba(255, 77, 0, 0.45);
    animation: none;
    transform: translateY(-40px);
    will-change: transform;
}

.hero .cta-button:hover {
    box-shadow: 0 12px 36px rgba(255, 77, 0, 0.6);
    background: linear-gradient(135deg, #ff9d4d, #ff6a1a);
    animation: none;
    transform: translateY(-40px) scale(1);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-button:hover::before {
    left: -100%;
}

.mobile-phone-cta {
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-light);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
    z-index: 1100;
    animation: pulse 2s infinite;
}

.mobile-phone-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: pulse-ring 2.5s ease-out infinite;
    pointer-events: none;
}

.mobile-whatsapp-cta {
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--whatsapp-green);
    color: var(--text-light);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 1100;
    animation: pulse 2s infinite;
}

.mobile-whatsapp-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: pulse-ring 2.5s ease-out infinite;
    pointer-events: none;
}

.mobile-whatsapp-cta img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    pointer-events: none;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 39, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1200;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* === SECTIONS === */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 60px;
}

/* === HERITAGE SECTION === */
.heritage {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.56) 0%, rgba(26, 31, 58, 0.42) 100%);
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: center;
    padding: 42px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

.heritage-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.08), transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(78, 205, 196, 0.08), transparent 32%);
    pointer-events: none;
}

.heritage-text {
    position: relative;
    z-index: 1;
    padding-right: 12px;
}

.heritage-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 13px;
}

.heritage-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.45);
}

.heritage-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4.5vw, 42px);
    font-weight: 800;
    margin: 18px 0 14px;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heritage-copy {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 26px;
}

.heritage-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.heritage-metric {
    flex: 1;
    min-width: 160px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-sm);
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
}

.metric-label {
    display: block;
    color: var(--text-gray);
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.heritage-media {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    min-height: 0;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-lg);
    margin: 22px 0 10px;
}

.heritage-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
    border-radius: inherit;
}

.heritage-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.6s ease;
    border-radius: inherit;
}

.heritage-image.active {
    opacity: 1;
    transform: scale(1);
}

.heritage-media:hover .heritage-image.active {
    transform: scale(1.02);
}

.heritage-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 14, 39, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.heritage-control:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-color);
}

.heritage-control.prev {
    left: 14px;
}

.heritage-control.next {
    right: 14px;
}

.heritage-media.lottie-only {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === ROUTES SECTION === */
.routes {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.6) 0%, rgba(26, 31, 58, 0.45) 100%);
}

.route-planner {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.5) 0%, rgba(26, 31, 58, 0.3) 100%);
}

.route-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px;
    border-radius: 24px;
    overflow: hidden;
}

.route-form-wrapper h2 {
    margin-bottom: 10px;
}

.route-form {
    display: grid;
    gap: 16px;
}

.route-form .form-group {
    margin-bottom: 0;
}

.route-form .cta-button {
    justify-self: start;
    transition: none;
}

.route-form .cta-button::before {
    display: none;
}

.route-form .cta-button:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    transform: none;
    animation: none;
}

.route-status {
    color: var(--text-gray);
    min-height: 20px;
}

.route-progress {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: -4px;
}

.route-progress.active {
    display: flex;
}

.route-progress-track {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.route-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(135deg, #ff9a3c, #ff4d00);
    transition: width 0.15s linear;
}

.route-progress-text {
    font-size: 14px;
    color: var(--text-gray);
    min-width: 38px;
    text-align: right;
}

.route-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.route-info h3 {
    font-size: 18px;
    color: var(--text-light);
}

.route-info p {
    margin-top: 6px;
    color: var(--text-gray);
    font-weight: 600;
}

.freight-type {
    display: none;
}

.freight-type.visible {
    display: block;
}

.freight-type-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.freight-type-icons img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.routes .section-title {
    margin-bottom: 20px;
}

.routes-video {
    max-width: 960px;
    margin: 50px auto 0;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
}

.routes-video video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    pointer-events: none; /* prevent user pausing via click */
}

/* === LOTTIE ANIMATION SECTION === */
.lottie-section {
    padding: 0 0 40px;
    text-align: center;
}

.lottie-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.about-lottie {
    margin: 0;
}

.about-lottie dotlottie-wc {
    width: 420px !important;
    height: 420px !important;
}

.lottie-wrapper dotlottie-wc {
    filter: drop-shadow(0 8px 24px rgba(78, 205, 196, 0.3));
}

/* === SERVICES SECTION === */
.services {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.5) 0%, rgba(26, 31, 58, 0.3) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 20px;
    color: var(--text-light);
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover .service-icon {
    transform: none;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.service-lottie {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

/* === GALLERY SECTION === */
.gallery {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.48) 0%, rgba(26, 31, 58, 0.36) 100%);
}

.gallery-slider {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    margin-top: 40px;
    box-shadow: var(--shadow-lg);
}

.gallery-slides {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.gallery-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: none;
    border-radius: 18px;
}

.gallery-slide.active {
    opacity: 1;
    display: block;
}

.gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 14, 39, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.gallery-control:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-color);
}

.gallery-control.prev {
    left: 16px;
}

.gallery-control.next {
    right: 16px;
}

/* === ABOUT SECTION === */
.about-content {
    padding: 60px 50px;
    border-radius: 24px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.about-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-item p {
    color: var(--text-gray);
    line-height: 1.8;
    text-align: center;
}

/* === CONTACT SECTION === */
.contact {
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.3) 0%, rgba(10, 14, 39, 0.5) 100%);
    padding-top: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.contact-form {
    padding: 40px;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.contact-form .cta-button {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    border: none;
}

.contact-info {
    padding: 40px 30px;
    border-radius: 20px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.info-item h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
}

.info-item p,
.info-item a {
    color: var(--text-gray);
    font-size: 14px;
    text-decoration: none;
}

.info-item a:hover {
    color: var(--primary-color);
}

/* === FOOTER === */
.footer {
    padding: 30px 0;
    text-align: center;
    background: rgba(10, 14, 39, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: var(--text-gray);
    font-size: 14px;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: 0 8px 32px rgba(255, 107, 53, 0.7);
    }
}

@keyframes nav-cta-pulse {

    0%,
    100% {
        box-shadow: 0 12px 24px rgba(255, 107, 53, 0.35);
    }

    50% {
        box-shadow: 0 16px 36px rgba(255, 107, 53, 0.55);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.5), 0 0 40px rgba(255, 107, 53, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 60px rgba(255, 107, 53, 0.5);
    }
}

@keyframes hero-pulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 28px rgba(78, 205, 196, 0.45);
    }

    50% {
        transform: translateY(-4px) scale(1.08);
        box-shadow: 0 16px 40px rgba(78, 205, 196, 0.7);
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }

    80% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes mobile-cta-glow {
    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.45), 0 0 0 0 rgba(255, 107, 53, 0.2);
    }

    50% {
        box-shadow: 0 14px 38px rgba(255, 107, 53, 0.65), 0 0 20px 6px rgba(255, 107, 53, 0.25);
    }
}

/* === FAQ === */
.faq-list {
    padding: 28px clamp(14px, 2vw, 28px);
    display: grid;
    gap: 14px;
}

.faq-list details {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 14px 16px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    list-style: none;
}

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

.faq-list details p {
    margin-top: 10px;
    color: var(--text-gray);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {

    /* Navigation */
    .nav-wrapper {
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: calc(var(--safe-area-top) + 72px);
        left: 50%;
        transform: translate(-50%, -15px) scale(0.94);
        width: min(420px, calc(100% - 32px));
        max-height: calc(100vh - var(--safe-area-top) - var(--safe-area-bottom) - 120px);
        height: auto;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(35px);
        -webkit-backdrop-filter: blur(35px);
        padding: 32px clamp(9px, 2.5vw, 19px);
        gap: 22px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 30px 80px rgba(10, 14, 39, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 1300;
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translate(-50%, 0) scale(1);
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .nav-menu li {
        text-align: center;
    }

    .nav-menu .nav-link {
        font-size: 18px;
        color: var(--text-light);
    }

    .navbar {
        margin: 8px 12px;
        border-radius: 22px;
        padding: 6px 0;
    }

    .nav-contact {
        order: 2;
        display: none;
    }

    .lang-switch {
        display: none;
    }

    .mobile-phone-cta {
        display: flex;
        width: 64px;
        height: 64px;
        font-size: 30px;
        animation: pulse 1.5s infinite, mobile-cta-glow 2.8s ease-in-out infinite;
    }

    .mobile-phone-cta::after {
        width: 80px;
        height: 80px;
        border-width: 3px;
        animation: pulse-ring 1.8s ease-out infinite;
    }

    .mobile-whatsapp-cta {
        display: flex;
        width: 64px;
        height: 64px;
        font-size: 28px;
        animation: pulse 1.5s infinite, mobile-cta-glow 2.8s ease-in-out infinite;
    }

    .mobile-whatsapp-cta::after {
        width: 80px;
        height: 80px;
        border-width: 3px;
        animation: pulse-ring 1.8s ease-out infinite;
    }

    /* Hero */
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 36px;
        padding-top: 15px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .hero-lottie dotlottie-wc {
        width: 200px !important;
        height: 200px !important;
    }

    /* Sections */
    :root {
        --section-padding: 60px 0;
    }

    .heritage-grid {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .heritage-text {
        text-align: center;
        padding-right: 0;
    }

    .heritage-media {
        aspect-ratio: 3 / 4;
    }

    .heritage-metrics {
        justify-content: center;
    }

    .heritage-metric {
        min-width: 140px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services {
        padding-top: 20px;
    }

    .about-content {
        padding: 30px 25px 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-slider {
        min-height: 280px;
    }

    /* Lottie Animation */
    .lottie-section {
        padding: 0 0 30px;
    }

    .lottie-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lottie-wrapper dotlottie-wc {
        width: 420px !important;
        height: 420px !important;
        margin: 0 auto;
    }

    .about-lottie {
        margin: 0;
    }

    .about-lottie dotlottie-wc {
        width: 320px !important;
        height: 320px !important;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }

    /* Route planner */
    .route-grid {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo h2 {
        font-size: 20px;
    }

    .nav-contact .phone-link {
        font-size: 14px;
        padding: 8px 15px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 30px 20px;
    }
}
