/* ============================================
   CSS VARIABLES & ROOT
============================================= */
:root {
    --color-primary: #D4A853;
    --color-primary-dark: #b8912e;
    --color-primary-light: #e8c87a;
    --color-dark: #021527;
    --color-darker: #010d1a;
    --color-navy: #0a2540;
    --color-text: #2c3e50;
    --color-text-light: #6b7c8d;
    --color-text-muted: #95a5b0;
    --color-bg: #ffffff;
    --color-bg-warm: #faf8f5;
    --color-bg-section: #f5f0ea;
    --color-border: #e8e2d8;
    --color-border-light: #f0ece6;
    --color-white: #ffffff;
    --color-overlay: rgba(2, 21, 39, 0.55);
    --color-overlay-dark: rgba(2, 21, 39, 0.75);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(2, 21, 39, 0.06);
    --shadow-md: 0 8px 30px rgba(2, 21, 39, 0.1);
    --shadow-lg: 0 20px 60px rgba(2, 21, 39, 0.15);
    --shadow-xl: 0 30px 80px rgba(2, 21, 39, 0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1320px;
    --header-height: 80px;
    --top-bar-height: 40px;
}

/* ============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ============================================
   LOGO IMAGE STYLES
============================================= */
.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    transition: all var(--transition);
    border: 2px solid rgba(212, 168, 83, 0.3);
}

/* Shrinks when header becomes sticky */
.header.is-sticky .logo-img {
    width: 50px;
    height: 50px;
}

/* Footer logo */
.footer-logo-img {
    width: 60px;
    height: 60px;
}

/* Mobile menu logo */
.mobile-logo-img {
    width: 50px;
    height: 50px;
}

/* ============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 12px;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: var(--radius-sm);
}

.btn-sm:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 15px;
}

/* ============================================
   TOP BAR
============================================= */
.top-bar {
    background: var(--color-dark);
    height: var(--top-bar-height);
    position: relative;
    z-index: 1001;
    transition: all var(--transition);
}

.top-bar-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
    transition: color var(--transition);
}

.top-bar-link:hover {
    color: var(--color-primary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.top-bar-social:hover {
    color: var(--color-primary);
}

.top-bar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ============================================
   HEADER
============================================= */
.header {
    position: fixed;
    top: var(--top-bar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--transition);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon svg {
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.logo-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

/* Sticky header styles */
.header.is-sticky {
    top: 0;
    background: var(--color-darker);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    height: 65px;
}

.header.is-sticky .logo-main {
    font-size: 9px;
}

.header.is-sticky .logo-name {
    font-size: 22px;
}

.header.is-sticky .logo-icon svg {
    width: 34px;
    height: 34px;
}

@media (max-width: 768px) {
    .header {
        top: 0;
    }
}

/* ============================================
   NAVIGATION
============================================= */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    text-transform: capitalize;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--color-primary);
}

.nav-arrow {
    transition: transform var(--transition);
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Level 1 Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 360px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 100;
}

.nav-item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    position: relative;
}

.dropdown-item > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition);
}

.dropdown-item > a:hover {
    background: var(--color-bg-section);
    color: var(--color-primary);
    padding-left: 28px;
}

.dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-section);
    color: var(--color-primary);
    flex-shrink: 0;
    transition: all var(--transition);
}

.dropdown-item > a:hover .dropdown-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.nav-arrow-right {
    margin-left: auto;
    transition: transform var(--transition);
}

.has-dropdown-right:hover .nav-arrow-right {
    transform: translateX(3px);
}

/* Level 2 Dropdown */
.level-2 {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition);
    z-index: 101;
}

.has-dropdown-right:hover > .level-2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.level-2 li a {
    display: block;
    padding: 8px 24px;
    font-size: 13px;
    color: var(--color-text);
    transition: all var(--transition);
}

.level-2 li a:hover {
    background: var(--color-bg-section);
    color: var(--color-primary);
    padding-left: 28px;
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
}

