/* ============================================================
   MakeMyTrip LLC — Premium Travel Agency Stylesheet
   Version: 1.0.0
   Author: MakeMyTrip Design Team
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&display=swap');

/* ============================================================
   2. CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================================ */
:root {
    /* ---- Color Palette ---- */
    --color-primary: #0E7490;
    --color-primary-light: #22D3EE;
    --color-primary-dark: #0C4A6E;
    --color-secondary: #14B8A6;
    --color-secondary-light: #5EEAD4;
    --color-secondary-dark: #0F766E;
    --color-accent: #F59E0B;
    --color-accent-light: #FCD34D;
    --color-accent-dark: #D97706;
    --color-dark: #0F172A;
    --color-text-dark: #1E293B;
    --color-text-light: #64748B;
    --color-text-muted: #94A3B8;
    --color-white: #FFFFFF;
    --color-off-white: #F8FAFC;
    --color-light-bg: #F0FDFA;
    --color-border: #E2E8F0;
    --color-border-light: #F1F5F9;
    --color-success: #10B981;
    --color-error: #EF4444;
    --color-warning: #F59E0B;
    --color-info: #3B82F6;

    /* ---- Gradients ---- */
    --gradient-primary: linear-gradient(135deg, #0E7490 0%, #14B8A6 100%);
    --gradient-primary-reverse: linear-gradient(135deg, #14B8A6 0%, #0E7490 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-hero: linear-gradient(135deg, rgba(14, 116, 144, 0.9) 0%, rgba(20, 184, 166, 0.7) 50%, rgba(245, 158, 11, 0.5) 100%);
    --gradient-hero-overlay: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.3) 50%, rgba(15, 23, 42, 0.8) 100%);
    --gradient-footer: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    --gradient-cta: linear-gradient(135deg, #0E7490 0%, #14B8A6 50%, #0E7490 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-section-alt: linear-gradient(180deg, #F0FDFA 0%, #FFFFFF 100%);

    /* ---- Shadows ---- */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 4px 20px rgba(14, 116, 144, 0.08);
    --shadow-card-hover: 0 20px 40px rgba(14, 116, 144, 0.15);
    --shadow-primary: 0 8px 25px rgba(14, 116, 144, 0.3);
    --shadow-accent: 0 8px 25px rgba(245, 158, 11, 0.3);
    --shadow-nav: 0 4px 30px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(14, 116, 144, 0.2);

    /* ---- Transitions ---- */
    --transition-fast: all 0.15s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* ---- Border Radius ---- */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* ---- Spacing ---- */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;
    --space-5xl: 100px;

    /* ---- Typography ---- */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-mono: 'Fira Code', 'Cascadia Code', Consolas, monospace;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-8xl: 6rem;

    --leading-tight: 1.15;
    --leading-snug: 1.3;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;

    /* ---- Layout ---- */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1200px;
    --container-2xl: 1400px;
    --navbar-height: 80px;

    /* ---- Z-Index Scale ---- */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-preloader: 9999;
}

/* ============================================================
   3. CSS RESET / NORMALIZE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: var(--leading-normal);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'kern' 1, 'liga' 1;
    overflow-x: hidden;
    position: relative;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav,
section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden], template {
    display: none;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    background-color: transparent;
    transition: var(--transition-base);
}

a:hover {
    color: var(--color-secondary);
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline dotted;
}

b, strong {
    font-weight: 700;
}

dfn {
    font-style: italic;
}

mark {
    background-color: var(--color-accent-light);
    color: var(--color-text-dark);
    padding: 0.1em 0.3em;
    border-radius: var(--radius-sm);
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

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

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border: 0;
    border-top: 1px solid var(--color-border);
    margin: var(--space-2xl) 0;
}

pre {
    overflow: auto;
    font-family: var(--font-mono);
    font-size: var(--text-sm);
}

code, kbd, samp {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
    outline: none;
    border: none;
    background: transparent;
}

button {
    overflow: visible;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

button, select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
    cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid var(--color-border);
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    resize: vertical;
}

optgroup {
    font-weight: 700;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

td, th {
    padding: 0;
}

ul, ol {
    list-style: none;
}

blockquote {
    margin: 0;
}

/* ============================================================
   4. CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-off-white);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-full);
    border: 2px solid var(--color-off-white);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-off-white);
}

/* ============================================================
   5. SELECTION COLOR
   ============================================================ */
::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

::-moz-selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ============================================================
   6. BASE TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: var(--leading-tight);
    color: var(--color-text-dark);
    margin-bottom: 0.5em;
}

h1 {
    font-size: var(--text-6xl);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-4xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

h5 {
    font-size: var(--text-xl);
}

h6 {
    font-size: var(--text-lg);
}

p {
    margin-bottom: 1em;
    color: var(--color-text-light);
    line-height: var(--leading-normal);
}

p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   7. UTILITY / LAYOUT CLASSES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.container-sm {
    max-width: var(--container-sm);
}

.container-md {
    max-width: var(--container-md);
}

.container-lg {
    max-width: var(--container-lg);
}

.container-xl {
    max-width: var(--container-xl);
}

.container-2xl {
    max-width: var(--container-2xl);
}

/* Sections */
.section {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.section-sm {
    padding: var(--space-3xl) 0;
}

.section-lg {
    padding: 120px 0;
}

.section-alt {
    background: var(--gradient-section-alt);
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--color-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: var(--color-white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.7);
}

.section-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.section-primary h1,
.section-primary h2,
.section-primary h3,
.section-primary h4,
.section-primary h5,
.section-primary h6 {
    color: var(--color-white);
}

.section-primary p {
    color: rgba(255, 255, 255, 0.85);
}

/* Section Header / Title */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-3xl);
}

.section-header .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.section-header .section-subtitle::before,
.section-header .section-subtitle::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-header .section-title {
    font-size: var(--text-4xl);
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
}

.section-header .section-description {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

.section-dark .section-header .section-subtitle {
    color: var(--color-accent);
}

.section-dark .section-header .section-subtitle::before,
.section-dark .section-header .section-subtitle::after {
    background: var(--gradient-accent);
}

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

.section-dark .section-header .section-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Section Decorative Elements */
.section-decor {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.section-decor-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.section-decor-2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: -150px;
    left: -100px;
    animation: float 6s ease-in-out infinite reverse;
}

.section-decor-3 {
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-lg);
}

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

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

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

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

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

