/* ============================================================
   NAYA TOURS — MAIN STYLESHEET
   Premium Boat Tours · Vlora, Albanian Riviera
   ============================================================ */

/* ==========================================================
   1. CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================== */
:root {
    /* Colors */
    --color-primary: #0a1628;
    --color-secondary: #1a8a7d;
    --color-accent: #c9a96e;
    --color-accent-dark: #b8944d;
    --color-accent-light: #d4ba85;
    --color-white: #ffffff;
    --color-off-white: #f8f9fa;
    --color-cream: #f9f7f4;
    --color-text: #333333;
    --color-text-light: #555555;
    --color-text-muted: #777777;
    --color-text-faint: #999999;
    --color-border: #eeeeee;
    --color-border-light: #dddddd;
    --color-dark-bg: #0a1628;
    --color-dark-text: #bbbbbb;
    --color-success: #25D366;

    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-compact: 60px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.3);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;

    /* Z-index */
    --z-loader: 9999;
    --z-lightbox: 9998;
    --z-nav: 1000;
    --z-sidebar: 1001;
    --z-float: 999;
    --z-back-top: 998;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    outline: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.3;
    color: var(--color-primary);
}

/* Selection */
::selection {
    background-color: var(--color-accent);
    color: var(--color-white);
}

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

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

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

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

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

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

/* ==========================================================
   3. LAYOUT & CONTAINERS
   ========================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

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

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

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-compact {
    padding: var(--section-padding-compact);
}

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

.section-light {
    background-color: var(--color-cream);
}

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

/* ==========================================================
   4. TYPOGRAPHY
   ========================================================== */
.section-tag {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.section-text {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

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

.section-subtitle {
    font-size: 17px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.section-subtitle.light {
    color: #aaaaaa;
}

/* ==========================================================
   5. BUTTONS
   ========================================================== */
.btn {
    display: inline-block;
    padding: 16px 48px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    color: var(--color-white);
    box-shadow: 0 6px 30px rgba(201, 169, 110, 0.5);
    transform: translateY(-2px);
}

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

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

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

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

.btn-whatsapp {
    background: var(--color-success);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-large {
    padding: 20px 48px;
    font-size: 16px;
}

/* ==========================================================
   6. LOADING SCREEN
   ========================================================== */
.naya-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loader);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.loader-content {
    text-align: center;
}

.loader-wave {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 20px;
}

.loader-wave span {
    width: 4px;
    height: 30px;
    background: var(--color-accent);
    border-radius: 2px;
    animation: loaderWave 1.2s ease-in-out infinite;
}

.loader-wave span:nth-child(2) { animation-delay: 0.1s; }
.loader-wave span:nth-child(3) { animation-delay: 0.2s; }
.loader-wave span:nth-child(4) { animation-delay: 0.3s; }
.loader-wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes loaderWave {
    0%, 40%, 100% { transform: scaleY(0.4); }
    20% { transform: scaleY(1); }
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-accent);
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* ==========================================================
   7. NAVIGATION
   ========================================================== */
.naya-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    transition: all var(--transition-base);
    padding: 20px 0;
}

.nav-transparent {
    background: transparent;
}

.nav-solid {
    background: var(--color-primary);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 2;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: height var(--transition-base);
    border-radius: var(--radius-sm);
}

.nav-solid .logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-base);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

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

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a.active {
    color: var(--color-accent);
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark)) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm);
    animation: navCtaPulse 2s ease-in-out infinite;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.5);
    transform: translateY(-1px);
}

@keyframes navCtaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(201, 169, 110, 0); }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 2;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
    border-radius: 1px;
}

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

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

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