/* ============================================
   HEADER ACTIONS
============================================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-tailormade {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: var(--color-white);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.btn-tailormade:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
}

.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}

.search-toggle:hover {
    color: var(--color-primary);
}

.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger span:nth-child(2) {
    width: 18px;
}

@media (max-width: 1024px) {
    .mobile-toggle {
        display: flex;
    }
    .btn-tailormade,
    .search-toggle {
        display: none;
    }
}

/* ============================================
   MOBILE MENU
============================================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-darker);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-header .logo-text {
    display: flex;
    flex-direction: column;
}

.mobile-close {
    color: var(--color-white);
    padding: 8px;
    transition: color var(--transition);
}

.mobile-close:hover {
    color: var(--color-primary);
}

.mobile-nav-list {
    padding: 16px 0;
    flex: 1;
}

.mobile-nav-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--transition);
}

.mobile-nav-list > li > a:hover,
.mobile-nav-list > li > a.active {
    color: var(--color-primary);
}

.mobile-arrow {
    font-size: 18px;
    transition: transform var(--transition);
}

.mobile-has-sub.is-open .mobile-arrow {
    transform: rotate(45deg);
}

.mobile-sub-menu {
    display: none;
    padding: 0 0 8px 0;
    background: rgba(255, 255, 255, 0.03);
}

.mobile-has-sub.is-open .mobile-sub-menu {
    display: block;
}

.mobile-sub-menu li a {
    display: block;
    padding: 10px 24px 10px 48px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.mobile-sub-menu li a:hover {
    color: var(--color-primary);
    padding-left: 52px;
}

.mobile-menu-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-footer a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-menu-footer a:hover {
    color: var(--color-primary);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   SEARCH OVERLAY
============================================= */
.search-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-overlay-dark);
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 100%;
    max-width: 600px;
    padding: 0 40px;
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--color-white);
    padding: 16px 0;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-submit {
    color: var(--color-white);
    padding: 16px;
    transition: color var(--transition);
}

.search-submit:hover {
    color: var(--color-primary);
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.search-close:hover {
    color: var(--color-white);
}

/* ============================================
   HERO CAROUSEL
============================================= */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
    overflow: hidden;
    background-color: #021527;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* ============================================
   HERO VIDEO STYLES
============================================= */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-slide:not(.active) .hero-video {
    display: none;
}

.hero-slide.active .hero-video {
    display: block;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(2, 21, 39, 0.75) 0%,
        rgba(2, 21, 39, 0.4) 50%,
        rgba(2, 21, 39, 0.2) 100%
    );
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    z-index: 3;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 80px;
}
.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(212, 168, 83, 0.4);
    border-radius: 2px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero animations */
.hero-slide .animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .animate-in:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-slide.active .animate-in:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero-slide.active .animate-in:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.hero-slide.active .animate-in:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 15%;
    right: 80px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.hero-nav-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    transition: all var(--transition);
}

.hero-dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.2);
}

/* Hero Counter */
.hero-counter {
    position: absolute;
    bottom: 40px;
    right: 80px;
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.hero-counter-current {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 80px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--color-primary);
    animation: scrollDown 1.5s ease infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 150%; }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 24px;
        bottom: 20%;
    }
    .hero-nav {
        right: 24px;
        bottom: 20%;
    }
    .hero-counter,
    .scroll-indicator {
        display: none;
    }
    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   MARQUEE BANNER
============================================= */
.marquee-banner {
    background: var(--color-primary);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    padding: 0 16px;
    letter-spacing: 0.02em;
}

.marquee-star {
    font-size: 14px !important;
    opacity: 0.5;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION STYLES
============================================= */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-desc {
    margin: 0 auto;
}

.section-header-light .section-tag {
    color: var(--color-primary);
}

.section-header-light .section-title {
    color: var(--color-white);
}

.section-header-light .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ABOUT INTRO SECTION
============================================= */
.about-intro {
    padding: 120px 0;
    background: var(--color-bg-warm);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-desc {
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 4px;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--color-white);
    box-shadow: var(--shadow-lg);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.badge-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.badge-text {
    font-size: 10px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-img-accent {
        left: auto;
        right: 20px;
        bottom: -30px;
        width: 150px;
        height: 200px;
    }
}

/* ============================================
   DESTINATIONS CAROUSEL
============================================= */
.destinations-section {
    padding: 100px 0 120px;
}

.destinations-carousel-wrapper {
    position: relative;
    padding: 0 40px;
}

.destinations-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.destinations-carousel::-webkit-scrollbar {
    display: none;
}

.dest-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.dest-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.dest-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-image img {
    transform: scale(1.08);
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 21, 39, 0.4) 0%, transparent 60%);
}