/* Flex Utilities */
.flex {
    display: flex;
}

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

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

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

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-end {
    justify-content: flex-end;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.gap-xl {
    gap: var(--space-xl);
}

.gap-2xl {
    gap: var(--space-2xl);
}

/* Text Utilities */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-accent {
    color: var(--color-accent);
}

.text-white {
    color: var(--color-white);
}

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

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

.text-muted {
    color: var(--color-text-muted);
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text-italic {
    font-style: italic;
}

.font-heading {
    font-family: var(--font-heading);
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* Misc Utilities */
.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.rounded {
    border-radius: var(--radius-lg);
}

.rounded-full {
    border-radius: var(--radius-full);
}

.shadow {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.w-100 {
    width: 100%;
}

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

/* ============================================================
   8. PRELOADER / PAGE LOADER OVERLAY
   ============================================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: var(--z-preloader);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-right-color: var(--color-secondary);
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.preloader-logo span {
    color: var(--color-accent);
}

.preloader-text {
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================================
   9. NAVIGATION / NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: var(--z-sticky);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

/* Transparent state (on hero) */
.navbar:not(.scrolled) {
    background: transparent;
}

/* Scrolled / Solid state with glassmorphism */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-nav);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-container,
.navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Logo */
.navbar-logo,
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: var(--z-sticky);
}

.navbar-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 20px;
    transition: var(--transition-base);
}

.navbar-logo:hover .navbar-logo-icon {
    transform: rotate(-8deg) scale(1.05);
    box-shadow: var(--shadow-primary);
}

.navbar-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white);
    transition: var(--transition-base);
}

.navbar.scrolled .navbar-logo-text {
    color: var(--color-text-dark);
}

.navbar-logo-text span {
    color: var(--color-accent);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-full);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link {
    color: var(--color-text-dark);
}

.navbar.scrolled .nav-link:hover {
    color: var(--color-primary);
    background: rgba(14, 116, 144, 0.06);
}

.navbar.scrolled .nav-link.active {
    color: var(--color-primary);
}

.nav-link .nav-arrow {
    font-size: 10px;
    transition: var(--transition-base);
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 240px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border-light);
    padding: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    z-index: var(--z-dropdown);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 24px;
    width: 16px;
    height: 16px;
    background: var(--color-white);
    transform: rotate(45deg);
    border-top: 1px solid var(--color-border-light);
    border-left: 1px solid var(--color-border-light);
    border-radius: 3px 0 0 0;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--color-text-dark);
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    text-decoration: none;
}

.dropdown-item:hover {
    background: var(--color-light-bg);
    color: var(--color-primary);
    transform: translateX(4px);
}

.dropdown-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light-bg);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    transition: var(--transition-base);
}

.dropdown-item:hover i {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.dropdown-divider {
    height: 1px;
    background: var(--color-border);
    margin: var(--space-xs) 0;
}

/* Nav CTA Button */
.nav-cta {
    margin-left: var(--space-md);
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: var(--text-sm);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: var(--z-sticky);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

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

.navbar.scrolled .hamburger:hover {
    background: rgba(14, 116, 144, 0.06);
}

.hamburger-line,
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.navbar.scrolled .hamburger-line,
.navbar.scrolled .hamburger span {
    background: var(--color-text-dark);
}

.hamburger-line + .hamburger-line,
.hamburger span + span {
    margin-top: 6px;
}

.hamburger.active .hamburger-line:nth-child(1),
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2),
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3),
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: calc(var(--z-sticky) - 1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================================
   10. HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

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

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Parallax-ready class */
.hero-parallax .hero-background img,
.hero-parallax .hero-background video {
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero-overlay);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--color-white) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-lg);
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-badge i {
    color: var(--color-accent);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-7xl);
    font-weight: 800;
    color: var(--color-white);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-lg);
    animation: heroTextReveal 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-2xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.1s;
    opacity: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.4s;
    opacity: 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-number span {
    color: var(--color-accent);
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll-mouse {
    width: 28px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    margin: 0 auto 8px;
}

.hero-scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    margin-top: 8px;
    animation: scrollDot 2s ease-in-out infinite;
}

.hero-scroll-text {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    transition: var(--transition-base);
}

.hero-scroll a {
    display: block;
    text-decoration: none !important;
}

.hero-scroll a:hover .hero-scroll-mouse {
    border-color: var(--color-white);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-scroll a:hover .hero-scroll-text {
    color: var(--color-white);
}

/* Hero Decorative Shapes */
.hero-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    top: 10%;
    right: -100px;
    animation: rotate 20s linear infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-accent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 20%;
    left: -50px;
    animation: rotate 15s linear infinite reverse;
}

.hero-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    border-radius: 50%;
    top: 30%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

/* ============================================================
   11. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
    z-index: -1;
}

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

/* Primary Button */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(14, 116, 144, 0.4);
    color: var(--color-white);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Secondary / Outline Button */
.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Outline White (for dark backgrounds) */
.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

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

/* Accent / Gold Button */
.btn-accent {
    background: var(--gradient-accent);
    color: var(--color-dark);
    border-color: transparent;
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
    color: var(--color-dark);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--color-text-dark);
    border-color: transparent;
}

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

/* Dark Button */
.btn-dark {
    background: var(--gradient-dark);
    color: var(--color-white);
    border-color: transparent;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl);
    color: var(--color-white);
}

/* Glass Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: var(--color-white);
}

/* Button Sizes */
.btn-sm {
    padding: 8px 20px;
    font-size: var(--text-sm);
}

.btn-lg {
    padding: 18px 40px;
    font-size: var(--text-lg);
}

.btn-xl {
    padding: 20px 48px;
    font-size: var(--text-lg);
}

/* Rounded Full */
.btn-rounded,
.btn.rounded-full {
    border-radius: var(--radius-full);
}

/* Icon Button */
.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    font-size: var(--text-lg);
}

.btn-icon.btn-sm {
    width: 36px;
    height: 36px;
    font-size: var(--text-sm);
}

.btn-icon.btn-lg {
    width: 56px;
    height: 56px;
    font-size: var(--text-xl);
}

/* Button Group */
.btn-group {
    display: inline-flex;
    gap: 0;
}

.btn-group .btn {
    border-radius: 0;
}

.btn-group .btn:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.btn-group .btn:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ============================================================
   12. CARD STYLES — SERVICE CARDS
   ============================================================ */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    overflow: hidden;
    position: relative;
}

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

/* Service Card */
.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light-bg);
    border-radius: var(--radius-lg);
    font-size: 32px;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.service-card:hover .service-card-icon {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-primary);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.service-card-text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-lg);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.service-card-link:hover {
    gap: 12px;
    color: var(--color-secondary);
}

/* ============================================================
   13. DESTINATION CARDS
   ============================================================ */