/* ==========================================================
   8. MOBILE SIDEBAR
   ========================================================== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-sidebar);
    pointer-events: none;
    visibility: hidden;
}

.mobile-sidebar.open {
    pointer-events: all;
    visibility: visible;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.7);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-sidebar.open .sidebar-overlay {
    opacity: 1;
}

.sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--color-primary);
    padding: 40px 30px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.open .sidebar-content {
    transform: translateX(0);
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color var(--transition-base);
}

.sidebar-close:hover {
    color: var(--color-accent);
}

.sidebar-logo {
    margin-bottom: 40px;
    padding-top: 10px;
}

.sidebar-logo img {
    height: 50px;
    border-radius: var(--radius-sm);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.sidebar-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-links a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-base);
}

.sidebar-links a:hover {
    color: var(--color-accent);
    padding-left: 10px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    text-align: center;
    border-radius: var(--radius-sm);
    margin-top: 10px;
    padding: 14px 0 !important;
}

.sidebar-contact {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-contact a {
    color: var(--color-accent);
    font-size: 14px;
    letter-spacing: 1px;
}

.sidebar-contact a:hover {
    color: var(--color-accent-light);
}

/* ==========================================================
   9. HERO SECTION
   ========================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.6) 0%,
        rgba(10, 22, 40, 0.3) 50%,
        rgba(10, 22, 40, 0.7) 100%
    );
}

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

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 36px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-text {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 8px;
}

.scroll-chevron {
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-chevron svg {
    opacity: 0.6;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ==========================================================
   10. WAVE SEPARATOR
   ========================================================== */
.wave-separator {
    position: relative;
    margin-top: -60px;
    z-index: 1;
}

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

/* ==========================================================
   11. PAGE HEADER (inner pages)
   ========================================================== */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.7) 0%,
        rgba(10, 22, 40, 0.6) 100%
    );
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-header-title {
    font-size: 52px;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.page-header-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ==========================================================
   12. SERVICES / FEATURES GRID
   ========================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    background: var(--color-white);
}

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

.service-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.service-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.service-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 3px;
    transition: all var(--transition-base);
}

.service-link:hover {
    color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    padding: 30px;
}

.feature-item h4 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ==========================================================
   13. SPLIT SECTION (image + text)
   ========================================================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform var(--transition-slow);
}

.split-image:hover img {
    transform: scale(1.03);
}

/* ==========================================================
   14. DESTINATIONS GRID
   ========================================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    height: 280px;
    cursor: pointer;
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(10, 22, 40, 0.8));
    transition: all var(--transition-base);
}

.destination-overlay h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 2px;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(transparent, rgba(10, 22, 40, 0.9));
}

/* ==========================================================
   15. COUNTER SECTION
   ========================================================== */
.section-counter {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.counter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.85);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 400;
    color: var(--color-accent);
    display: inline;
    line-height: 1;
}

.counter-plus {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--color-accent);
    vertical-align: super;
}

.counter-label {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================
   16. TESTIMONIALS
   ========================================================== */
.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    padding: 40px;
    background: var(--color-cream);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    text-align: left;
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
}

.author-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-primary);
}

.author-location {
    font-size: 13px;
    color: var(--color-text-faint);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all var(--transition-base);
}

.slider-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 169, 110, 0.05);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

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

.dot.active {
    background: var(--color-accent);
    width: 30px;
    border-radius: 5px;
}

/* ==========================================================
   17. GALLERY PREVIEW (home page)
   ========================================================== */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 40px;
}

.gallery-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

/* ==========================================================
   18. CTA SECTIONS
   ========================================================== */
.section-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 74, 0.9), rgba(13, 38, 51, 0.9));
}

