/* ==========================================================================
   TRAVEL TO KASHMIR BY ISRA - DESIGN SYSTEM & STYLES
   ========================================================================== */

/* Google Fonts loaded via <link> in HTML for better performance */

/* CSS Custom Properties / Design Tokens */
:root {
    /* Color Palette */
    --primary: #4f46e5;         /* Premium Indigo */
    --primary-light: #818cf8;   /* Light Indigo */
    --secondary: #db2777;       /* Vibrant Rose/Pink */
    --secondary-light: #f472b6; /* Light Pink */
    --accent: #eab308;          /* Warm Gold */
    --accent-light: #fde047;    /* Light Gold */
    --dark: #0f172a;            /* Deep Slate Navy (Base Background) */
    --dark-card: #1e293b;       /* Card Background */
    --light: #f8fafc;           /* Crisp Light Slate */
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 50%, var(--secondary) 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    --grad-glass-hover: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    --grad-dark: linear-gradient(180deg, #090d16 0%, var(--dark) 100%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadow & Glass Effects */
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --neon-glow: 0 0 20px rgba(79, 70, 229, 0.4);
    
    /* Transitions */
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Borders & Spacing */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

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

body {
    background-color: var(--dark);
    background-image: var(--grad-dark);
    color: var(--light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
}

p {
    font-weight: 300;
    color: #94a3b8;
    font-size: 1rem;
}

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

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

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

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

::-webkit-scrollbar-track {
    background: #090d16;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border: 2px solid #090d16;
    border-radius: var(--radius-sm);
}

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

/* ==========================================================================
   GLOBAL UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.text-gradient {
    background: linear-gradient(135deg, #a5b4fc 0%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: var(--neon-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, #8b5cf6 50%, var(--primary) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-card {
    background: var(--grad-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--grad-glass-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary-light);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--glass-border);
    box-shadow: var(--soft-shadow);
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-container nav {
    margin-left: auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg-wrapper {
    width: 45px;
    height: 45px;
    transition: var(--transition-spring);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.logo-link:hover .logo-svg-wrapper {
    transform: rotate(-10deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--secondary-light);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: #cbd5e1;
    position: relative;
    padding: 6px 0;
}

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

.nav-link:hover {
    color: #ffffff;
}

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

.nav-link.active {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 14px;
    position: relative;
}

#langToggleBtn {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    margin-right: 0 !important;
}

.currency-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: var(--glass-border);
    padding: 8px 14px;
    border-radius: 50px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.currency-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
}

.nav-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--light);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (BANNER & SLIDER)
   ========================================================================== */
.hero {
    height: 100vh;
    height: 100dvh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(15, 23, 42, 0.7) 0%, 
                rgba(15, 23, 42, 0.5) 40%, 
                rgba(15, 23, 42, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin-top: 40px;
}

.welcome-badge {
    background: rgba(219, 39, 119, 0.15);
    border: 1px solid rgba(219, 39, 119, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

.welcome-badge svg {
    fill: var(--secondary-light);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Slider Indicators */
.slider-dots {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.2);
    border-color: #ffffff;
}

/* Floating Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ==========================================================================
   ABOUT / BRAND STORY SECTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-img {
    border-radius: var(--radius-lg);
    filter: brightness(0.9);
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: var(--glass-border);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--glass-shadow);
}

.about-badge .years {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #cbd5e1;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.1) 0%, rgba(219, 39, 119, 0.03) 100%);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 30px;
}

.highlight-box p {
    color: #ffffff;
    font-weight: 400;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.stat-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.stat-info p {
    font-size: 0.8rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.service-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 24px;
    transition: var(--transition-spring);
}

.service-card:hover .service-icon {
    background: var(--grad-primary);
    color: #ffffff;
    transform: rotateY(180deg) scale(1.1);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   DESTINATIONS SHOWCASE (TABS)
   ========================================================================== */
.dest-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 22px;
    list-style: none;
}

#destinations .section-title-wrapper {
    margin-bottom: 20px;
}

#destinations {
    padding-top: 70px;
}

#destinations .section-subtitle {
    margin-bottom: 8px;
}

#instagram {
    padding-top: 68px;
}

#instagram .section-title-wrapper {
    margin-bottom: 28px;
}