.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    cursor: pointer;
    height: 420px;
}

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

.destination-card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.destination-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.destination-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-2xl);
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.destination-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: rgba(245, 158, 11, 0.9);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
}

.destination-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.destination-card-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.destination-card-info i {
    color: var(--color-accent);
}

.destination-card-price {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    z-index: 2;
}

.destination-card-price span {
    font-weight: 700;
    color: var(--color-white);
    font-size: var(--text-lg);
}

.destination-card-price small {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-xs);
}

/* Favorite heart icon */
.destination-card-fav {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: var(--color-white);
    font-size: var(--text-base);
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 2;
}

.destination-card-fav:hover,
.destination-card-fav.active {
    background: var(--color-error);
    border-color: var(--color-error);
    transform: scale(1.15);
}

/* ============================================================
   14. PACKAGE CARDS
   ============================================================ */
.package-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    border: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.package-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover .package-card-image img {
    transform: scale(1.08);
}

.package-card-duration {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-dark);
    box-shadow: var(--shadow-md);
}

.package-card-body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.package-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-sm);
    color: var(--color-accent);
}

.package-card-rating span {
    color: var(--color-text-light);
    font-weight: 500;
}

.package-card-category {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    background: var(--color-light-bg);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

.package-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.package-card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

.package-card-title a:hover {
    color: var(--color-primary);
}

.package-card-text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-md);
    flex: 1;
}

.package-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.package-card-feature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-xs);
    color: var(--color-text-light);
    background: var(--color-off-white);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.package-card-feature i {
    color: var(--color-primary);
    font-size: 10px;
}

.package-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
}

.package-card-price {
    display: flex;
    flex-direction: column;
}

.package-card-price-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-weight: 500;
}

.package-card-price-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-primary);
}

.package-card-price-value small {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--color-text-muted);
    font-family: var(--font-primary);
}

.package-card-price .old-price {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

/* ============================================================
   15. GLASSMORPHISM CARDS
   ============================================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: var(--transition-base);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.glass-card-dark {
    background: rgba(15, 23, 42, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: var(--transition-base);
}

.glass-card-dark:hover {
    background: rgba(15, 23, 42, 0.6);
    transform: translateY(-4px);
}

/* ============================================================
   16. TEAM MEMBER CARDS
   ============================================================ */
.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    text-align: center;
    border: 1px solid var(--color-border-light);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.team-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.team-card-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
    transform: translateY(100%);
    transition: var(--transition-base);
}

.team-card:hover .team-card-social {
    transform: translateY(0);
}

.team-card-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: var(--color-white);
    font-size: var(--text-sm);
    transition: var(--transition-base);
}

.team-card-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.team-card-body {
    padding: var(--space-lg);
}

.team-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.team-card-role {
    font-size: var(--text-sm);
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.team-card-text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* ============================================================
   17. GALLERY CARDS / MASONRY GRID
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: var(--space-md);
}

.gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-grid .gallery-item:nth-child(4) {
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

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

.gallery-item-overlay i {
    font-size: var(--text-3xl);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    transform: translateY(20px);
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay i {
    transform: translateY(0);
}

.gallery-item-overlay span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition-base);
    transition-delay: 0.05s;
}

.gallery-item:hover .gallery-item-overlay span {
    transform: translateY(0);
}

/* ============================================================
   18. STATISTICS / COUNTER SECTION
   ============================================================ */
.stats-section {
    position: relative;
    background: var(--gradient-primary);
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v22H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
}

.stat-icon {
    font-size: 40px;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-number span {
    color: var(--color-accent);
}

.stat-label {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    margin: var(--space-sm) auto 0;
}

/* ============================================================
   19. TESTIMONIAL CARDS
   ============================================================ */
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    position: relative;
    border: 1px solid var(--color-border-light);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.testimonial-card-quote {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 80px;
    font-family: var(--font-heading);
    color: var(--color-primary);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonial-card-stars i {
    color: var(--color-accent);
    font-size: var(--text-sm);
}

.testimonial-card-text {
    font-size: var(--text-base);
    color: var(--color-text-dark);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-lg);
    font-style: italic;
    position: relative;
}

.testimonial-card-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-light-bg);
    flex-shrink: 0;
}

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

.testimonial-card-name {
    font-weight: 700;
    color: var(--color-text-dark);
    font-size: var(--text-base);
    margin-bottom: 2px;
}

.testimonial-card-role {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.testimonial-card-trip {
    font-size: var(--text-xs);
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 4px;
}

/* ============================================================
   20. FAQ ACCORDION
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item.active {
    box-shadow: var(--shadow-card);
    border-color: rgba(14, 116, 144, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition-base);
    text-align: left;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-item.active .faq-question {
    color: var(--color-primary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light-bg);
    border-radius: 50%;
    font-size: var(--text-sm);
    color: var(--color-primary);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 var(--space-xl) var(--space-xl);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* ============================================================
   21. FORMS
   ============================================================ */
.form-group {
    margin-bottom: var(--space-lg);
    position: relative;
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.form-label .required {
    color: var(--color-error);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--color-text-dark);
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    outline: none;
}

.form-control:hover {
    border-color: var(--color-text-muted);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.1);
}

.form-control::placeholder {
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Floating Label */
.form-floating {
    position: relative;
}

.form-floating .form-control {
    padding: 20px 18px 8px;
}

.form-floating .form-floating-label {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    font-size: var(--text-base);
    color: var(--color-text-muted);
    pointer-events: none;
    transition: var(--transition-base);
    background: var(--color-white);
    padding: 0 4px;
}

.form-floating .form-control:focus ~ .form-floating-label,
.form-floating .form-control:not(:placeholder-shown) ~ .form-floating-label {
    top: 0;
    font-size: var(--text-xs);
    color: var(--color-primary);
    font-weight: 600;
}

/* Select */
.form-select {
    width: 100%;
    padding: 14px 40px 14px 18px;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--color-text-dark);
    background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 16px center;
    background-size: 12px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.1);
}

/* Textarea */
textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Checkbox & Radio */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    cursor: pointer;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    -webkit-appearance: none;
    appearance: none;
}

.form-check-input:checked {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
}

.form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
}

.form-check-input[type="radio"] {
    border-radius: 50%;
}

.form-check-input[type="radio"]:checked::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
}

.form-check-label {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    cursor: pointer;
    line-height: 1.4;
    padding-top: 1px;
}

