/* ============================================
   KUMARULANKA TOURS - CINEMATIC LUXURY STYLES
   ============================================ */

/* ----- CSS VARIABLES ----- */
:root {
    /* Color Theme (Strict Constraints) */
    --primary: #e07b39;
    --primary-dark: #c96a2a;
    --primary-light: #fef3eb;
    --green-dark: #1a2e1a;
    --green-mid: #1a4a2e;
    --green-deep: #0d2010;
    --white: #ffffff;
    --off-white: #fefefe;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-700: #495057;
    --gray-900: #212529;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Manrope', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Spacing */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 1.5vw, 1rem);
    --space-md: clamp(1rem, 2vw, 1.5rem);
    --space-lg: clamp(1.5rem, 3vw, 2.5rem);
    --space-xl: clamp(2.5rem, 5vw, 4rem);
    --space-2xl: clamp(4rem, 8vw, 6rem);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-glow: 0 0 20px rgba(224, 123, 57, 0.3);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: blur(20px);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
}

/* Hero Headline */
.hero-headline {
    font-family: var(--font-display);
    display: flex;
    flex-direction: column;
    gap: 0.25em;
    margin-bottom: var(--space-lg);
}

.headline-light {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--green-deep);
}

.headline-bold {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--green-deep);
}

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--green-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

/* Destination Card Titles */
.card-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white);
    font-weight: 600;
}

/* Tour Names */
.tour-name {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--green-dark);
    margin-bottom: var(--space-xs);
}

/* Accent Text */
.playfair-italic {
    font-family: var(--font-accent);
    font-style: italic;
}

/* ----- UTILITY CLASSES ----- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.left-align {
    text-align: left;
    margin-left: 0;
}

.left-align .section-subtitle {
    margin-left: 0;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-med);
    cursor: pointer;
    border: none;
    will-change: transform, box-shadow;
}

.btn-primary:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-med);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: scale(1.03);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--green-dark);
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-med);
    cursor: pointer;
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ----- LOADING SCREEN ----- */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: -webkit-fill-available;
    background-color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

.loading-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.golden-line {
    width: 0;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 2rem;
    animation: drawLine 0.8s ease forwards;
}

@keyframes drawLine {
    to { width: 80px; }
}

.logo-reveal {
    opacity: 0;
    animation: fadeIn 0.5s ease 0.8s forwards;
}

.loading-brand {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
}

.brand-name {
    font-weight: 300;
    color: var(--primary);
}

.brand-tours {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-left: 0.5rem;
    color: var(--white);
}

.loading-tagline {
    font-family: var(--font-body);
    color: var(--gray-300);
    font-size: 1rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease 1.2s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

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

.golden-particles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    bottom: -10px;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: rise 2s ease-in infinite;
}

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 0.8; }
    100% { transform: translateY(-200px) scale(0); opacity: 0; }
}

.curtain-wipe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-deep);
    transform: translateY(-100%);
    animation: curtainWipe 0.6s ease 2s forwards;
    z-index: 3;
}

@keyframes curtainWipe {
    to { transform: translateY(-100%); }
}

.loading-screen.hidden {
    animation: hideLoader 0.5s ease 2.5s forwards;
}

@keyframes hideLoader {
    to { opacity: 0; visibility: hidden; }
}

/* ----- NAVBAR ----- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-med);
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(13, 32, 16, 0.9);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.nav-logo .logo-kumarulanka {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
}

.nav-logo .logo-tours {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 2rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-med);
}

.navbar.scrolled .nav-links {
    opacity: 1;
    transform: translateY(0);
}

/* Show nav links on internal pages without applying the 'scrolled' background */
.navbar.nav-visible .nav-links {
    opacity: 1;
    transform: translateY(0);
}

/* ----- HERO CAROUSEL ----- */
.hero-visual { position: relative; overflow: hidden; }
.hero-carousel {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 800ms ease, transform 800ms ease;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 28px;
    line-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 12;
    border-radius: 6px;
}
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    display: flex;
    gap: 8px;
    z-index: 12;
}
.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
}
.hero-dots button.active { background: var(--primary); }

/* Keep canvas above carousel overlays if intended; lower z-index so carousel visible */
#heroCanvas { position: relative; z-index: 5; }

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-med);
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-med);
    will-change: transform;
}

