﻿/* ============================================
   DD LANKA TOURS — PREMIUM DESIGN SYSTEM
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0a3d62;
    --primary-light: #1e6f9f;
    --primary-dark: #062840;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    --emerald: #10b981;
    --teal: #14b8a6;
    --coral: #f43f5e;   
    --bg-dark: #0f172a;
    --bg-light: #f0f4f8;
    --bg-cream: #fefce8;
    --text-dark: #1e293b;
    --text-light: #f1f5f9;
    --text-muted: #64748b;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 50px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-light), var(--accent));
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--emerald), var(--teal));
    z-index: 9999;
    transition: width 0.1s linear;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

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

ul {
    list-style-type: none;
}

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

/* ============================================
   DECORATIVE BACKGROUND IMAGES
   ============================================ */

/* Sigiriya rock — floats bottom-right of sections */
.decor-sigiriya {
    position: relative;
    overflow: hidden;
}

.decor-sigiriya::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 380px;
    height: 380px;
    background: url('../image/sigiriya_decor.png') no-repeat bottom right / contain;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    animation: floatDecor 6s ease-in-out infinite;
}

/* Fresco apsara — floats bottom-left of sections */
.decor-fresco {
    position: relative;
    overflow: hidden;
}

.decor-fresco::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 300px;
    height: 300px;
    background: url('../image/fresco_decor.png') no-repeat bottom left / contain;
    opacity: 0.13;
    pointer-events: none;
    z-index: 0;
    animation: floatDecor 8s ease-in-out infinite reverse;
}

/* Both decorations together */
.decor-both {
    position: relative;
    overflow: hidden;
}

.decor-both::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 320px;
    height: 320px;
    background: url('../image/sigiriya_decor.png') no-repeat bottom right / contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    animation: floatDecor 6s ease-in-out infinite;
}

.decor-both::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 260px;
    height: 260px;
    background: url('../image/fresco_decor.png') no-repeat bottom left / contain;
    opacity: 0.11;
    pointer-events: none;
    z-index: 0;
    animation: floatDecor 8s ease-in-out infinite reverse;
}

@keyframes floatDecor {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Make sure inner content stays above decorations */
.decor-sigiriya>*,
.decor-fresco>*,
.decor-both>* {
    position: relative;
    z-index: 1;
}

/* ============================================
   SITE HEADER — TWO ROW LAYOUT WITH GLASSMORPHISM
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 20, 30, 0.85);
    /* Glassmorphism Base */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---- TOP BAR ---- */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 5%;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    min-height: 100px;
}

.header-top-left {
    display: flex;
    align-items: center;
    min-width: 180px;
    z-index: 2;
}

/* Language Switcher (dropdown style) */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    position: relative;
}

.lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-select {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 14px;
    font-family: var(--font-body);
}

.lang-select option {
    background: #222;
    color: #fff;
}

.lang-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    pointer-events: none;
    margin-left: -10px;
}

/* Centered Logo */
.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 100;
}

.header-logo a {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.logo-img {
    height: 90px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.06);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow:
        -1px -1px 0 #1e3c72,
        1px -1px 0 #1e3c72,
        -1px 1px 0 #1e3c72,
        1px 1px 0 #1e3c72,
        2px 2px 0 #0f2027,
        0 0 15px rgba(255, 255, 255, 0.2);
}

