/* ==========================================================================
   Ceylon Mindeev Tours - Premium Navy & Gold Design System
   Website Palette: Navy Blue (#0B2545 / #0A192F) + Royal Gold (#D4AF37) + White
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --navy-dark: #061325;
    --navy-main: #0B2545;
    --navy-light: #132A4B;
    --navy-surface: #1E3A60;
    
    --gold-main: #D4AF37;
    --gold-light: #F4D068;
    --gold-dark: #B89025;
    --gold-gradient: linear-gradient(135deg, #F4D068 0%, #D4AF37 50%, #B89025 100%);
    --navy-gradient: linear-gradient(135deg, #0B2545 0%, #061325 100%);
    
    --bg-light: #F8FAFC;
    --bg-card: #FFFFFF;
    
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --shadow-sm: 0 4px 6px -1px rgba(11, 37, 69, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(11, 37, 69, 0.1);
    --shadow-lg: 0 20px 35px -10px rgba(11, 37, 69, 0.18);
    --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy-main);
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Color & Text Utility Classes */
.text-gold { color: var(--gold-main) !important; }
.text-navy { color: var(--navy-main) !important; }
.bg-navy { background-color: var(--navy-main) !important; }
.bg-gold { background-color: var(--gold-main) !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--navy-dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #F5D77F 0%, #E2BE4B 100%);
}

.btn-navy {
    background: var(--navy-main);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline-gold:hover {
    background: var(--gold-main);
    color: var(--navy-dark);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1EBE5B;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
    color: #FFFFFF;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.85rem;
}

/* Badges */
.badge-gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.badge-navy {
    background: rgba(11, 37, 69, 0.1);
    color: var(--navy-main);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
    background: var(--navy-dark);
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contacts {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-contacts a {
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-contacts a:hover {
    color: var(--gold-main);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: var(--navy-dark);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Friendly Vibrant Social Media Buttons */
.social-buttons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    flex: 1;
    min-width: 140px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    color: #FFFFFF !important;
}

/* Circular / Round Social Media Buttons */
.social-btn-round {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    flex-shrink: 0;
}

.social-btn-round:hover {
    transform: translateY(-4px) scale(1.15);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
    color: #FFFFFF !important;
}

.social-btn-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0B53B4 100%);
}

.social-btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn-tiktok {
    background: linear-gradient(135deg, #111111 0%, #000000 60%, #FE2C55 100%);
}

.currency-select {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-main);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    outline: none;
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 37, 69, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid var(--gold-main);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 0;
    text-decoration: none;
}

.header-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    background: transparent;
    padding: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.logo-wrapper:hover .header-logo-img {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
}

.logo-text-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    line-height: 1.15;
    margin-left: 0;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.brand-tagline {
    font-size: 0.58rem;
    color: var(--gold-main);
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-top: 2px;
    white-space: nowrap;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 6px 0;
}

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-main);
}

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

.mobile-menu-toggle {
    display: none;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold-main);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 1.4rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--gold-main);
    color: var(--navy-dark);
}

/* Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: var(--navy-dark);
    border-left: 2px solid var(--gold-main);
    z-index: 1100;
    padding: 30px 24px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--gold-main);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-nav-links a {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--gold-main);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    color: var(--text-white);
    padding: 100px 0 140px;
    overflow: hidden;
    background: var(--navy-dark);
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 19, 37, 0.65) 0%, rgba(11, 37, 69, 0.6) 100%);
    z-index: 2;
}

.hero-overlay-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 3;
}

.hero-content {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 4;
}

.hero-logo-box {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.hero-brand-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
}

.hero-brand-logo:hover {
    transform: scale(1.05);
}

.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--gold-main);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold-main);
}

.hero-title {
    font-size: 3.8rem;
    color: var(--text-white);
    margin-bottom: 22px;
    line-height: 1.18;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #E2E8F0;
    margin: 0 auto 38px;
    max-width: 850px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quick Search Bar Over Hero */
.hero-search-box {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.search-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 24px 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 180px;
    gap: 20px;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-field label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.search-field select:focus,
.search-field input:focus {
    border-color: var(--gold-main);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   Section Layouts
   ========================================================================== */
.section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.section-subtitle {
    color: var(--gold-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--navy-gradient);
    color: var(--text-white);
    position: relative;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-choose-content h2 {
    color: var(--text-white);
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 20px;
}

.why-choose-content p {
    color: #CBD5E1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-tags-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-tag-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(5px);
}

.why-tag-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.why-tag-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
    font-size: 1.05rem;
}

.owner-badge-box {
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--gold-main);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 30px;
}

.owner-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-main);
}