.nav-cta:hover {
    box-shadow: var(--shadow-glow);
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 32, 16, 0.98);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-med);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-med);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.6s; }

.mobile-cta {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
}

.mobile-menu.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* ----- HERO SECTION ----- */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--off-white) 55%, var(--primary-light) 45%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    z-index: 2;
    position: relative;
    height: 100%;
}

.hero-content {
    padding: var(--space-2xl) 0;
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-700);
    max-width: 620px;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.hero-visual {
    position: absolute;
    inset: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.38;
    pointer-events: none;
    z-index: 0;
}

#heroCanvas {
    width: 100%;
    height: 100%;
    opacity: 0.18;
}

/* Hero Marquee */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    background: rgba(26, 46, 26, 0.05);
    z-index: 2;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-mid);
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ----- FLOATING SEARCH PANEL ----- */
.search-panel {
    position: relative;
    margin-top: -4rem;
    z-index: 10;
    padding: 0 var(--space-md);
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.search-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: var(--space-md);
    text-align: center;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
    padding: 0.9rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(224, 123, 57, 0.1);
}

.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding-right: 2.5rem;
}

.custom-select i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-700);
    pointer-events: none;
}

.number-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    overflow: hidden;
}

.stepper-btn {
    width: 40px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--gray-700);
    transition: background var(--transition-fast);
}

.stepper-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.number-stepper input {
    flex: 1;
    border: none;
    text-align: center;
    font-weight: 600;
}

.search-btn {
    height: 48px;
    align-self: end;
}

/* ----- TRUST STATS ----- */
.trust-stats {
    background: var(--green-dark);
    padding: var(--space-xl) 0;
    position: relative;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    background: rgba(224, 123, 57, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.4;
}

.stat-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 2s ease infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

.golden-rule {
    max-width: 1200px;
    margin: var(--space-lg) auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* ----- DESTINATIONS SECTION ----- */
.destinations {
    padding: var(--space-2xl) 0;
    background: var(--off-white);
}

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

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    grid-auto-rows: 160px;
    gap: var(--space-md);
}

.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
    transition: transform var(--transition-med);
}

.destination-card.large {
    grid-row: span 1;
}

.destination-card.tall {
    grid-row: span 1;
}

.destination-card.wide {
    grid-column: span 1;
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destination-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 32, 16, 0.8) 0%, transparent 60%);
}

.card-category {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.3rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.45rem 0.65rem;
    z-index: 2;
}

.card-title {
    font-size: 1rem;
}

.card-description {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    line-height: 1.35;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all var(--transition-med);
    margin-top: 0.5rem;
}

.destination-card:hover .card-description {
    max-height: 100px;
    opacity: 1;
}

.card-cta {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-med);
    margin-top: 0.5rem;
}

.destination-card:hover .card-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ----- TOUR PACKAGES ----- */
.tours {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.tour-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: var(--space-md);
}

.tour-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-med);
    will-change: transform, box-shadow;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 0 2px rgba(224, 123, 57, 0.3);
}

.tour-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tour-body {
    padding: 0.65rem 0.85rem;
}

.tour-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    color: var(--gray-700);
}

.tour-meta i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
    color: var(--gray-700);
}

.stars {
    color: #ffc107;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    margin-bottom: 0.5rem;
}

.tour-highlights span {
    font-size: 0.85rem;
    color: var(--gray-700);
}

.tour-highlights i {
    color: var(--primary);
    margin-right: 0.3rem;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--gray-200);
}

.tour-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price-from {
    font-size: 0.8rem;
    color: var(--gray-700);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-per {
    font-size: 0.8rem;
    color: var(--gray-700);
}

.tour-buttons {
    display: flex;
    gap: 0.5rem;
}

.view-all-tours {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-xl);
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    transition: all var(--transition-med);
}

.view-all-tours:hover {
    background: var(--primary);
    color: var(--white);
}

/* Fix: ensure tour footer and booking buttons are visible (override conflicting rules) */
.tours .tour-card {
    overflow: visible;
}
.tours .tour-footer {
    position: relative;
    z-index: 3;
}
.tours .tour-buttons .btn-primary,
.tours .tour-buttons .btn-ghost {
    position: relative;
    z-index: 4;
}