.logo-tagline {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Right: Phone + Enquire */
.header-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    min-width: 180px;
    justify-content: center;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.header-phone i {
    color: #25D366;
    font-size: 1.1rem;
}

.header-phone:hover {
    color: var(--accent-light);
}

.enquire-btn {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    border: 2px solid #fff;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.enquire-btn:hover {
    background: #fff;
    color: #1a1a1a;
}

/* ---- BOTTOM NAV BAR ---- */
.header-nav {
    background: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
}

.header-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-links li a {
    display: block;
    padding: 0.85rem 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.header-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.3rem;
    right: 1.3rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header-nav-links li a:hover,
.header-nav-links li a.active {
    color: #ffffff;
}

.header-nav-links li a:hover::after,
.header-nav-links li a.active::after {
    transform: scaleX(1);
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1002;
    padding: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.3s;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger div {
    width: 24px;
    height: 2.5px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 3px;
}

/* Push content below header (top-bar ~55px + nav ~42px = ~97px) */
body {
    padding-top: 97px;
}

/* Responsive — MOBILE ONLY, desktop layout completely unchanged */
@media (max-width: 900px) {
    /* Mobile header: [logo+name] [hamburger] only — nothing else */
    .header-top {
        padding: 0.7rem 4%;
        position: relative;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }

    /* HIDE language switcher on mobile */
    .header-top-left {
        display: none !important;
    }

    /* HIDE phone numbers and enquire button on mobile */
    .header-top-right {
        display: none !important;
    }

    .header-phone {
        display: none !important;
    }

    .enquire-btn {
        display: none !important;
    }

    /* Logo takes remaining space, centered */
    .header-logo {
        flex: 1;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    /* Hamburger always on the right */
    .hamburger {
        display: flex !important;
        position: static;
        margin-left: auto;
        flex-shrink: 0;
    }

    /* Desktop nav bar collapses on mobile */
    .header-nav {
        display: block;
        height: 0;
        padding: 0;
        margin: 0;
        border: none;
        overflow: visible;
        background: transparent;
    }

    /* Full-screen overlay menu — hidden by default, shown on hamburger click */
    .header-nav-links {
        display: none !important;
        flex-direction: column !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(8, 14, 26, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        z-index: 9998;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 0;
    }

    .header-nav-links.active {
        display: flex !important;
    }

    .header-nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .header-nav-links li a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.85);
    }

    .header-nav-links li a:hover,
    .header-nav-links li a.active {
        color: var(--accent-light);
        background: rgba(245, 158, 11, 0.06);
    }

    /* Hamburger → X animation when menu is open */
    .hamburger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .logo-name {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .logo-img {
        height: 38px;
    }
}

@media (max-width: 600px) {
    .logo-tagline {
        display: none;
    }

    .logo-name {
        font-size: 0.78rem;
    }

    .enquire-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.72rem;
    }
}



/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 6rem 5%;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--emerald));
    margin: 12px auto 0;
    border-radius: 4px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
}

/* Background variants */
.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    color: var(--white);
}

/* Wave Separator */
.wave-separator {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-separator svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(14, 165, 164, 0.15) 0%,
            rgba(245, 158, 11, 0.1) 40%,
            rgba(139, 92, 246, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-content .hero-accent {
    color: var(--accent-light);
    display: block;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.7;
}

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 4rem 5%;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    color: var(--white);
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-light);
    display: block;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
    font-weight: 500;
}

/* ============================================
   GRIDS & CARDS
   ============================================ */
.grid-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--emerald));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    transform: scaleX(1);
}

/* Tour Cards with Images */
.tour-card {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius);
}

.tour-card .tour-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card .tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-img img {
    transform: scale(1.1);
}

.tour-card .tour-card-img .tour-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-card-img .tour-card-overlay {
    transform: translateY(0);
}

.tour-card .tour-card-body {
    padding: 1.5rem;
}