/* Form Helper / Error */
.form-text {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

.form-error {
    font-size: var(--text-xs);
    color: var(--color-error);
    margin-top: var(--space-xs);
}

.form-control.is-invalid {
    border-color: var(--color-error);
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-control.is-valid {
    border-color: var(--color-success);
}

.form-control.is-valid:focus {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Search Form (Hero/Search Bar) */
.search-form {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.search-form .form-group {
    flex: 1;
    min-width: 160px;
    margin-bottom: 0;
}

.search-form .form-control {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
}

.search-form .btn {
    flex-shrink: 0;
}

/* ============================================================
   22. FOOTER
   ============================================================ */
.footer {
    background: var(--gradient-footer);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-top {
    padding: var(--space-4xl) 0 var(--space-3xl);
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: var(--space-lg);
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 20px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-white);
}

.footer-logo-text span {
    color: var(--color-accent);
}

.footer-brand-text {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-base);
    transition: var(--transition-base);
}

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

.footer-heading {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.footer-contact-item i {
    width: 20px;
    color: var(--color-primary-light);
    font-size: var(--text-base);
    margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-base);
    line-height: var(--leading-normal);
}

.footer-contact-item a:hover {
    color: var(--color-white);
}

/* Footer Newsletter */
.footer-newsletter {
    margin-top: var(--space-lg);
}

.footer-newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: var(--text-sm);
    transition: var(--transition-base);
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form input:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.2);
}

.footer-newsletter-form .btn {
    padding: 12px 20px;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-lg) 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright a {
    color: var(--color-accent);
    text-decoration: none;
}

.footer-copyright a:hover {
    color: var(--color-accent-light);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.footer-bottom-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-base);
}

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

/* ============================================================
   23. BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: var(--text-lg);
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(14, 116, 144, 0.4);
}

.back-to-top::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    animation: pulse 2s ease-in-out infinite;
    opacity: 0.5;
}

/* ============================================================
   24. CTA SECTIONS
   ============================================================ */
.cta-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--gradient-cta);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
    line-height: var(--leading-relaxed);
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ============================================================
   25. NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
    padding: var(--space-4xl) 0;
    background: var(--color-light-bg);
    position: relative;
}

.newsletter-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-3xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light-bg);
    border-radius: 50%;
    font-size: 28px;
    color: var(--color-primary);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.newsletter-text {
    font-size: var(--text-base);
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    transition: var(--transition-base);
}

.newsletter-form input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.1);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--color-text-muted);
}

.newsletter-form .btn {
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.newsletter-note {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-md);
}

/* ============================================================
   26. PAGE HEADER / BANNER (Inner Pages)
   ============================================================ */
.page-header {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(14, 116, 144, 0.6) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: calc(var(--navbar-height) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
}

.page-header-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.page-header-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   27. BREADCRUMBS
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    padding: var(--space-md) 0;
    margin-bottom: var(--space-lg);
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.breadcrumb-item a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-base);
}

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

.breadcrumb-item.active {
    color: var(--color-primary);
    font-weight: 600;
}

.breadcrumb-separator {
    font-size: 10px;
    color: var(--color-text-muted);
}

/* Breadcrumb on Page Header (white version) */
.page-header .breadcrumb {
    justify-content: center;
    margin-top: var(--space-md);
    margin-bottom: 0;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item a:hover {
    color: var(--color-white);
}

.page-header .breadcrumb-item.active {
    color: var(--color-accent);
}

.page-header .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   28. BADGES / TAGS
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    line-height: 1.4;
    white-space: nowrap;
}

.badge-primary {
    background: rgba(14, 116, 144, 0.1);
    color: var(--color-primary);
}

.badge-secondary {
    background: rgba(20, 184, 166, 0.1);
    color: var(--color-secondary);
}

.badge-accent {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-accent-dark);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.badge-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

.badge-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.badge-outline {
    background: transparent;
    border: 1px solid currentColor;
}

.badge-solid-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.badge-solid-accent {
    background: var(--gradient-accent);
    color: var(--color-dark);
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-text-light);
    background: var(--color-off-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    cursor: pointer;
}

.tag:hover {
    background: var(--color-light-bg);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.tag.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--color-white);
}

/* ============================================================
   29. PRICE / PRICING CARDS
   ============================================================ */
.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    border: 2px solid var(--color-border-light);
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 24px;
    background: var(--gradient-accent);
    color: var(--color-dark);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0 0 0 var(--radius-lg);
}

.pricing-card-header {
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: var(--space-lg);
}

.pricing-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light-bg);
    border-radius: var(--radius-lg);
    font-size: 24px;
    color: var(--color-primary);
}

.pricing-card.featured .pricing-card-icon {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.pricing-card-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-xs);
}

.pricing-card-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.pricing-card-price {
    margin-bottom: var(--space-lg);
}

.pricing-card-amount {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1;
}

.pricing-card-amount .currency {
    font-size: var(--text-2xl);
    vertical-align: super;
    margin-right: 2px;
}

.pricing-card-amount .period {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--color-text-muted);
    font-family: var(--font-primary);
}

.pricing-card-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-xl);
    flex: 1;
}

.pricing-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border-light);
}

.pricing-card-features li:last-child {
    border-bottom: none;
}

.pricing-card-features li i {
    color: var(--color-success);
    font-size: var(--text-sm);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.pricing-card-features li.disabled {
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.pricing-card-features li.disabled i {
    color: var(--color-text-muted);
}

.pricing-card .btn {
    width: 100%;
}

/* ============================================================
   30. TIMELINE / PROCESS STEPS
   ============================================================ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--color-border);
    border-radius: var(--radius-full);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-2xl);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 30px);
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: 4px solid var(--color-white);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-base);
}

.timeline-item:hover .timeline-dot::after {
    opacity: 0.3;
}

.timeline-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
    width: 100%;
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.timeline-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-light-bg);
    color: var(--color-primary);
    font-size: var(--text-sm);
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.timeline-text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* Process Steps (Horizontal) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 3px solid var(--color-border);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-text-muted);
    transition: var(--transition-base);
}

.process-step:hover .process-step-number {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.process-step-text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* ============================================================
   31. CONTACT INFO CARDS
   ============================================================ */
.contact-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light-bg);
    border-radius: 50%;
    font-size: 28px;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.contact-card:hover .contact-card-icon {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.contact-card-text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

.contact-card-text a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-card-text a:hover {
    color: var(--color-secondary);
}

/* ============================================================
   32. GOOGLE MAP PLACEHOLDER
   ============================================================ */
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-md);
    background: var(--color-off-white);
    color: var(--color-text-muted);
}

.map-placeholder i {
    font-size: 48px;
    color: var(--color-primary);
    opacity: 0.5;
}

.map-placeholder span {
    font-size: var(--text-sm);
    font-weight: 500;
}