.cta-title {
    font-size: 44px;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-phone {
    margin-top: 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-phone a {
    color: var(--color-accent);
}

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

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================
   19. TOURS PAGE
   ========================================================== */
.pricing-banner {
    max-width: 650px;
    margin: 0 auto;
    padding: 28px 40px;
    background: var(--color-cream);
    border-left: 3px solid var(--color-accent);
    text-align: center;
}

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

.pricing-note {
    font-size: 13px;
    color: var(--color-text-faint);
    display: block;
    margin-top: 8px;
}

/* Tour Section Layout */
.tour-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tour-layout.reverse {
    direction: rtl;
}

.tour-layout.reverse > * {
    direction: ltr;
}

.tour-image {
    overflow: hidden;
    border-radius: var(--radius-md);
}

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

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

.tour-badge {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.tour-title {
    font-size: 34px;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.tour-desc {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 16px;
}

.tour-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
    padding: 24px;
    background: var(--color-cream);
    border-radius: var(--radius-md);
}

.detail-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-faint);
    margin-bottom: 4px;
}

.detail-value {
    font-size: 15px;
    color: var(--color-primary);
}

.tour-destinations {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.tour-divider {
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid var(--color-border);
}

/* ==========================================================
   20. GALLERY PAGE
   ========================================================== */
.gallery-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    background: var(--color-cream);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

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

/* Masonry Grid */
.gallery-masonry {
    columns: 4;
    column-gap: 12px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform var(--transition-slow);
}

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

.gallery-item .gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-caption {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 1px;
}

/* ==========================================================
   21. LIGHTBOX
   ========================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: var(--z-lightbox);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3;
    transition: color var(--transition-base);
}

.lightbox-close:hover {
    color: var(--color-accent);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    z-index: 3;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(201, 169, 110, 0.3);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    margin: 0 auto;
    border-radius: var(--radius-sm);
}

.lightbox-caption {
    margin-top: 16px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

/* ==========================================================
   22. CONTACT PAGE
   ========================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: var(--radius-full);
    padding: 8px;
}

.contact-card h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-card a {
    font-size: 16px;
    color: var(--color-text-light);
    transition: color var(--transition-base);
}

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

.contact-card p {
    font-size: 16px;
    color: var(--color-text-light);
    margin: 0;
}

.contact-note {
    font-size: 13px !important;
    color: var(--color-text-faint) !important;
    margin-top: 3px !important;
}

/* Map */
.map-header {
    padding: 40px 24px;
    background: var(--color-cream);
}

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

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

/* ==========================================================
   23. FORMS
   ========================================================== */
.naya-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-step {
    padding: 32px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    margin-bottom: -1px;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-faint);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border-light);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-off-white);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
    background: var(--color-white);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-hint {
    font-size: 12px;
    color: var(--color-text-faint);
    margin-top: 4px;
    display: block;
}

.form-submit-step {
    padding: 32px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
}

.form-disclaimer {
    font-size: 13px;
    color: var(--color-text-faint);
    margin-top: 16px;
}

.input-center {
    text-align: center;
}

.form-success {
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 24px 32px;
    background: #e8f5e9;
    border-left: 4px solid var(--color-success);
    border-radius: var(--radius-sm);
    font-size: 16px;
    color: #2e7d32;
}

/* ==========================================================
   24. BOOKING PAGE SPECIFIC
   ========================================================== */
.booking-pricing {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 40px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-accent);
}

.booking-pricing h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.price-card {
    text-align: center;
    padding: 0 30px;
}

.price-card:not(:first-child) {
    border-left: 1px solid var(--color-border);
}

.price-amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.price-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-faint);
}

.booking-form-wrap {
    max-width: 750px;
    margin: 0 auto;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 40px auto 0;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    font-weight: 300;
    font-family: var(--font-heading);
}

.step-card h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* What to Bring */
.bring-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.bring-item {
    padding: 16px 28px;
    background: var(--color-cream);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--color-text-light);
    transition: all var(--transition-base);
}

.bring-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================
   25. ABOUT PAGE SPECIFIC
   ========================================================== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-item {
    padding: 20px 0;
}

.mv-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 30px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--color-cream);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Numbered List */
.numbered-list {
    max-width: 800px;
    margin: 0 auto;
}

.numbered-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-border);
}

.numbered-item:last-child {
    border-bottom: none;
}

.numbered-count {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-accent);
    min-width: 45px;
    font-weight: 400;
}

.numbered-content h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.numbered-content p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ==========================================================
   26. FOOTER
   ========================================================== */
.naya-footer {
    position: relative;
}

.footer-wave {
    position: relative;
    margin-bottom: -2px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-main {
    background: var(--color-dark-bg);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
}

.footer-about-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    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-base);
}

.social-icon:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 169, 110, 0.1);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-heading.text-center {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-base);
}

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

.footer-icon {
    font-size: 14px;
    min-width: 20px;
}

/* Footer Instagram */
.footer-instagram {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    max-width: 600px;
    margin: 20px auto 0;
}