#instagram .section-subtitle {
    margin-bottom: 8px;
}

.tab-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.tab-btn.active {
    color: #ffffff;
    background: var(--grad-primary);
    border-color: transparent;
    box-shadow: var(--neon-glow);
}

.dest-content-container {
    position: relative;
    min-height: 480px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.dest-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: clamp(20px, 3vw, 48px);
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.dest-img-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    height: clamp(240px, 33vw, 380px);
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dest-img-container:hover .dest-img {
    transform: scale(1.04);
}

.dest-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    border: var(--glass-border);
    padding: 12px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
}

.dest-info h3 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.dest-info {
    min-width: 0;
}

.dest-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.dest-highlights {
    list-style: none;
    margin-bottom: 32px;
}

.dest-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.dest-highlights svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

/* ==========================================================================
   TRAVELER TOOLS SECTION
   ========================================================================== */
.tools-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 100%;
}

.tool-card {
    padding: 40px;
    height: 100%;
    min-width: 0;
    overflow: hidden;
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tool-card h3 svg {
    color: var(--secondary-light);
}

/* Currency Converter */
.converter-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-group {
    background: rgba(15, 23, 42, 0.4);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
}

.input-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.input-group input {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    width: 60%;
    text-align: right;
    min-width: 0;
}

.currency-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.currency-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.exchange-arrow {
    display: flex;
    justify-content: center;
    margin: -8px 0;
    z-index: 2;
}

.exchange-arrow-btn {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--soft-shadow);
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition-fast);
}

.exchange-arrow-btn:hover {
    transform: rotate(180deg);
    background: var(--secondary);
}

.rate-info {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    margin-top: 16px;
}

/* Seasonal Advisor */
.season-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.season-btn {
    padding: 10px 4px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
}

.season-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.season-btn.active {
    color: #ffffff;
    background: var(--grad-primary);
    border-color: transparent;
}

.season-details {
    background: rgba(15, 23, 42, 0.4);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    min-height: 200px;
    min-width: 0;
    overflow: hidden;
}

.season-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.season-temp {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
}

.season-name-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.season-advice {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.packing-list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.packing-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.packing-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.packing-tag {
    background: rgba(255, 255, 255, 0.06);
    border: var(--glass-border);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #cbd5e1;
}

/* ==========================================================================
   INTERACTIVE TRIP PLANNER (FORM)
   ========================================================================== */
.planner-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
}

.planner-intro {
    text-align: center;
    margin-bottom: 40px;
}

.planner-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.planner-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field.full-width {
    grid-column: span 2;
}

.form-field label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-field label svg {
    color: var(--secondary-light);
}

.form-input {
    background: rgba(15, 23, 42, 0.5);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    background: rgba(15, 23, 42, 0.7);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 48px;
}

.form-submit-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
}

.btn-submit {
    min-width: 280px;
    gap: 12px;
    font-size: 1.05rem;
    padding: 16px 36px;
}

.btn-submit svg {
    transition: var(--transition-fast);
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background: #090d16;
    border-top: var(--glass-border);
    padding: 80px 0 40px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

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

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

.footer-links-list a {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.contact-info-list {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-light);
    flex-shrink: 0;
}

.contact-text-wrapper .label {
    font-size: 0.75rem;
    color: #64748b;
    display: block;
}

.contact-text-wrapper .value {
    font-size: 0.9rem;
    font-weight: 500;
}

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

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--grad-primary);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.85rem;
    color: #64748b;
}

.malaysian-friendly-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    padding: 6px 16px;
    border-radius: 50px;
}

.malaysian-friendly-tag .flag-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

/* ==========================================================================
   INSTAGRAM SHOWCASE GALLERY
   ========================================================================== */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    cursor: pointer;
    display: block;
    min-width: 0;
}

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
    text-align: center;
    color: #ffffff;
}

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

.instagram-item:hover .insta-img {
    transform: scale(1.08);
}