.owner-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 4px;
}

/* Card Design System (Tours, Experiences, Fleet) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.tour-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-main);
}

.card-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: var(--navy-dark);
}

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

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

.card-badge-top {
    position: absolute;
    top: 15px;
    left: 15px;
}

.card-price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--navy-dark);
    color: var(--gold-main);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid var(--gold-main);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.card-route {
    background: rgba(11, 37, 69, 0.04);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--navy-main);
    font-weight: 600;
    margin-bottom: 16px;
}

.card-highlights {
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-highlights li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-highlights li::before {
    content: '✓';
    color: var(--gold-dark);
    font-weight: bold;
}

.card-footer {
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Experience Box with Linked Photos */
.exp-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.exp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-main);
}

.exp-card-media {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    background: var(--navy-dark);
}

.exp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.exp-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(6, 19, 37, 0.82);
    color: var(--gold-main);
    border: 1px solid var(--gold-main);
    backdrop-filter: blur(4px);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.exp-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Fleet Card */
.fleet-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-main);
}

.fleet-img {
    height: 220px;
    background: #0B2545;
    position: relative;
}

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

.fleet-specs {
    display: flex;
    gap: 20px;
    padding: 12px 24px;
    background: var(--navy-dark);
    color: var(--gold-main);
    font-size: 0.88rem;
    font-weight: 600;
}

.fleet-body {
    padding: 24px;
}

.fleet-body h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.fleet-model {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.fleet-features {
    margin-bottom: 20px;
}

.fleet-features li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fleet-features li::before {
    content: '✦';
    color: var(--gold-main);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    border: 1px solid #CBD5E1;
    background: #FFFFFF;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy-main);
    color: var(--gold-main);
    border-color: var(--navy-main);
    box-shadow: var(--shadow-sm);
}

/* Testimonials Slider/Grid */
.testimonials-section {
    background: #F1F5F9;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
    position: relative;
}

.testimonial-stars {
    color: var(--gold-main);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F1F5F9;
    padding-top: 14px;
}

.author-name {
    font-weight: 700;
    color: var(--navy-main);
    font-size: 1rem;
}

.author-tour {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Dynamic Inquiry Form Section */
.inquiry-section {
    background: var(--navy-gradient);
    color: var(--text-white);

}

.inquiry-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 45px;
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-main);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(6, 19, 37, 0.7);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-main);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.form-group select option {
    background: var(--navy-dark);
    color: var(--text-white);
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 19, 37, 0.85);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

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

.modal-card {
    background: var(--navy-dark);
    color: var(--text-white);
    border: 2px solid var(--gold-main);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gold-main);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Floating WhatsApp Live Chat Widget */
.floating-whatsapp-container {
    position: fixed;
    bottom: 55px;
    right: 30px;
    z-index: 1500;
}

.whatsapp-chat-widget {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 350px;
    max-width: 90vw;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(6, 19, 37, 0.3);
    border: 2px solid var(--gold-main);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

.whatsapp-chat-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-widget-header {
    background: var(--navy-main);
    color: #FFFFFF;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold-main);
}

.chat-avatar-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
}

.chat-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-main);
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #25D366;
    border: 2px solid var(--navy-main);
    border-radius: 50%;
}

.chat-header-name {
    font-weight: 800;
    font-size: 0.98rem;
    color: #FFFFFF;
    line-height: 1.2;
}

.chat-header-status {
    font-size: 0.72rem;
    color: var(--gold-main);
    font-weight: 600;
    margin-top: 2px;
}

.chat-widget-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.chat-widget-close:hover {
    opacity: 1;
    color: var(--gold-main);
}

.chat-widget-body {
    background: #ECE5DD;
    padding: 16px;
    max-height: 280px;
    overflow-y: auto;
}

.chat-bubble-received {
    background: #FFFFFF;
    color: #0F172A;
    padding: 12px 14px;
    border-radius: 0 14px 14px 14px;
    font-size: 0.88rem;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    margin-bottom: 14px;
    position: relative;
}