.insta-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
}

.insta-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.insta-thumb:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.insta-thumb:hover .insta-overlay {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--color-dark-bg);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================
   27. BACK TO TOP
   ========================================================== */
.back-to-top {
    position: fixed;
    bottom: 180px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-back-top);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.back-to-top:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

/* ==========================================================
   28. FLOATING BUTTONS
   ========================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: var(--z-float);
    animation: whatsappPulse 2s ease-in-out infinite;
    transition: transform var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

.booknow-float {
    position: fixed;
    bottom: 96px;
    right: 24px;
    height: 52px;
    padding: 0 24px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    z-index: var(--z-float);
    transition: all var(--transition-base);
}

.booknow-float:hover {
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(201, 169, 110, 0.5);
}

/* ==========================================================
   29. RESPONSIVE — TABLET (max-width: 1024px)
   ========================================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

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

    .hero-title {
        font-size: 56px;
    }

    .page-header-title {
        font-size: 42px;
    }

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

    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-image img {
        height: 400px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

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

    .gallery-masonry {
        columns: 3;
    }

    .tour-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tour-layout.reverse {
        direction: ltr;
    }

    .tour-image img {
        height: 350px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mv-divider {
        width: 100%;
        height: 1px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .cta-title {
        font-size: 36px;
    }
}

/* ==========================================================
   30. RESPONSIVE — TABLET SMALL (max-width: 768px)
   ========================================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
        --container-padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .page-header {
        padding: 140px 0 70px;
    }

    .page-header-title {
        font-size: 36px;
    }

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

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

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

    .counter-number {
        font-size: 48px;
    }

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

    .gallery-masonry {
        columns: 2;
    }

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

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

    .pricing-cards {
        flex-direction: column;
        gap: 20px;
    }

    .price-card:not(:first-child) {
        border-left: none;
        border-top: 1px solid var(--color-border);
        padding-top: 20px;
    }

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

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

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

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

    .cta-title {
        font-size: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tour-details-grid {
        grid-template-columns: 1fr;
    }

    .bring-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================
   31. RESPONSIVE — MOBILE (max-width: 480px)
   ========================================================== */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 16px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .page-header-title {
        font-size: 28px;
    }

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

    .section-tag {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .btn {
        padding: 14px 36px;
        font-size: 13px;
        letter-spacing: 2px;
    }

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

    .counter-number {
        font-size: 40px;
    }

    .gallery-masonry {
        columns: 1;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

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

    .destination-card {
        height: 220px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .section-cta {
        padding: 80px 0;
    }

    .sidebar-content {
        width: 100%;
        max-width: 100%;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

    .booknow-float {
        bottom: 78px;
        right: 16px;
        padding: 0 18px;
        height: 46px;
    }

    .booknow-float span {
        display: none;
    }

    .back-to-top {
        bottom: 140px;
        right: 16px;
        width: 38px;
        height: 38px;
    }
}

/* ==========================================================
   32. REDUCED MOTION
   ========================================================== */
@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;
    }

    .hero-bg {
        transform: none !important;
    }

    .counter-bg,
    .cta-bg {
        background-attachment: scroll;
    }
}

/* ==========================================================
   33. PRINT STYLES
   ========================================================== */
@media print {
    .naya-nav,
    .naya-loader,
    .mobile-sidebar,
    .whatsapp-float,
    .booknow-float,
    .back-to-top,
    .footer-wave,
    .hero-scroll-indicator {
        display: none !important;
    }

    .hero {
        height: auto;
        min-height: 200px;
    }

    .section-cta {
        background: #f5f5f5 !important;
    }

    .cta-bg,
    .counter-bg,
    .hero-bg {
        display: none;
    }
}

/* ==========================================================
   34. UTILITY CLASSES
   ========================================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.no-scroll {
    overflow: hidden;
}

/* Touch-friendly */
@media (pointer: coarse) {
    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .filter-btn {
        min-height: 48px;
    }

    .nav-links a {
        padding: 12px 0;
    }

    .sidebar-links a {
        padding: 18px 0;
    }
}