/* Map with overlay card */
.map-overlay-card {
    position: absolute;
    top: var(--space-xl);
    left: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    max-width: 350px;
    z-index: 2;
}

/* ============================================================
   33. LEGAL PAGES (Privacy, Terms)
   ============================================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
}

.legal-content h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.legal-content h2 {
    font-size: var(--text-2xl);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border-light);
}

.legal-content h3 {
    font-size: var(--text-xl);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-sm);
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--color-secondary);
}

.legal-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    background: var(--color-light-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.legal-content blockquote p {
    color: var(--color-text-dark);
    font-style: italic;
    margin-bottom: 0;
}

.legal-last-updated {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: var(--space-2xl);
}

.legal-toc {
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
    border: 1px solid var(--color-border-light);
}

.legal-toc-title {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
}

.legal-toc ol {
    list-style: decimal;
    padding-left: var(--space-lg);
}

.legal-toc li {
    margin-bottom: var(--space-xs);
}

.legal-toc a {
    font-size: var(--text-sm);
    color: var(--color-primary);
    text-decoration: none;
}

.legal-toc a:hover {
    text-decoration: underline;
}

/* ============================================================
   34. LOADING / SKELETON STATES
   ============================================================ */
.skeleton {
    position: relative;
    overflow: hidden;
    background: var(--color-off-white);
    border-radius: var(--radius-md);
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    animation: shimmer 1.5s ease infinite;
}

.skeleton-text {
    height: 16px;
    margin-bottom: 10px;
    width: 100%;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

.skeleton-heading {
    height: 28px;
    margin-bottom: 16px;
    width: 40%;
}

.skeleton-image {
    height: 240px;
    width: 100%;
    border-radius: var(--radius-lg);
}

.skeleton-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.skeleton-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.skeleton-card .skeleton-image {
    border-radius: 0;
}

.skeleton-card-body {
    padding: var(--space-lg);
}

/* ============================================================
   35. SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

/* Fade In Up */
.animate-on-scroll.fade-in-up {
    transform: translateY(40px);
}

.animate-on-scroll.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Down */
.animate-on-scroll.fade-in-down {
    transform: translateY(-40px);
}

.animate-on-scroll.fade-in-down.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Left */
.animate-on-scroll.fade-in-left {
    transform: translateX(-40px);
}

.animate-on-scroll.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right */
.animate-on-scroll.fade-in-right {
    transform: translateX(40px);
}

.animate-on-scroll.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In */
.animate-on-scroll.scale-in {
    transform: scale(0.85);
}

.animate-on-scroll.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Fade In */
.animate-on-scroll.fade-in {
    /* just opacity */
}

.animate-on-scroll.fade-in.animated {
    opacity: 1;
}

/* Stagger delays */
.animate-delay-1 {
    transition-delay: 0.1s !important;
}

.animate-delay-2 {
    transition-delay: 0.2s !important;
}

.animate-delay-3 {
    transition-delay: 0.3s !important;
}

.animate-delay-4 {
    transition-delay: 0.4s !important;
}

.animate-delay-5 {
    transition-delay: 0.5s !important;
}

.animate-delay-6 {
    transition-delay: 0.6s !important;
}

/* ============================================================
   36. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.7;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes counterUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(16px);
    }
}

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

@keyframes typing {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes typingCursorBlink {
    0%, 100% {
        border-right-color: transparent;
    }
    50% {
        border-right-color: var(--color-white);
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        max-height: 0;
    }
    100% {
        opacity: 1;
        max-height: 500px;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Typing Cursor */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--color-accent);
    font-weight: 300;
}

/* Float animation utility */
.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate 10s linear infinite;
}

/* ============================================================
   37. ABOUT / WHY-US SECTION
   ============================================================ */
.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-accent);
    color: var(--color-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-accent);
    text-align: center;
}

.about-image-badge .badge-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1;
}

.about-image-badge .badge-text {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: var(--space-md);
    background: var(--color-light-bg);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.about-feature:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: var(--text-base);
}

.about-feature-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-dark);
}

/* ============================================================
   38. PARTNER / CLIENT LOGOS
   ============================================================ */
.partners-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
    padding: var(--space-2xl) 0;
}

.partner-logo {
    height: 40px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--transition-base);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ============================================================
   39. SOCIAL PROOF / REVIEWS STRIP
   ============================================================ */
.review-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-lg);
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
}

.review-platform {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.review-platform-stars {
    display: flex;
    gap: 2px;
    color: var(--color-accent);
    font-size: var(--text-sm);
}

.review-platform-info {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.review-platform-info strong {
    color: var(--color-text-dark);
}

/* ============================================================
   40. ALERT / NOTIFICATION BARS
   ============================================================ */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    margin-bottom: var(--space-md);
}

.alert-icon {
    font-size: var(--text-lg);
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 700;
    margin-bottom: 2px;
}

.alert-close {
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.alert-close:hover {
    opacity: 1;
}

.alert-info {
    background: rgba(59, 130, 246, 0.08);
    color: var(--color-info);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.alert-success {
    background: rgba(16, 185, 129, 0.08);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.08);
    color: var(--color-warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.08);
    color: var(--color-error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Top Announcement Bar */
.announcement-bar {
    background: var(--gradient-primary);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    position: relative;
    z-index: calc(var(--z-sticky) + 1);
}

.announcement-bar a {
    color: var(--color-accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.announcement-bar a:hover {
    color: var(--color-accent);
}

.announcement-bar-close {
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-base);
}

.announcement-bar-close:hover {
    opacity: 1;
}

/* ============================================================
   41. MODAL
   ============================================================ */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: var(--z-modal-backdrop);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

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

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-modal);
    max-width: 560px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--color-border-light);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-dark);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
    color: var(--color-text-muted);
    font-size: var(--text-lg);
}

.modal-close:hover {
    background: var(--color-off-white);
    color: var(--color-text-dark);
}

.modal-body {
    padding: var(--space-xl);
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    border-top: 1px solid var(--color-border-light);
}

/* ============================================================
   42. TABLES
   ============================================================ */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    padding: 14px 18px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-dark);
    text-align: left;
    background: var(--color-off-white);
    border-bottom: 2px solid var(--color-border);
    white-space: nowrap;
}

.table td {
    padding: 14px 18px;
    font-size: var(--text-sm);
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border-light);
    vertical-align: middle;
}

.table tr:last-child td {
    border-bottom: none;
}

.table-striped tbody tr:nth-child(even) {
    background: var(--color-off-white);
}

.table-hover tbody tr {
    transition: var(--transition-fast);
}