.chat-quick-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-quick-label {
    font-size: 0.72rem;
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-option-chip {
    background: #FFFFFF;
    color: var(--navy-main);
    border: 1px solid #CBD5E1;
    padding: 9px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-option-chip:hover {
    background: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
    transform: translateX(4px);
}

.chat-widget-footer {
    background: #F8FAFC;
    padding: 12px 16px;
    border-top: 1px solid #E2E8F0;
}

.whatsapp-btn-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    border: 2px solid #FFFFFF;
    position: relative;
    cursor: pointer;
}

/* Floating Review Button (Stacked directly ABOVE WhatsApp) */
.floating-review-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.5);
    transition: var(--transition);
    border: 2px solid #FFFFFF;
    position: relative;
    cursor: pointer;
    margin-bottom: 12px;
    margin-left: auto;
}

.floating-review-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.7);
    color: var(--navy-dark);
}

.floating-review-tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy-dark);
    color: var(--gold-main);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
    border: 1px solid var(--gold-main);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.floating-review-btn:hover .floating-review-tooltip {
    opacity: 1;
    visibility: visible;
    right: 58px;
}

.whatsapp-btn-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.65);
}

.whatsapp-notification-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #EF4444;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--navy-dark);
    color: var(--text-white);
    border-top: 3px solid var(--gold-main);
    padding-top: 70px;
}

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

.footer-about img {
    max-height: 85px;
    width: auto;
    object-fit: contain;
    background: transparent;
    padding: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-title {
    color: var(--gold-main);
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold-main);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #CBD5E1;
    font-size: 0.92rem;
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: #CBD5E1;
    font-size: 0.92rem;
}

.footer-contact-item span:first-child {
    color: var(--gold-main);
}

.footer-bottom {
    background: #040D1B;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Mobile Filter Selector Dropdown */
.mobile-filter-container {
    display: none;
    margin-bottom: 25px;
    background: #FFFFFF;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-sm);
}

.mobile-filter-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy-main);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-filter-select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-sm);
    font-size: 16px !important;
    color: var(--navy-main);
    font-weight: 600;
    background: #F8FAFC;
    outline: none;
    cursor: pointer;
}

/* Filter Tabs Scrollable on Mobile */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsiveness
   ========================================================================== */