/* Ensure tour footer stays inside card and buttons are compact */
.tours .tour-card {
    display: flex;
    flex-direction: column;
}
.tours .tour-body {
    display: flex;
    flex-direction: column;
    padding: 0.6rem 0.85rem;
    flex: 1 1 auto;
}
.tours .tour-image {
    max-height: 220px;
    overflow: hidden;
}
.tours .tour-footer {
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
.tours .tour-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.tours .tour-buttons .btn-primary,
.tours .tour-buttons .btn-ghost {
    padding: 8px 14px;
    font-size: 0.9rem;
    border-radius: 28px;
}

/* Reduce default hero/button size conflicts on tour pages */
.tours .btn-primary {
    padding: 8px 14px;
}

/* Strong override: ensure buttons are inline, compact, and not positioned as large circles */
.tours .tour-buttons .btn-primary,
.tours .tour-buttons .btn-ghost,
.tours .tour-buttons .btn {
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    padding: 8px 14px !important;
    font-size: 0.9rem !important;
    border-radius: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    box-shadow: none !important;
}

/* Hide any accidental decorative circles or pseudo-elements inside tour cards */
.tours .tour-card::before,
.tours .tour-card::after,
.tours .tour-footer::before,
.tours .tour-footer::after,
.tours .tour-buttons::before,
.tours .tour-buttons::after {
    display: none !important;
}

/* If something is overflowing from the image area, clip it within the card */
.tours .tour-card { overflow: hidden !important; }

/* Stronger fixes: reset transforms, positioning and enforce compact rectangular buttons */
.tours .tour-buttons > * {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    display: inline-flex !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
}
.tours .tour-buttons .btn-ghost {
    border-radius: 10px !important;
    padding: 8px 12px !important;
    background: transparent !important;
    border: 1px solid var(--gray-300) !important;
    color: var(--green-dark) !important;
}
.tours .tour-buttons .btn-primary {
    border-radius: 10px !important;
    padding: 8px 12px !important;
    font-size: 0.95rem !important;
}

/* If decorative half-circles exist as separate elements, hide them */
.tours .decorative-circle,
.tours .half-circle,
.tour-circle,
.card-circle {
    display: none !important;
}

/* 3D Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ----- JOURNEY STORYTELLING ----- */
.journey {
    padding: var(--space-2xl) 0;
    background: var(--primary-light);
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

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

.timeline-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.step-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.journey-visual {
    perspective: 1000px;
}

.card-stack {
    position: relative;
    width: 100%;
    height: 400px;
}

.stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(50px) rotateY(10deg);
    transition: all var(--transition-slow);
}

.stack-card.active {
    opacity: 1;
    transform: translateX(0) rotateY(0);
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- EXPERIENCE CATEGORIES ----- */
.experiences {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.experience-card {
    padding: 0.75rem;
    text-align: center;
    transition: all var(--transition-med);
}

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

.exp-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.exp-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.exp-desc {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ----- PRIVATE TRANSPORT ----- */
.transport {
    padding: var(--space-2xl) 0;
    background: var(--off-white);
}

.transport-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.transport-copy {
    padding-right: var(--space-lg);
}

.transport-list {
    margin: var(--space-lg) 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transport-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--gray-700);
}

.transport-list i {
    color: var(--primary);
}

.transport-vehicles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.vehicle-card {
    padding: 0.75rem;
    text-align: center;
    transition: all var(--transition-med);
}

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

.vehicle-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.vehicle-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.vehicle-price {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.vehicle-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-700);
}

.vehicle-capacity {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

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

/* ----- REVIEWS ----- */
.reviews {
    padding: var(--space-2xl) 0;
    background: var(--primary-light);
    overflow: hidden;
}

.reviews-carousel {
    overflow: hidden;
    padding: var(--space-md) 0;
}

.reviews-track {
    display: flex;
    gap: var(--space-md);
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 240px;
    padding: 0.8rem;
    position: relative;
}

.review-quote {
    font-family: var(--font-accent);
    font-size: 2.3rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.review-text {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-style: italic;
    color: var(--gray-900);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.author-name {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--green-dark);
}

.author-country {
    font-size: 0.85rem;
    color: var(--gray-700);
}

.review-trip {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.review-stars {
    color: #ffc107;
}

/* ----- ABOUT SECTION ----- */
.about {
    padding: var(--space-2xl) 0;
    background: var(--green-deep);
    color: var(--white);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about .section-title {
    color: var(--white);
}

.about .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

.trust-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.pillar i {
    color: var(--primary);
}

.about-collage {
    width: 100%;
}

.collage-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(3, 150px);
    gap: var(--space-sm);
}

.collage-large {
    grid-row: span 3;
    border-radius: 16px;
    object-fit: cover;
    height: 100%;
}

.collage-small {
    border-radius: 16px;
    object-fit: cover;
    height: 100%;
}

/* ----- GALLERY ----- */
.gallery {
    padding: var(--space-2xl) 0;
    background: var(--off-white);
}

.gallery-masonry {
    columns: 3;
    column-gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: var(--space-md);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-med);
}

.masonry-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}

.masonry-item.tall {
    height: 400px;
}

.masonry-item.wide {
    column-span: 2;
}

.view-gallery {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--green-dark);
    border-radius: 50px;
    color: var(--green-dark);
    font-weight: 600;
    transition: all var(--transition-med);
}

.view-gallery:hover {
    background: var(--green-dark);
    color: var(--white);
}

/* ----- CONTACT SECTION ----- */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

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

.contact-form {
    padding: var(--space-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--green-dark);
    margin-bottom: var(--space-lg);
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    padding: 0.9rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    width: 100%;
}

.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(224, 123, 57, 0.1);
}

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.contact-info {
    padding: var(--space-lg) 0;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--green-dark);
    margin-bottom: var(--space-lg);
}

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