.tour-card .tour-card-body h3 {
    color: var(--primary);
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.tour-card .tour-card-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.tour-card i {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.tour-card h3 {
    color: var(--primary);
    font-family: var(--font-heading);
}

/* Icon-only tour cards on homepage */
.tour-icon-card {
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tour-icon-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tour-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-icon-card:hover::after {
    transform: scaleX(1);
}

.tour-icon-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.tour-icon-card h3 {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

/* ============================================
   DESTINATIONS GRID
   ============================================ */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dest-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.dest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-item:hover img,
.dest-item:hover video {
    transform: scale(1.15);
}

/* Unified Dark Overlay for HD look across all videos */
.dest-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 30, 0.45);
    /* Dark unified tone */
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.dest-item:hover::after {
    background: rgba(10, 20, 30, 0.2);
    /* Brightens on hover */
}

/* Updated Destination Name Typography */
.dest-name {
    position: absolute;
    top: 15%;
    /* Positioned near top */
    left: 0;
    width: 100%;
    padding: 0 1rem;
    color: var(--white);
    font-family: var(--font-heading);
    /* Playfair Display - Serif */
    font-weight: 700;
    font-size: 2.2rem;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    /* Heavy drop shadow for readability */
    z-index: 2;
    /* Sits above the overlay */
    pointer-events: none;
}

/* "WELCOME TO" text above location */
.dest-name::before {
    content: 'WELCOME TO';
    display: block;
    font-family: var(--font-body);
    /* Inter - Sans Serif */
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

/* ============================================
   FULL BLEED IMAGE BANNER
   ============================================ */
.full-bleed-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.full-bleed-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.dest-item .dest-explore-btn {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: var(--transition);
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
    /* Sits above the overlay */
}

.dest-item:hover .dest-explore-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   TRANSPORT SECTION
   ============================================ */
.transport-section {
    background: var(--bg-light);
}

.transport-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.transport-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.t-info {
    text-align: center;
    width: 100%;
}

.t-info h3 {
    color: #1a365d;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
}

.t-info p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ============================================
   VIDEO SECTION — VIBRANT & COLORFUL
   ============================================ */
.video-section {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 5%;
}

.video-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25), transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.video-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.video-section .section-title {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.video-section .section-title::after {
    background: linear-gradient(90deg, var(--accent), #ec4899, var(--teal));
    height: 5px;
    width: 100px;
}

.video-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 2;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    z-index: 2;
    /* Colorful neon glow border */
    box-shadow:
        0 0 20px rgba(245, 158, 11, 0.3),
        0 0 40px rgba(236, 72, 153, 0.2),
        0 0 80px rgba(20, 184, 166, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(245, 158, 11, 0.15),
            rgba(236, 72, 153, 0.12),
            rgba(20, 184, 166, 0.1));
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: color;
    border-radius: var(--radius);
    transition: opacity 0.4s ease;
}

.video-wrapper:hover::after {
    opacity: 0.6;
}

.video-wrapper:hover {
    box-shadow:
        0 0 30px rgba(245, 158, 11, 0.5),
        0 0 60px rgba(236, 72, 153, 0.3),
        0 0 100px rgba(20, 184, 166, 0.2),
        0 25px 70px rgba(0, 0, 0, 0.5);
    transform: scale(1.02);
    transition: all 0.5s ease;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 0;
}

/* Video Section Decorative Dots */
.video-decor {
    position: absolute;
    z-index: 1;
    opacity: 0.08;
    font-size: 10rem;
    color: var(--white);
}

.video-decor-left {
    top: 20%;
    left: 5%;
}

.video-decor-right {
    bottom: 10%;
    right: 5%;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: linear-gradient(135deg, #f0f4f8, #e8eef5);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    flex: 0 0 calc(33.333% - 1.33rem);
    margin-right: 2rem;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
        margin-right: 0;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.testimonial-info strong {
    display: block;
    color: var(--primary);
    font-family: var(--font-heading);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Carousel Navigation */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(10, 61, 98, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicators .indicator.active {
    background: var(--primary);
    width: 20px;
    border-radius: 5px;
}

/* ============================================
   MODAL STYLES (Review Form)
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: #f1f5f9;
    color: var(--coral);
}

.review-modal-container h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.star-rating-input {
    display: flex;
    gap: 5px;
    font-size: 1.5rem;
    color: #cbd5e1;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.star-rating-input i.active {
    color: var(--accent);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 6rem 5%;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.cta-banner .cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-banner .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.85), rgba(15, 23, 42, 0.85));
}

.cta-banner .cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-banner p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============================================
   PAGE BANNER (Sub pages)
   ============================================ */
.page-banner {
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    box-shadow: inset 0 0 150px 50px rgba(15, 23, 42, 0.85);
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--bg-light));
}

.page-banner h1 {
    color: var(--white);
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.page-banner-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   MAIN WRAPPER
   ============================================ */
.main-wrapper {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent), var(--emerald));
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Colorful gradient borders for each item based on nth-child */
.timeline-item:nth-child(1) .timeline-content {
    border-bottom: 4px solid var(--accent);
}

.timeline-item:nth-child(2) .timeline-content {
    border-bottom: 4px solid var(--emerald);
}

.timeline-item:nth-child(3) .timeline-content {
    border-bottom: 4px solid var(--coral);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent), var(--coral));
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.2));
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.5rem;
}

/* Feature List */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    background: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.feature-list li:hover {
    border-left-color: var(--accent);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.feature-list i {
    font-size: 1.5rem;
    color: var(--emerald);
}

/* About Gallery */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .about-gallery {
        grid-template-columns: 1fr;
    }
}

.gallery-square {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--bg-light);
    cursor: pointer;
}

/* JS controls opacity; images are stacked absolutely */
.gallery-square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 1s ease;
}