.table-hover tbody tr:hover {
    background: var(--color-light-bg);
}

/* ============================================================
   43. PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    list-style: none;
    padding: var(--space-xl) 0;
}

.pagination-item a,
.pagination-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-light);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition-base);
}

.pagination-item a:hover {
    background: var(--color-light-bg);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.pagination-item.active span {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--color-white);
}

.pagination-item.disabled a,
.pagination-item.disabled span {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================================
   44. TOOLTIP
   ============================================================ */
[data-tooltip] {
    position: relative;
    cursor: pointer;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    padding: 6px 12px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 500;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: var(--z-tooltip);
    pointer-events: none;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--color-dark);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: var(--z-tooltip);
    pointer-events: none;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

[data-tooltip]:hover::after {
    transform: translateX(-50%);
}

/* ============================================================
   45. PROGRESS BAR
   ============================================================ */
.progress-bar-wrapper {
    margin-bottom: var(--space-md);
}

.progress-bar-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
}

.progress-bar-label span {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-dark);
}

.progress-bar-label small {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--color-off-white);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 1s ease;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease infinite;
}

/* ============================================================
   46. TABS
   ============================================================ */
.tabs {
    margin-bottom: var(--space-xl);
}

.tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--color-border-light);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-nav-item {
    padding: 14px 24px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition-base);
    white-space: nowrap;
    text-align: center;
}

.tab-nav-item:hover {
    color: var(--color-primary);
}

.tab-nav-item.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.tab-content.active {
    display: block;
}

/* Pill Tabs */
.tab-nav-pills {
    display: flex;
    gap: var(--space-xs);
    background: var(--color-off-white);
    padding: 4px;
    border-radius: var(--radius-full);
    border-bottom: none;
    width: fit-content;
}

.tab-nav-pills .tab-nav-item {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border-bottom: none;
    margin-bottom: 0;
}

.tab-nav-pills .tab-nav-item.active {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   47. DIVIDERS & DECORATIVE ELEMENTS
   ============================================================ */
.divider {
    height: 1px;
    background: var(--color-border);
    margin: var(--space-2xl) 0;
}

.divider-gradient {
    height: 2px;
    background: var(--gradient-primary);
    margin: var(--space-2xl) 0;
    border-radius: var(--radius-full);
}

.divider-dashed {
    border: 0;
    border-top: 2px dashed var(--color-border);
    margin: var(--space-2xl) 0;
}

.divider-text {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-2xl) 0;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.divider-text span {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* ============================================================
   48. AVATAR
   ============================================================ */
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-white);
    box-shadow: var(--shadow-xs);
}

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

.avatar-sm {
    width: 32px;
    height: 32px;
}

.avatar-lg {
    width: 64px;
    height: 64px;
}

.avatar-xl {
    width: 96px;
    height: 96px;
}

.avatar-group {
    display: flex;
}

.avatar-group .avatar {
    margin-left: -12px;
}

.avatar-group .avatar:first-child {
    margin-left: 0;
}

.avatar-group .avatar-more {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-left: -12px;
    border: 2px solid var(--color-white);
}

/* ============================================================
   49. WHATSAPP / FLOATING ACTION BUTTON
   ============================================================ */
.fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: var(--z-fixed);
}

.fab-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: var(--color-white);
}

.fab-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
    opacity: 0.4;
}

/* ============================================================
   50. SPECIAL OFFER / DEAL RIBBON
   ============================================================ */
.ribbon {
    position: absolute;
    top: 16px;
    left: -8px;
    padding: 6px 16px 6px 12px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    background: var(--gradient-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.ribbon::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    border: 4px solid transparent;
    border-top-color: var(--color-accent-dark);
    border-right-color: var(--color-accent-dark);
}

/* ============================================================
   51. IMAGE COMPARISON SLIDER PLACEHOLDER
   ============================================================ */
.comparison-slider {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.comparison-slider img {
    width: 100%;
    display: block;
}

/* ============================================================
   52. BLOG / ARTICLE CARDS
   ============================================================ */
.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.blog-card-body {
    padding: var(--space-lg);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.blog-card-meta i {
    color: var(--color-primary);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
    line-height: var(--leading-snug);
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

.blog-card-title a:hover {
    color: var(--color-primary);
}

.blog-card-text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.blog-card-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-card-author-name {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-dark);
}

.blog-card-readmore {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-base);
}

.blog-card-readmore:hover {
    gap: 8px;
    color: var(--color-secondary);
}

/* ============================================================
   53. SWIPER / CAROUSEL NAVIGATION DOTS & ARROWS
   ============================================================ */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-text-muted);
    opacity: 0.3;
    transition: var(--transition-base);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--color-primary);
    width: 30px;
    border-radius: var(--radius-full);
}

.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--color-text-dark);
    transition: var(--transition-base);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-primary);
}

/* Custom Carousel Arrows */
.carousel-arrows {
    display: flex;
    gap: var(--space-sm);
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition-base);
    font-size: var(--text-base);
}

.carousel-arrow:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--color-white);
    box-shadow: var(--shadow-primary);
}

/* Custom Dots */
.custom-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: var(--space-lg) 0;
}

.custom-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: var(--transition-base);
}

.custom-dot.active {
    background: var(--gradient-primary);
    width: 30px;
    border-radius: var(--radius-full);
}

/* ============================================================
   54. COOKIE CONSENT BAR
   ============================================================ */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-lg) var(--space-xl);
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-bar.visible {
    transform: translateY(0);
}

.cookie-bar-text {
    font-size: var(--text-sm);
    flex: 1;
}

.cookie-bar-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-bar-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

/* ============================================================
   55. RESPONSIVE — 1200px BREAKPOINT
   ============================================================ */
@media (max-width: 1200px) {
    :root {
        --text-7xl: 3.75rem;
        --text-6xl: 3rem;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
    }

    .container {
        max-width: 100%;
    }

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

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

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-grid > *:last-child {
        grid-column: 1 / -1;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-md);
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }

    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-8px);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-grid .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-grid .gallery-item:nth-child(4) {
        grid-row: span 1;
    }
}

/* ============================================================
   56. RESPONSIVE — 992px BREAKPOINT
   ============================================================ */