.info-item {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.info-content h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-700);
    margin-bottom: 0.2rem;
}

.info-content a,
.info-content p {
    font-size: 1rem;
    color: var(--gray-900);
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: #25d366;
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-med);
    width: 100%;
    justify-content: center;
}

.whatsapp-cta:hover {
    background: #1da851;
    transform: scale(1.03);
}

/* ----- FOOTER ----- */
.footer {
    position: relative;
    background: var(--green-deep);
    color: var(--white);
    padding: var(--space-xl) 0 0;
    overflow: hidden;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo .logo-kumarulanka {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary);
}

.footer-logo .logo-tours {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-left: 0.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: var(--space-sm) 0 var(--space-md);
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-contact i {
    color: var(--primary);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ----- MOBILE STICKY WHATSAPP ----- */
.mobile-whatsapp-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: #25d366;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.mobile-whatsapp-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 1024px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        position: relative;
        z-index: 3;
    }

    .hero-content {
        padding-top: 0;
        position: relative;
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
    }

    .hero-visual {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        margin-top: 0;
        z-index: 0;
        opacity: 0.45;
        pointer-events: none;
    }

    .hero-carousel {
        border-radius: 0;
    }

    .hero-prev,
    .hero-next {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    .hero-prev { left: 12px; }
    .hero-next { right: 12px; }

    #heroCanvas {
        opacity: 0.18;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

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

    .destination-card.large,
    .destination-card.tall {
        grid-row: span 1;
    }

    .destination-card.wide {
        grid-column: span 1;
    }

    .journey-content,
    .transport-content,
    .about-container,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .transport-copy {
        padding-right: 0;
    }

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

    .hero-container {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding-bottom: 0;
    }

    .hero-content {
        padding-top: 0;
        min-height: 100vh;
    }

    .hero-visual {
        min-height: 100%;
    }

    .hero-carousel {
        min-height: 100%;
    }

    .hero-slide {
        background-position: center center;
    }

    .hero-dots {
        bottom: 12px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

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

    .tours .tour-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tours .tour-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

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

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

    .gallery-masonry {
        columns: 2;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .mobile-whatsapp-sticky {
        display: block;
    }

    .review-card {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-headline .headline-light,
    .hero-headline .headline-bold {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

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

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

    .gallery-masonry {
        columns: 1;
    }
}

/* ----- ANIMATIONS ----- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-content {
        animation: none;
    }

    [data-aos] {
        opacity: 1;
        transform: none;
    }

    .loading-screen,
    .loading-screen *,
    .loading-screen.hidden {
        animation-duration: 0.5s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.2s !important;
    }
}