/* First image visible by default — JS will manage the rest */
.gallery-square img:first-child {
    opacity: 1;
}

.gallery-square:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.gallery-square:hover .gallery-overlay {
    opacity: 1;
}

.gallery-explore-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
    border-radius: 30px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.gallery-square:hover .gallery-explore-btn {
    transform: translateY(0);
}

.gallery-explore-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.4);
}

/* Mission Card */
.mission-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
}

.mission-card h3 {
    color: var(--accent-light);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section-bg {
    background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
    border-radius: 50%;
}

.contact-info-panel h2 {
    margin-bottom: 2rem;
    color: var(--accent-light);
    font-family: var(--font-heading);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    color: var(--accent-light);
    margin-top: 5px;
    font-size: 1.3rem;
}

.info-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.map-container {
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: -80px auto 0;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 1.5rem;
}

.row-group {
    display: flex;
    gap: 1.5rem;
}

.half-width {
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

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

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    top: 18px;
    left: -50%;
    width: 100%;
    height: 3px;
    background: #e2e8f0;
    z-index: 0;
}

.step:first-child::before {
    display: none;
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e2e8f0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.step.active::before {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.step-label {
    margin-top: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step.active .step-label {
    color: var(--accent-dark);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(180deg, var(--bg-dark), #080e1a);
    color: var(--text-light);
    padding: 5rem 5% 1.5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--emerald), var(--teal), var(--accent));
    background-size: 200% 100%;
    animation: gradientSlide 3s ease infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col h3 {
    color: var(--accent-light);
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.footer-col p {
    margin-bottom: 0.8rem;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col p i {
    color: var(--accent);
    margin-right: 8px;
    width: 18px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-credit-container {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

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

.footer-design-credit a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-design-credit a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

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

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(245, 158, 11, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ============================================
   DESTINATION MODAL
   ============================================ */
.dest-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 2rem 1rem;
}

.dest-modal.show {
    opacity: 1;
    visibility: visible;
}

.dest-modal-content {
    background: var(--bg-light);
    width: 100%;
    max-width: 900px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: auto;
}

.dest-modal.show .dest-modal-content {
    transform: translateY(0) scale(1);
}

.dest-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.dest-modal-close:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.dest-modal-header {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.dest-modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-modal-body {
    padding: 2.5rem;
}

.dest-modal-body h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.dest-modal-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.dest-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dest-modal-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent);
}

.dest-modal-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dest-modal-box h3 i {
    color: var(--accent);
}

.dest-modal-list {
    list-style: none;
    padding: 0;
}

.dest-modal-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.dest-modal-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

@media (max-width: 768px) {
    .dest-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dest-modal-header {
        height: 250px;
    }

    .dest-modal-body {
        padding: 1.5rem;
    }

    .dest-modal-body h2 {
        font-size: 2rem;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    /* mobile nav handled in 900px block above */

    .hamburger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .navbar {
        background: rgba(10, 61, 98, 0.95);
        backdrop-filter: blur(15px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 5%;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
        padding-left: 50px;
    }

    .timeline-dot {
        left: 20px;
        transform: none;
    }

    .timeline-content {
        margin: 0;
    }

    .step-indicator {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .row-group {
        flex-direction: column;
        gap: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .page-banner {
        height: 40vh;
        min-height: 280px;
    }
}

/* ============================================
   VEHICLE SELECTOR
   ============================================ */
.vehicle-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 15px;
    width: 100%;
}

@media (max-width: 600px) {
    .vehicle-selector {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vehicle-option {
    cursor: pointer;
    position: relative;
    display: block;
}

.vehicle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.vehicle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 8px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.vehicle-card img,
.vehicle-svg {
    width: 100%;
    height: 70px;
    object-fit: contain;
    display: block;
}

.vehicle-card i {
    font-size: 2rem;
    color: var(--primary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.vehicle-card span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vehicle-card small {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hover */
.vehicle-option:hover .vehicle-card {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.vehicle-option:hover .vehicle-card i {
    color: var(--accent);
    transform: scale(1.1);
}

/* Selected */
.vehicle-option input[type="radio"]:checked+.vehicle-card {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.03));
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
    transform: translateY(-3px);
}

.vehicle-option input[type="radio"]:checked+.vehicle-card i {
    color: var(--accent);
    transform: scale(1.15);
}

.vehicle-option input[type="radio"]:checked+.vehicle-card span {
    color: var(--primary);
}

/* =====================================================
   GOOGLE FONTS – multilingual scripts
   Sinhala, Hindi (Devanagari), Arabic
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Sinhala:wght@400;600&family=Noto+Sans+Devanagari:wght@400;600&family=Noto+Sans+Arabic:wght@400;600&display=swap');

/* Apply script-specific fonts */
:lang(si) {
    font-family: 'Noto Sans Sinhala', sans-serif;
}

:lang(hi) {
    font-family: 'Noto Sans Devanagari', sans-serif;
}

:lang(ar) {
    font-family: 'Noto Sans Arabic', sans-serif;
}

/* =====================================================
   RTL SUPPORT — Arabic
   ===================================================== */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .header-top {
    flex-direction: row-reverse;
}

[dir="rtl"] .header-nav ul {
    flex-direction: row-reverse;
}

[dir="rtl"] .site-footer .footer-columns {
    flex-direction: row-reverse;
}

[dir="rtl"] .lang-switcher,
[dir="rtl"] .header-top-left,
[dir="rtl"] .header-top-right {
    flex-direction: row-reverse;
}

/* =====================================================
   RESPONSIVE — Mobile First Breakpoints
   ===================================================== */

/* ── LARGE TABLET 1024px ── */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }

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

    .tours-grid,
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-selector {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── TABLET 768px ── */
@media (max-width: 768px) {

    /* Header */
    .header-top {
        flex-wrap: wrap;
        padding: 8px 16px;
        gap: 8px;
    }

    .header-logo .logo-name {
        font-size: 0.95rem;
    }

    .header-logo .logo-tagline {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .enquire-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    /* Navigation */
    .header-nav {
        padding: 0 12px;
        overflow-x: auto;
    }

    .header-nav ul {
        gap: 4px;
        flex-wrap: nowrap;
    }

    .header-nav a {
        font-size: 0.78rem;
        padding: 10px 10px;
    }

    /* Hero */
    .hero-section {
        min-height: 75vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    /* Grids → 2 cols */
    .tours-grid,
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .transport-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .vehicle-selector {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About / Contact */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Booking form */
    .booking-form-container {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .form-group.row-group {
        flex-direction: column;
        gap: 12px;
    }

    .half-width {
        width: 100%;
    }

    /* Footer */
    .footer-columns {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ── MOBILE 480px ── */
@media (max-width: 480px) {

    /* Header compact */
    .header-top {
        flex-direction: row;
        justify-content: space-between;
        padding: 8px 12px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .header-logo .logo-name {
        font-size: 0.82rem;
    }

    /* Hamburger nav */
    .header-nav ul {
        gap: 2px;
    }

    .header-nav a {
        font-size: 0.72rem;
        padding: 8px 8px;
    }

    /* Hero */
    .hero-section {
        min-height: 65vh;
        padding: 20px 16px;
    }

    .hero-content h1 {
        font-size: 1.55rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 22px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }

    /* Section titles */
    .section-title {
        font-size: 1.55rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* Cards → 1 col */
    .tours-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .transport-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Vehicle cards smaller */
    .vehicle-card {
        padding: 10px 6px;
    }

    .vehicle-svg {
        height: 55px;
    }

    .vehicle-card span {
        font-size: 0.75rem;
    }

    .vehicle-card small {
        font-size: 0.65rem;
    }

    /* Booking */
    .booking-hero {
        min-height: 30vh;
    }

    .booking-form-container {
        margin: 0 8px;
        padding: 20px 12px;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    /* Footer → 1 col */
    .footer-columns {
        grid-template-columns: 1fr !important;
    }

    .social-links {
        justify-content: center;
    }
}

/* ── EXTRA SMALL 360px (older Androids) ── */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.35rem;
    }

    .vehicle-selector {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .header-nav a {
        font-size: 0.68rem;
        padding: 6px 6px;
    }
}

/* ── Language selector styling ── */
.lang-select {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 0.82rem;
    cursor: pointer;
    outline: none;
    max-width: 160px;
}

.lang-select option {
    background: var(--primary-dark);
    color: white;
}

/* =============================================
   TOUR VIVID CARDS  (index.html & tours.html)
   ============================================= */
.tour-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem 0 2rem;
}

.tour-vivid-card {
    background: linear-gradient(145deg, var(--tc-a, #f7971e), var(--tc-b, #ffd200));
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1.5px solid var(--border, rgba(255, 255, 255, 0.15));
}

.tour-vivid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* Image section at top */
.tvc-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.tvc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-vivid-card:hover .tvc-img-wrap img {
    transform: scale(1.08);
}

.tvc-img-badge {
    position: absolute;
    bottom: 10px;
    left: 14px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Card body */
.tvc-body {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    flex: 1;
}

.tvc-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.tvc-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.01em;
}

.tvc-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.tvc-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.3rem;
}

.tvc-highlights li {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
    padding-left: 0.1rem;
}

.tvc-btn {
    display: inline-block;
    margin-top: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
}

.tvc-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .tour-cards-grid {
        grid-template-columns: 1fr;
    }

    .tvc-img-wrap {
        height: 180px;
    }
}

/* =============================================
   GOOGLE TRANSLATE – hide toolbar
   ============================================= */
.goog-te-banner-frame,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
    display: none !important;
}

.skiptranslate>iframe {
    display: none !important;
}

body>.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

#google_translate_element {
    display: none !important;
}

/* ============================================
   FLEET SECTION (Contact Page)
   ============================================ */
.fleet-section {
    padding: 4rem 5%;
    background: #ffffff;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fleet-card {
    background: #f4f8fb;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.fleet-card.card-yellow {
    background: #fed330;
    color: #111;
}

.fleet-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.fleet-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleet-card ul li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
}

.fleet-card.card-yellow ul li {
    color: #2c2c2c;
}

.fleet-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: inherit;
}

.fleet-icon {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fleet-icon svg {
    width: 120px;
    height: auto;
}

/* ============================================
   VEHICLE CARD — "▾ details" TOGGLE
   ============================================ */
.vcard-see-more {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.68rem;
    color: var(--accent, #1a6fc4);
    cursor: pointer;
    user-select: none;
    text-decoration: underline;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.vcard-see-more:hover {
    color: var(--emerald, #10b981);
}

.vcard-info {
    margin-top: 6px;
    padding: 7px 8px;
    background: rgba(26, 111, 196, 0.07);
    border-left: 3px solid var(--accent, #1a6fc4);
    border-radius: 4px;
    font-size: 0.72rem;
    color: #444;
    text-align: left;
    line-height: 1.45;
    animation: fadeSlide 0.18s ease;
}

.vcard-info p {
    margin: 2px 0;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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