.dest-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: var(--color-primary);
    color: var(--color-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}

.dest-card-content {
    padding: 24px;
}

.dest-card-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.dest-card-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.dest-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all var(--transition);
}

.dest-card-link:hover {
    color: var(--color-primary-dark);
    gap: 12px;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.carousel-btn:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .dest-card {
        flex: 0 0 280px;
    }
    .destinations-carousel-wrapper {
        padding: 0 20px;
    }
}

/* ============================================
   TOURS SECTION
============================================= */
.tours-section {
    padding: 100px 0 120px;
    background: var(--color-bg-warm);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tour-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.08);
}

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 21, 39, 0.3) 0%, transparent 50%);
}

.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: var(--color-primary);
    color: var(--color-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}

.tour-badge-new {
    background: #2ecc71;
    color: var(--color-white);
}

.tour-duration {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(2, 21, 39, 0.7);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.tour-card-content {
    padding: 24px;
}

.tour-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tour-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars {
    color: var(--color-primary);
    font-size: 13px;
}

.rating-count {
    font-size: 12px;
    color: var(--color-text-muted);
}

.tour-card-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.tour-card-content > p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.tour-highlights span {
    padding: 4px 10px;
    background: var(--color-bg-section);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-light);
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--color-border-light);
}

.tour-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-from {
    font-size: 12px;
    color: var(--color-text-muted);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-dark);
}

.price-person {
    font-size: 12px;
    color: var(--color-text-muted);
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 968px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PROCESS SECTION
============================================= */
.process-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.process-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-overlay-dark);
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 24px;
}

.process-step-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.process-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 168, 83, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-primary);
    transition: all var(--transition);
}

.process-step:hover .process-step-icon {
    background: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.process-line {
    position: absolute;
    top: 80px;
    right: -15%;
    width: 30%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.process-step:last-child .process-line {
    display: none;
}

@media (max-width: 968px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-line {
        display: none;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   EXPERIENCES CAROUSEL
============================================= */
.experiences-section {
    padding: 100px 0 120px;
}

.experiences-carousel-wrapper {
    position: relative;
    padding: 0 40px;
}

.experiences-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.experiences-carousel::-webkit-scrollbar {
    display: none;
}

.exp-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.exp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.exp-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.exp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exp-card:hover .exp-card-image img {
    transform: scale(1.08);
}

.exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 21, 39, 0.2) 0%, transparent 50%);
}

.exp-card-content {
    padding: 28px;
    position: relative;
}

.exp-card-icon {
    position: absolute;
    top: -28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.exp-card:hover .exp-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.exp-card-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.exp-card-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .exp-card {
        flex: 0 0 280px;
    }
    .experiences-carousel-wrapper {
        padding: 0 20px;
    }
}

/* ============================================
   TESTIMONIALS SECTION
============================================= */
.testimonials-section {
    padding: 100px 0 120px;
    background: var(--color-bg-warm);
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: none;
}

.testimonial-card.is-active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-stars {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    text-align: left;
}

.testimonial-info strong {
    display: block;
    font-size: 15px;
    color: var(--color-dark);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    transition: all var(--transition);
}

.testimonial-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* ============================================
   GALLERY SECTION
============================================= */
.gallery-section {
    padding: 100px 0 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 21, 39, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   CTA SECTION
============================================= */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 21, 39, 0.85) 0%,
        rgba(10, 37, 64, 0.75) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
============================================= */
.footer {
    background: var(--color-darker);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ============================================
   BACK TO TOP
============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
============================================= */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   GRAIN OVERLAY (ATMOSPHERE)
============================================= */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 9999;
}