@media (max-width: 992px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hero-title { font-size: 2.7rem; }
    .hero-content { max-width: 92%; }
    .why-choose-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .search-card { grid-template-columns: 1fr 1fr; }
    .brand-title { font-size: 1.18rem; }
    .brand-tagline { font-size: 0.55rem; }
    .hero-brand-logo { height: 120px; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section { padding: 45px 0; }
    .section-title { font-size: 1.55rem; margin-bottom: 10px; line-height: 1.25; }
    .section-subtitle { font-size: 0.78rem; letter-spacing: 1.5px; }
    .section-header { margin-bottom: 30px; }
    
    /* Header & Mobile Logo */
    .site-header { padding: 0; }
    .header-inner { padding: 6px 0; display: flex; align-items: center; justify-content: space-between; }
    .logo-wrapper { flex: 1; display: flex; align-items: center; justify-content: space-between; margin-right: 10px; }
    .header-logo-img { height: 68px; flex-shrink: 0; margin-left: 24px; }
    .logo-text-brand { flex: 1; text-align: center; align-items: center; justify-content: center; padding: 0 6px; }
    .brand-title { font-size: 0.95rem; letter-spacing: 0.3px; text-align: center; }
    .brand-tagline { font-size: 0.46rem; letter-spacing: 0.3px; text-align: center; }
    .header-plan-btn { display: none; }
    
    /* Hero Section */
    .hero-brand-logo { height: 75px; }
    .hero-logo-box { margin-bottom: 12px; }
    .hero-section { padding: 50px 0 85px; min-height: auto; }
    .hero-title { font-size: 1.55rem; line-height: 1.25; margin-bottom: 12px; font-weight: 800; }
    .hero-subtitle { font-size: 0.78rem; letter-spacing: 1.5px; margin-bottom: 10px; }
    .hero-subtitle::before, .hero-subtitle::after { width: 16px; }
    .hero-description { font-size: 0.9rem; margin-bottom: 22px; line-height: 1.55; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; gap: 10px; }
    .hero-actions .btn { width: 100%; text-align: center; padding: 12px 18px; font-size: 0.85rem; }

    /* Search Box */
    .hero-search-box { margin-top: -25px; }
    .search-card { grid-template-columns: 1fr; gap: 12px; padding: 16px; border-radius: var(--radius-md); }
    .search-group label { font-size: 0.82rem; }

    /* Touch Inputs Prevent iOS Zoom */
    input, select, textarea {
        font-size: 16px !important;
    }

    /* Mobile Filter Selector Override */
    .desktop-filter-tabs { display: none !important; }
    .mobile-filter-container { display: block !important; }

    /* Cards & Headings */
    .card-grid { grid-template-columns: 1fr; gap: 18px; }
    .why-tags-grid { grid-template-columns: 1fr; gap: 10px; }
    .why-choose-content h2 { font-size: 1.65rem; line-height: 1.25; margin-bottom: 14px; }
    .why-choose-content p { font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }
    .why-tag-card { padding: 12px 16px; gap: 10px; }
    .card-title { font-size: 1.15rem; }
    .card-desc { font-size: 0.88rem; }
    
    /* Experiences & Fleet */
    .exp-card { flex-direction: column; text-align: center; padding: 18px; }
    .exp-title { font-size: 1.1rem; }
    .exp-desc { font-size: 0.88rem; }
    .exp-icon { margin: 0 auto 10px; width: 50px; height: 50px; font-size: 1.3rem; }

    /* Footer & Floating Widget */
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .footer-about img { height: 70px; }
    .footer-about p { font-size: 0.88rem; }
    .footer-title { font-size: 1.05rem; margin-bottom: 14px; }
    .floating-whatsapp { bottom: 18px; right: 18px; }
    .whatsapp-badge { display: none; }
    .whatsapp-btn-icon { width: 50px; height: 50px; font-size: 1.6rem; }

    /* Modal Mobile */
    .modal-card { padding: 20px 16px; width: 92%; max-height: 85vh; border-radius: var(--radius-md); }
    .modal-title { font-size: 1.3rem; }
    .inquiry-box { padding: 20px 16px; border-radius: var(--radius-md); }
}

@media (max-width: 480px) {
    /* Ultra Small Phones */
    .header-inner { padding: 6px 0; }
    .logo-wrapper { gap: 8px; margin-left: 0; }
    .header-logo-img { height: 36px; }
    .brand-tagline { display: none; }
    .brand-title { font-size: 0.88rem; letter-spacing: 0px; }
    .hero-brand-logo { height: 60px; }
    .hero-title { font-size: 1.35rem; }
    .hero-description { font-size: 0.85rem; }
    .hero-subtitle { font-size: 0.72rem; letter-spacing: 1px; }
    .hero-subtitle::before, .hero-subtitle::after { width: 12px; }
    .section-title { font-size: 1.35rem; }
    .why-choose-content h2 { font-size: 1.45rem; }
    .modal-card { padding: 18px 14px; }
    .btn { padding: 11px 16px; font-size: 0.82rem; }
}

/* ==========================================================================
   Smooth Animations & Motion Design System
   ========================================================================== */

/* Fade-In Up Keyframe */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Hero Logo Animation */
@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* WhatsApp Pulse Animation */
@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Button Gold Shimmer Animation */
@keyframes shimmerGold {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Applying Hero Animations */
.hero-brand-logo {
    animation: floatLogo 4.5s ease-in-out infinite;
}

.hero-subtitle, .hero-title, .hero-description, .hero-actions {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-subtitle { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.22s; }
.hero-description { animation-delay: 0.35s; }
.hero-actions { animation-delay: 0.5s; }

/* Scroll Reveal Classes */
.reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

/* Card Hover Micro-Interactions */
.tour-card, .exp-card, .fleet-card, .why-tag-card, .review-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.tour-card:hover, .fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(11, 37, 69, 0.2);
}

.exp-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-main);
    box-shadow: 0 12px 30px rgba(11, 37, 69, 0.15);
}

.why-tag-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--gold-main);
    background: rgba(255, 255, 255, 0.1);
}

.exp-card:hover .exp-icon {
    transform: scale(1.15) rotate(6deg);
    background: var(--gold-dark);
}

.exp-icon {
    transition: transform 0.35s ease, background-color 0.35s ease;
}

.whatsapp-btn-icon {
    animation: pulseWhatsApp 2.8s infinite ease-in-out;
}

.btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.btn-gold {
    background-size: 200% auto;
    background-image: linear-gradient(120deg, #D4AF37 0%, #F3E5AB 50%, #B8860B 100%);
}

.btn-gold:hover {
    animation: shimmerGold 2.5s infinite linear;
}