.instagram-stats {
    display: flex;
    gap: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.instagram-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.insta-caption {
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.5;
    font-weight: 400;
}

.btn-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(220, 39, 67, 0.4);
}

.btn-insta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-insta:hover::before {
    opacity: 1;
}

.btn-insta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 30px rgba(188, 24, 136, 0.6);
}

/* ==========================================================================
   ACCESSIBILITY: SKIP TO CONTENT
   ========================================================================== */
.skip-to-content {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* ==========================================================================
   PHONE CTA BUTTON
   ========================================================================== */
.phone-btn {
    gap: 6px;
    font-size: 0.85rem;
}

.phone-btn svg {
    flex-shrink: 0;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 36px;
    display: flex;
    flex-direction: column;
}

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

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #64748b;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
    transition: var(--transition-fast);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: '';
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-light);
}

details[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px 20px;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   FLOATING 3D ANIMATED LOGO BADGE
   ========================================================================== */
.floating-logo-badge {
    position: fixed;
    right: clamp(12px, 2.5vw, 30px);
    bottom: clamp(12px, 2.5vw, 30px);
    width: clamp(58px, 5.2vw, 76px);
    height: clamp(58px, 5.2vw, 76px);
    background: rgba(9, 13, 22, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, opacity 0.4s ease;
    animation: floatingGlow 3s ease-in-out infinite;
    padding-bottom: env(safe-area-inset-bottom, 0);
    padding-right: env(safe-area-inset-right, 0);
}

.floating-logo-badge:hover {
    transform: scale(1.08) translateY(-3px);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(9, 13, 22, 0.8);
}

.floating-logo-badge:active {
    transform: scale(0.95);
}

.floating-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
}

.floating-logo-img {
    width: 72%;
    height: 72%;
    object-fit: contain;
    transform-style: preserve-3d;
    animation: spin3d 4s linear infinite;
    pointer-events: none;
}

.floating-logo-close {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 22px;
    height: 22px;
    background: #db2777;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.floating-logo-badge:hover .floating-logo-close {
    opacity: 1;
}

.floating-logo-close:hover {
    transform: scale(1.15);
    background: #f43f5e;
}

.floating-logo-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(9, 13, 22, 0.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.floating-logo-badge:hover .floating-logo-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

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

@keyframes floatingGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 12px rgba(219, 39, 119, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.05);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(96, 165, 250, 0.35), inset 0 0 10px rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   Breakpoints:
   - 1400px+ : Large desktop / ultrawide
   - 1200px  : Standard desktop
   - 992px   : Tablet landscape / small desktop
   - 768px   : Tablet portrait
   - 576px   : Large phone
   - 480px   : Standard phone
   - 360px   : Small phone
   ========================================================================== */

/* ==========================================================================
   LARGE DESKTOP (1400px+)
   ========================================================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-desc {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .service-card {
        padding: 48px;
    }
    
    .dest-info h3 {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   STANDARD DESKTOP (1200px and below)
   ========================================================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .dest-panel {
        gap: clamp(18px, 2.8vw, 28px);
    }
    
    .services-grid {
        gap: 24px;
    }
    
    .service-card {
        padding: 32px;
    }
    
    .footer-grid {
        gap: 48px;
    }
}

/* ==========================================================================
   TABLET LANDSCAPE / SMALL DESKTOP (992px and below)
   ========================================================================== */
@media (max-width: 992px) {
    .section {
        padding: 72px 0;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .section-title-wrapper {
        margin-bottom: 48px;
    }
    
    /* About: stack vertically */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Services: 2-column */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 28px;
    }
    
    .service-icon {
        width: 52px;
        height: 52px;
    }
    
    /* Testimonials: 2-column */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 28px;
    }
    
    /* Destinations */
    .dest-panel {
        gap: 24px;
    }
    
    .dest-img-container {
        height: 300px;
    }
    
    .dest-info h3 {
        font-size: 1.9rem;
    }
    
    /* Tools: single column */
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .tool-card {
        padding: 28px;
    }
    
    /* Instagram: 2-column */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    /* Footer: stack */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer {
        padding: 60px 0 32px;
    }
    
    /* Form */
    .planner-wrapper {
        padding: 36px;
    }
    
    /* Nav: reduce gaps */
    .nav-menu {
        gap: 24px;
    }
}

/* ==========================================================================
   TABLET PORTRAIT (768px and below)
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        /* Scale down base font for better mobile fit */
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 56px 0;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title-wrapper {
        margin-bottom: 36px;
    }
    
    .glass-card:hover {
        transform: none;
    }
    
    /* --- NAVIGATION --- */
    .menu-btn {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(85vw, 360px);
        height: 100dvh;
        height: 100vh;
        background: rgba(9, 13, 22, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: var(--glass-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 80px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 16px 24px;
        font-size: 1.1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-actions {
        display: flex;
        margin-left: auto;
        margin-right: 15px;
        gap: 10px;
    }
    
    .nav-actions .phone-btn,
    .nav-actions #navBookBtn {
        display: none !important;
    }
    
    #langToggleBtn {
        position: static;
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-right: 0 !important;
    }
    
    /* --- HERO --- */
    .hero {
        min-height: 100dvh;
        min-height: 500px;
        padding-top: 70px;
    }
    
    .hero-content {
        margin-top: 16px;
        padding: 0 4px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 28px;
    }
    
    .welcome-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        padding: 14px 24px;
        min-height: 48px;
    }
    
    .slider-dots {
        bottom: 24px;
        right: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* --- ABOUT --- */
    .about-img-wrapper {
        max-width: 100%;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-icon {
        width: 42px;
        height: 42px;
    }
    
    /* --- SERVICES --- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-title {
        font-size: 1.15rem;
    }
    
    .service-desc {
        font-size: 0.9rem;
    }
    
    /* --- DESTINATIONS --- */
    .dest-tabs {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    .dest-panel {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dest-img-container {
        height: clamp(200px, 50vw, 280px);
    }
    
    .dest-info h3 {
        font-size: 1.6rem;
    }
    
    .dest-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .dest-highlights li {
        font-size: 0.88rem;
    }
    
    /* --- TOOLS --- */
    .tool-card {
        padding: 24px;
    }
    
    .tool-card h3 {
        font-size: 1.25rem;
        margin-bottom: 18px;
    }
    
    .input-group {
        padding: 10px 16px;
    }
    
    .input-group input {
        font-size: 1.2rem;
    }
    
    .season-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .season-btn {
        padding: 10px 8px;
        font-size: 0.78rem;
        min-height: 44px;
    }
    
    .season-details {
        padding: 18px;
    }
    
    .season-temp {
        font-size: 1.3rem;
    }
    
    /* --- FORM --- */
    .planner-wrapper {
        padding: 24px 16px;
    }
    
    .planner-intro h3 {
        font-size: 1.4rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .form-field.full-width {
        grid-column: span 1;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .btn-submit {
        min-width: unset;
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    /* --- TESTIMONIALS --- */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .testimonial-card {
        padding: 22px;
    }
    
    .testimonial-text {
        font-size: 0.92rem;
    }
    
    /* --- FAQ --- */
    .faq-question {
        padding: 16px 20px;
        font-size: 0.92rem;
        min-height: 48px;
    }
    
    .faq-answer {
        padding: 0 20px 16px;
    }
    
    .faq-answer p {
        font-size: 0.88rem;
    }
    
    /* --- INSTAGRAM --- */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .instagram-overlay {
        padding: 16px;
    }
    
    .instagram-stats {
        font-size: 0.9rem;
        gap: 12px;
    }
    
    .insta-caption {
        font-size: 0.78rem;
    }
    
    /* --- FOOTER --- */
    .footer {
        padding: 48px 0 28px;
    }
    
    .footer-brand h4 {
        font-size: 1.3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .contact-icon {
        width: 38px;
        height: 38px;
    }
}

/* ==========================================================================
   LARGE PHONE (576px and below)
   ========================================================================== */
@media (max-width: 576px) {
    :root {
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 44px 0;
    }
    
    .section-title {
        font-size: 1.65rem;
    }
    
    /* Hero */
    .hero {
        min-height: 100dvh;
        min-height: 480px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 0.88rem;
    }
    
    .welcome-badge {
        font-size: 0.72rem;
    }
    
    /* Buttons: full width on mobile */
    .btn {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }
    
    /* Service cards */
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }
    
    .service-icon svg {
        width: 22px;
        height: 22px;
    }
    
    /* Destinations */
    .dest-info h3 {
        font-size: 1.4rem;
    }
    
    .dest-overlay {
        font-size: 0.75rem;
        padding: 8px 14px;
        bottom: 16px;
        left: 16px;
    }
    
    /* Tools */
    .season-selector {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .season-btn {
        padding: 8px 4px;
        font-size: 0.72rem;
    }
    
    .packing-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    /* Form */
    .planner-wrapper {
        padding: 20px 14px;
    }
    
    .planner-intro h3 {
        font-size: 1.25rem;
    }
    
    .planner-intro p {
        font-size: 0.85rem;
    }
    
    .form-field label {
        font-size: 0.8rem;
    }
    
    .form-input {
        padding: 12px 14px;
        font-size: 0.92rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 18px;
    }
    
    .testimonial-stars {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .testimonial-author strong {
        font-size: 0.88rem;
    }
    
    .testimonial-avatar {
        width: 38px;
        height: 38px;
        font-size: 0.75rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 14px 16px;
        font-size: 0.88rem;
    }
    
    .faq-answer {
        padding: 0 16px 14px;
    }
    
    .faq-answer p {
        font-size: 0.84rem;
    }
    
    /* Instagram */
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .instagram-stats {
        font-size: 0.82rem;
    }
    
    /* Footer */
    .footer-links-list a {
        font-size: 0.85rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .contact-item {
        min-height: 44px;
    }
    
    .contact-text-wrapper .value {
        font-size: 0.85rem;
    }
    
    .malaysian-friendly-tag {
        font-size: 0.72rem;
    }
    
    /* Floating logo mobile */
    .floating-logo-badge {
        right: max(10px, env(safe-area-inset-right, 0));
        bottom: max(10px, env(safe-area-inset-bottom, 0));
        width: 56px;
        height: 56px;
    }
    
    .floating-logo-close {
        opacity: 0.85;
        width: 20px;
        height: 20px;
        font-size: 11px;
        top: -4px;
        right: -4px;
    }
    
    .floating-logo-tooltip {
        display: none;
    }
}

/* ==========================================================================
   STANDARD PHONE (480px and below)
   ========================================================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-desc {
        font-size: 0.82rem;
    }
    
    .section-title {
        font-size: 1.45rem;
    }
    
    .dest-info h3 {
        font-size: 1.25rem;
    }
    
    .dest-desc {
        font-size: 0.85rem;
    }
    
    .dest-highlights li {
        font-size: 0.82rem;
        gap: 8px;
    }
    
    .dest-highlights svg {
        width: 16px;
        height: 16px;
    }
    
    .tool-card h3 {
        font-size: 1.1rem;
    }
    
    .converter-inputs {
        gap: 12px;
    }
    
    .input-group {
        padding: 8px 12px;
    }
    
    .input-group input {
        font-size: 1rem;
    }
    
    .currency-label {
        font-size: 0.9rem;
    }
    
    .exchange-arrow-btn {
        width: 32px;
        height: 32px;
    }
    
    .season-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .season-temp {
        font-size: 1.15rem;
    }
    
    .season-name-title {
        font-size: 0.95rem;
    }
    
    .planner-intro h3 {
        font-size: 1.1rem;
    }
    
    .planner-intro p {
        font-size: 0.8rem;
    }
    
    .btn-submit {
        font-size: 0.9rem;
        padding: 14px 20px;
    }
    
    .footer-brand h4 {
        font-size: 1.1rem;
    }
    
    .footer-desc {
        font-size: 0.82rem;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   SMALL PHONE (360px and below)
   ========================================================================== */
@media (max-width: 360px) {
    :root {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 1.55rem;
    }
    
    .hero-actions .btn {
        padding: 12px 16px;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .dest-tabs {
        gap: 6px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 0.78rem;
    }
    
    .season-selector {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }
    
    .season-btn {
        font-size: 0.68rem;
        padding: 6px 2px;
    }
}

/* ==========================================================================
   LANDSCAPE PHONE ORIENTATION
   ========================================================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100dvh;
        min-height: 400px;
        padding-top: 60px;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero-desc {
        font-size: 0.85rem;
        margin-bottom: 16px;
        display: none;
    }
    
    .welcome-badge {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .hero-actions {
        gap: 8px;
    }
    
    .hero-actions .btn {
        padding: 10px 20px;
        min-height: 40px;
    }
    
    .slider-dots {
        bottom: 12px;
        right: 16px;
    }
    
    .nav-menu {
        padding-top: 60px;
    }
}

/* ==========================================================================
   TOUCH DEVICE DETECTION
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover transforms on touch - use active states instead */
    .glass-card:hover {
        transform: none;
    }
    
    .btn-primary:hover {
        transform: none;
    }
    
    .btn-secondary:hover {
        transform: none;
    }
    
    .service-card:hover .service-icon {
        transform: none;
    }
    
    .about-img-wrapper:hover .about-img {
        transform: none;
    }
    
    .dest-img-container:hover .dest-img {
        transform: none;
    }
    
    .social-icon:hover {
        transform: none;
    }
    
    .btn-insta:hover {
        transform: none;
    }
    
    .instagram-item:hover .insta-img {
        transform: none;
    }
    
    /* Active states for touch feedback */
    .glass-card:active {
        transform: scale(0.98);
    }
    
    .btn:active {
        transform: scale(0.97);
    }
    
    .tab-btn:active {
        transform: scale(0.96);
    }
    
    .season-btn:active {
        transform: scale(0.96);
    }
    
    /* Ensure all interactive elements have 44px minimum touch target */
    .nav-link {
        min-height: 44px;
    }
    
    .dot {
        width: 14px;
        height: 14px;
    }
    
    .exchange-arrow-btn {
        width: 44px;
        height: 44px;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
    
    .floating-logo-badge {
        width: 60px;
        height: 60px;
    }
}

/* ==========================================================================
   RETINA / HIGH DPI SCREENS
   ========================================================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .slide {
        image-rendering: -webkit-optimize-contrast;
    }
    
    .dest-img,
    .insta-img,
    .about-img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ==========================================================================
   REDUCED MOTION PREFERENCE
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .slide {
        transition: opacity 0.3s ease;
    }
    
    .floating-logo-img {
        animation: none;
    }
    
    .welcome-badge {
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ==========================================================================
   DARK MODE PREFERENCE (future-proofing)
   ========================================================================== */
@media (prefers-color-scheme: dark) {
    /* Already dark by default - no changes needed */
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .header,
    .menu-btn,
    .hero,
    .slider-dots,
    .floating-logo-badge,
    .instagram-section,
    .btn-insta,
    .skip-to-content,
    .nav-actions,
    .hero-actions,
    .form-submit-row {
        display: none !important;
    }
    
    body {
        background: #ffffff;
        color: #000000;
        font-size: 12pt;
    }
    
    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    h1, h2, h3, h4 {
        color: #000000;
    }
    
    p, .service-desc, .dest-desc {
        color: #333333;
    }
    
    a {
        color: #000000;
        text-decoration: underline;
    }
    
    .glass-card {
        border: 1px solid #cccccc;
        background: #f9f9f9;
        box-shadow: none;
    }
    
    .btn-primary {
        background: #333333;
        color: #ffffff;
    }
    
    .text-gradient {
        -webkit-text-fill-color: #333333;
        background: none;
    }
}

/* ==========================================================================
   GOOGLE TRANSLATE OVERRIDES
   ========================================================================== */
/* Hide Google Translate top bar/banner */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

/* Prevent body from being pushed down by the hidden banner */
body {
    top: 0px !important; 
}

/* Hide tooltips that appear when hovering over translated text */
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}