@media (max-width: 992px) {
    :root {
        --text-7xl: 3rem;
        --text-6xl: 2.5rem;
        --text-5xl: 2.25rem;
        --text-4xl: 1.875rem;
        --text-3xl: 1.5rem;
        --space-5xl: 80px;
    }

    .section {
        padding: var(--space-4xl) 0;
    }

    /* Navigation — Mobile */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--navbar-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
        box-shadow: var(--shadow-2xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: calc(var(--z-sticky) - 1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--color-text-dark);
        padding: 14px 16px;
        font-size: var(--text-base);
        border-radius: var(--radius-md);
    }

    .nav-link:hover {
        background: var(--color-light-bg);
        color: var(--color-primary);
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: var(--space-md);
    }

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

    /* Dropdown Mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 var(--space-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-item.dropdown-open .dropdown-menu {
        max-height: 500px;
    }

    /* Grids */
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

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

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

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

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

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

    .stat-number {
        font-size: var(--text-5xl);
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    /* Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-right: 0;
        padding-left: 60px;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-grid .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    /* Hero Stats */
    .hero-stats {
        gap: var(--space-xl);
    }

    /* Pricing */
    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    /* Map */
    .map-overlay-card {
        position: static;
        max-width: 100%;
        margin-top: var(--space-lg);
    }

    .map-container {
        height: 350px;
    }
}

/* ============================================================
   57. RESPONSIVE — 768px BREAKPOINT
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --text-7xl: 2.5rem;
        --text-6xl: 2.25rem;
        --text-5xl: 2rem;
        --text-4xl: 1.5rem;
        --text-3xl: 1.25rem;
        --space-5xl: 60px;
        --space-4xl: 48px;
        --navbar-height: 70px;
    }

    .section-header {
        margin-bottom: var(--space-2xl);
    }

    .section-header .section-title {
        font-size: var(--text-3xl);
    }

    .section-header .section-description {
        font-size: var(--text-base);
    }

    /* Hero */
    .hero-title {
        font-size: var(--text-5xl);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .hero-stats {
        gap: var(--space-lg);
        flex-wrap: wrap;
    }

    .hero-stat-number {
        font-size: var(--text-3xl);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    /* Page Header */
    .page-header {
        min-height: 35vh;
    }

    .page-header-title {
        font-size: var(--text-4xl);
    }

    /* Grids */
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
    }

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

    /* Destination Card */
    .destination-card {
        height: 350px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        text-align: center;
    }

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

    .footer-heading::after {
        left: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .stat-number {
        font-size: var(--text-4xl);
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-grid .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* CTA */
    .cta-title {
        font-size: var(--text-3xl);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

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

    /* Footer Newsletter */
    .footer-newsletter-form {
        flex-direction: column;
    }

    /* Search Form */
    .search-form {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .search-form .form-group {
        min-width: 100%;
    }

    .search-form .btn {
        width: 100%;
    }

    /* Breadcrumb */
    .breadcrumb {
        justify-content: center;
    }

    /* About features */
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image-badge {
        bottom: -10px;
        right: var(--space-md);
    }

    /* Review Strip */
    .review-strip {
        flex-direction: column;
        gap: var(--space-md);
    }

    /* Cookie Bar */
    .cookie-bar {
        flex-direction: column;
        text-align: center;
    }

    /* FAB and Back to top */
    .fab {
        bottom: 20px;
        left: 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    /* Tabs */
    .tab-nav {
        overflow-x: auto;
    }

    .tab-nav-pills {
        width: 100%;
    }

    .tab-nav-pills .tab-nav-item {
        flex: 1;
    }

    /* Pricing */
    .pricing-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Modal */
    .modal {
        width: 95%;
        max-height: 90vh;
    }

    /* Legal */
    .legal-content {
        padding: var(--space-2xl) var(--space-md);
    }

    .legal-content h1 {
        font-size: var(--text-3xl);
    }

    .legal-content h2 {
        font-size: var(--text-xl);
    }

    /* Partners */
    .partners-strip {
        gap: var(--space-xl);
    }

    .partner-logo {
        height: 30px;
    }
}

/* ============================================================
   58. RESPONSIVE — 576px BREAKPOINT
   ============================================================ */
@media (max-width: 576px) {
    :root {
        --text-7xl: 2rem;
        --text-6xl: 1.875rem;
        --text-5xl: 1.75rem;
        --text-4xl: 1.5rem;
        --text-3xl: 1.25rem;
        --text-2xl: 1.125rem;
        --space-5xl: 48px;
        --space-4xl: 36px;
        --space-3xl: 30px;
        --navbar-height: 64px;
    }

    body {
        font-size: var(--text-sm);
    }

    .container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 var(--space-md);
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-subtitle {
        font-size: var(--text-sm);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-scroll {
        bottom: 24px;
    }

    /* Nav Menu */
    .nav-menu {
        width: 100%;
    }

    /* Grid */
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .grid-6 {
        grid-template-columns: 1fr;
    }

    /* Cards */
    .service-card {
        padding: var(--space-lg);
    }

    .destination-card {
        height: 300px;
    }

    .package-card-image {
        height: 200px;
    }

    .team-card-image {
        height: 240px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .stat-item {
        padding: var(--space-md);
    }

    .stat-number {
        font-size: var(--text-3xl);
    }

    .stat-label {
        font-size: var(--text-xs);
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-grid .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Section Header */
    .section-header .section-subtitle::before,
    .section-header .section-subtitle::after {
        width: 20px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: var(--text-sm);
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: var(--text-base);
    }

    /* Pricing */
    .pricing-card {
        padding: var(--space-lg);
    }

    .pricing-card-amount {
        font-size: var(--text-4xl);
    }

    /* Testimonial */
    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-card-quote {
        font-size: 60px;
    }

    /* FAQ */
    .faq-question {
        padding: var(--space-md);
        font-size: var(--text-sm);
    }

    .faq-answer-content {
        padding: 0 var(--space-md) var(--space-md);
    }

    /* Footer */
    .footer-top {
        padding: var(--space-3xl) 0;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    /* Timeline */
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 48px;
    }

    .timeline-dot {
        left: 12px;
        width: 16px;
        height: 16px;
    }

    .timeline::before {
        left: 12px;
        width: 2px;
    }

    .timeline-content {
        padding: var(--space-md);
    }

    /* Contact Card */
    .contact-card {
        padding: var(--space-lg);
    }

    .contact-card-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    /* Map */
    .map-container {
        height: 280px;
        border-radius: var(--radius-md);
    }

    /* Glass Card */
    .glass-card,
    .glass-card-dark {
        padding: var(--space-lg);
    }

    /* CTA */
    .cta-section {
        padding: var(--space-3xl) 0;
    }

    /* Newsletter */
    .newsletter-card {
        padding: var(--space-xl);
    }

    .newsletter-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    /* Blog Card */
    .blog-card-image {
        height: 180px;
    }

    /* Legal */
    .legal-content h1 {
        font-size: var(--text-2xl);
    }

    .legal-content h2 {
        font-size: var(--text-lg);
    }

    /* About */
    .about-image-badge {
        position: static;
        display: inline-block;
        margin-top: var(--space-md);
    }

    /* Pagination */
    .pagination {
        gap: 2px;
    }

    .pagination-item a,
    .pagination-item span {
        min-width: 36px;
        height: 36px;
        font-size: var(--text-xs);
    }

    /* Tab nav mobile scroll */
    .tab-nav {
        gap: 0;
    }

    .tab-nav-item {
        padding: 10px 16px;
        font-size: var(--text-xs);
    }

    /* Announcement bar */
    .announcement-bar {
        font-size: var(--text-xs);
        padding: var(--space-xs) var(--space-xl) var(--space-xs) var(--space-md);
    }

    /* Alert */
    .alert {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ============================================================
   59. RESPONSIVE — Very Small Screens (max-width: 380px)
   ============================================================ */
@media (max-width: 380px) {
    :root {
        --text-4xl: 1.375rem;
        --text-3xl: 1.125rem;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-badge {
        font-size: var(--text-xs);
        padding: 6px 14px;
    }

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

    .footer-bottom-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ============================================================
   60. PRINT STYLES
   ============================================================ */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }

    p {
        orphans: 3;
        widows: 3;
    }

    .navbar,
    .hamburger,
    .back-to-top,
    .fab,
    .preloader,
    .cookie-bar,
    .announcement-bar {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .section {
        padding: 1.5rem 0;
    }

    .footer {
        padding: 1rem 0;
    }
}

/* ============================================================
   61. REDUCED MOTION / ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-background img,
    .hero-background video {
        transform: none !important;
    }
}

/* ============================================================
   62. DARK MODE SUPPORT (Optional)
   ============================================================ */
@media (prefers-color-scheme: dark) {
    /* Uncomment below to enable auto-dark-mode */
    /*
    :root {
        --color-white: #0F172A;
        --color-off-white: #1E293B;
        --color-light-bg: #1E293B;
        --color-text-dark: #F1F5F9;
        --color-text-light: #94A3B8;
        --color-text-muted: #64748B;
        --color-border: #334155;
        --color-border-light: #1E293B;
    }
    */
}

/* ============================================================
   63. FOCUS STYLES FOR ACCESSIBILITY
   ============================================================ */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.2);
}

a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Skip to main content */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: calc(var(--z-preloader) + 1);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* ============================================================
   END OF STYLESHEET
   ============================================================ */

/* ============================================================
   99. UI/UX PREMIUM PIXEL-PERFECT FIXES 
   ============================================================ */

/* 1. Global Horizontal Scroll Prevention */
html, body {
    overflow-x: hidden !important;
    width: 100%;
}

/* 2. Grid alignments - stretch to make cards equal height */
.features-grid, .why-grid, .destinations-grid, .packages-grid, .team-grid, .about-features {
    align-items: stretch !important;
}

/* 3. Service Cards Equal Height */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card-text {
    flex-grow: 1;
}
.service-card-link {
    margin-top: auto;
}

/* 4. Why Choose Us Cards Equal Height */
.why-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.why-card p {
    flex-grow: 1;
    margin-bottom: 0;
}

/* 5. Destination Cards Object Fit & Flex */
.destination-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}
.destination-card-img img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

/* 6. Package Cards Flex */
.package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.package-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.package-card-desc {
    flex-grow: 1;
}

/* 7. Testimonial Alignment */
.testimonial-card {
    display: flex !important;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.testimonial-text {
    flex-grow: 1;
}
.testimonial-author {
    display: flex !important;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}
.testimonial-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

/* 8. Equal Footer Alignments */
.footer-grid {
    align-items: flex-start !important;
}

/* 9. Navbar Spacing Fix */
.nav-menu {
    display: flex;
    gap: 24px;
}
@media (max-width: 992px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
}

/* 10. Center Call To Action properly */
.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* 11. Team Card Flex */
.team-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.team-card-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.team-social {
    margin-top: auto;
    padding-top: 15px;
}

/* 12. Fix Container Paddings on Mobile to avoid overflow */
@media (max-width: 992px) {
    .container {
        overflow-x: hidden;
    }
}
/* 13. Gallery Images */
.gallery-item img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

/* 14. Typography Consistency */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}
p {
    line-height: 1.6;
}

/* 15. Buttons Consistency */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* 16. Final Premium Polish */
.btn {
    padding: 14px 28px !important;
    font-weight: 600 !important;
    border-radius: var(--radius-full) !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.service-card, .destination-card, .package-card, .team-card, .why-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
}

/* 17. Dropdown Menu Fix */
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.show .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: var(--transition-base);
}
.dropdown-menu li a:hover {
    background: var(--color-light-bg);
    color: var(--color-primary);
    transform: translateX(4px);
}

/* 18. Footer Padding Fix */
.footer {
    padding: 80px 0 20px 0 !important;
}

/* 19. Custom Grid Layouts */
.features-grid, .why-grid, .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .features-grid, .why-grid, .destinations-grid, .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid, .why-grid, .destinations-grid, .packages-grid, .team-grid {
        grid-template-columns: 1fr;
    }
}

/* 20. Destination Card Class Name Mappings */
.destination-card-img {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.destination-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.destination-card-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(20, 184, 166, 0.95);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.destination-card-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.destination-card-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.destination-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-xs);
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.destination-card-meta i {
    color: var(--color-secondary);
}

.destination-price {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.destination-price strong {
    font-size: var(--text-xl);
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.destination-card-content p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.destination-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin: var(--space-sm) 0 var(--space-md) 0;
}

.destination-highlights span {
    font-size: var(--text-xs);
    color: var(--color-text-light);
    background: var(--color-off-white);
    border: 1px solid var(--color-border-light);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

/* 21. Legal Pages Content Styling */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-content p {
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-lg);
}

.legal-content ul {
    list-style-type: disc;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-lg);
    color: var(--color-text-light);
}

.legal-content li {
    margin-bottom: var(--space-xs);
    line-height: var(--leading-normal);
}

/* 22. Page Header and Banner Fallbacks (Vanilla CSS) */
.page-header {
    position: relative;
    width: 100%;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.page-header .page-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
    line-height: var(--leading-tight);
}

.page-header .page-subtitle {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.page-header .breadcrumb {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-base);
}

.page-header .breadcrumb a:hover {
    color: var(--color-accent);
}

.page-header .breadcrumb i {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
}

/* 23. Logo Image Styling */
.logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.2s ease;
}

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

.logo-img-footer {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}
