/* Import Google Fonts */
@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');

/* CSS Variables for design tokens */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --color-primary: #0f172a;      /* Deep Navy Blue */
    --color-accent: #d93f21;       /* Terracotta Red */
    --color-accent-hover: #b82e16; /* Terracotta hover */
    --color-secondary: #c0392b;    /* Crimson/Burnt Red */
    --color-secondary-hover: #962d22; /* Burnt Red hover */
    --color-text-dark: #090e1a;    /* Black text */
    --color-text-light: #ffffff;   /* White text */
    --color-bg-light: #ffffff;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 30px -10px rgba(10, 17, 40, 0.15);
    --shadow-sticky: 0 4px 20px -5px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: #faf9f6; /* Ivory base */
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button, input, select {
    font-family: inherit;
    outline: none;
    border: none;
}

/* Top Utility Banner */
.top-bar {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(20, 184, 166, 0.2);
    position: fixed;                /* Fixed so it stays at top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;                  /* Above header-wrapper */
    transition: var(--transition-smooth);
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar i {
    color: var(--color-accent);
    margin-right: 6px;
}

/* Main Header & Navbar */
.header-wrapper {
    position: fixed;                          /* Always fixed so it never blends into hero */
    top: 37px;                                /* Sits below top-bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 5%;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.07);
    transition: var(--transition-smooth);
}

/* Header Sticky State */
.header-wrapper.sticky {
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.09);
    padding: 10px 5%;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;                    /* Balanced logo size */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.08));
}

.header-wrapper.sticky .logo-img {
    height: 50px;
}

/* Circular/Pill Menu Container */
.nav-menu-container {
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 50px;
    padding: 5px 22px;
    display: flex;
    align-items: center;
    box-shadow: none;
    transition: var(--transition-smooth);
}

.header-wrapper.sticky .nav-menu-container {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.07);
    box-shadow: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--color-primary);           /* Dark navy — visible on white navbar */
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 4px;
    position: relative;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-wrapper.sticky .nav-link {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(10, 17, 40, 0.12);
    list-style: none;
    padding: 10px 0;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 100;
    border: 1px solid rgba(10, 17, 40, 0.05);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background-color: rgba(20, 184, 166, 0.05);
    color: var(--color-accent);
    padding-left: 25px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

/* Right Side CTA (Phone Button) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-button {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-hover));
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
    transition: var(--transition-smooth);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.4);
    color: #ffffff;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);    /* Dark — always visible on white navbar */
}

.header-wrapper.sticky .mobile-toggle {
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 680px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;            /* vertically center content */
    justify-content: flex-start;
    /* Offset center downward to account for fixed navbar (~120px) */
    padding-top: 120px;
    padding-bottom: 0;
    padding-left: 6%;
    padding-right: 6%;
}

/* Hero Slider Background */
.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 ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

/* Overlay gradient - WHITE/IVORY on left for dark text, transparent on right for image */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        100deg,
        rgba(250, 249, 246, 0.96) 0%,
        rgba(250, 249, 246, 0.88) 32%,
        rgba(250, 249, 246, 0.45) 55%,
        rgba(250, 249, 246, 0.05) 72%,
        rgba(250, 249, 246, 0) 85%
    );
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 620px;
    text-align: left;
    color: var(--color-text-dark);
    padding-top: 0;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 63, 33, 0.08);
    border: 1px solid rgba(217, 63, 33, 0.35);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    animation: slideInLeft 0.8s ease both;
}

.hero-badge i {
    color: var(--color-accent);
    font-size: 0.85rem;
    animation: pulse 2s infinite;
}

.hero-badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--color-accent);
    margin-bottom: 10px;
    animation: slideInLeft 0.9s ease 0.1s both;
    text-shadow: none;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 14px;
    font-weight: 800;
    color: var(--color-primary);
    animation: slideInLeft 1s ease 0.2s both;
    text-shadow: none;
}

.hero-title span {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    border-radius: 2px;
}

.hero-description {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    max-width: 500px;
    margin: 0 0 22px 0;
    opacity: 1;
    color: #374151;
    line-height: 1.7;
    animation: slideInLeft 1s ease 0.35s both;
    text-shadow: none;
}

/* Hero CTA Buttons Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease 0.5s both;
}

/* Primary CTA — Terracotta Solid */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(217, 63, 33, 0.4), 0 2px 8px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    border-radius: inherit;
}

.hero-cta-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 36px rgba(217, 63, 33, 0.55), 0 4px 12px rgba(0,0,0,0.3);
    color: #fff;
}

.hero-cta-arrow {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover .hero-cta-arrow {
    transform: translateX(5px);
}

/* Secondary CTA — Dark outline on white bg */
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(15, 23, 42, 0.06);
    border: 1.5px solid rgba(15, 23, 42, 0.25);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.hero-cta-secondary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

/* Hero Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: slideInLeft 1s ease 0.65s both;
    padding-top: 4px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    text-shadow: none;
}

.hero-stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b7280;
}

.hero-stat-divider {
    width: 1px;
    height: 34px;
    background: rgba(15, 23, 42, 0.15);
    flex-shrink: 0;
}

/* Slide-in from left animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Quote Form Card Section */
.quote-form-wrapper {
    position: relative;
    z-index: 4;
    width: 90%;
    max-width: 1200px;
    margin: -80px auto 80px; /* Slight overlap with hero */
}

.quote-form-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1), 0 10px 25px -10px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.quote-form-header {
    background: linear-gradient(135deg, var(--color-primary), #1e293b);
    padding: 35px 25px;
    text-align: center;
    color: var(--color-text-light);
    border-bottom: 4px solid var(--color-accent);
}

.quote-form-header h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.quote-form-header p {
    font-size: 0.95rem;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
}

.quote-form {
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: stretch;
}

.form-col {
    flex: 1;
}

/* Input group wrapper for premium icons */
.input-group-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-group-wrapper i {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 2;
}

.input-group-wrapper.textarea-group i {
    top: 15px;
}

/* Desktop sizing columns */
.col-hotel { flex: 2.2; }
.col-days { flex: 1.2; }
.col-date { flex: 1.5; }
.col-adults { flex: 1.2; }
.col-child { flex: 1.2; }

.col-name { flex: 1; }
.col-country { flex: 1; }
.col-phone { flex: 1; }
.col-email { flex: 1; }

.col-req { flex: 1.5; }
.col-submit {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
}

.quote-input, .quote-textarea {
    width: 100%;
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px 14px 46px; /* Extra left padding for icon */
    font-size: 0.95rem;
    color: var(--color-text-dark);
    font-weight: 500;
    transition: var(--transition-smooth);
}

/* Select element overrides for dropdown styling compatibility */
select.quote-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%2364748b' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
    padding-right: 35px;
}

.quote-textarea {
    resize: none;
    height: 100%;
    min-height: 120px;
    padding-left: 46px;
    padding-top: 14px;
}

.quote-input:focus, .quote-textarea:focus {
    background-color: #ffffff;
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(217, 63, 33, 0.12);
}

/* Highlight icon when field is focused */
.quote-input:focus + i,
.quote-textarea:focus + i {
    color: var(--color-accent);
}

.contact-details-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 750;
    color: var(--color-primary);
    text-align: left;
    margin: 15px 0 5px;
    border: none;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-details-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, #cbd5e1, transparent);
}

.privacy-notes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-notes p {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-notes p i {
    color: #10b981;
    font-size: 1.1rem;
}

.quote-submit-btn {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 45px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 25px -5px rgba(217, 63, 33, 0.35);
    transition: var(--transition-smooth);
    width: 100%;
    border: none;
}

.quote-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px -5px rgba(217, 63, 33, 0.45);
}

/* Slider Controls Indicators */
.slider-dots {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.3);
}

/* Ticker Banner at Top of Footer */
.footer-ticker {
    background-color: var(--color-accent); /* Terracotta Red ticker banner */
    color: #ffffff;
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 25s linear infinite;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.footer-ticker span {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.footer-ticker i {
    color: #fbbf24; /* Golden star sparkles */
    font-size: 1.1rem;
}

.footer-ticker:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Main Footer Styling */
.footer-container {
    background-color: #f8fafc;
    padding: 60px 5% 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
    color: var(--color-primary);
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    transition: var(--transition-smooth);
}

.footer-col ul a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

/* Info Contact Card overlay */
.footer-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(10, 17, 40, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 40px;
    border: 1px solid rgba(10, 17, 40, 0.05);
}

.info-card-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #64748b;
}

.app-badges span {
    font-weight: 600;
}

.info-card-right {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pill-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(105, 56, 239, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.pill-details {
    display: flex;
    flex-direction: column;
}

.pill-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

.pill-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Skyline Graphic Section */
.skyline-graphic {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.india-skyline {
    width: 100%;
    height: 120px;
}

/* Footer Bottom elements */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--color-accent);
    color: #ffffff;
    transform: translateY(-3px);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: #ffffff; /* White background matching mockup */
    z-index: 2002;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 30px rgba(9, 14, 26, 0.15);
    transition: var(--transition-smooth);
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1.5px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.drawer-logo-img {
    height: 44px;
    width: auto;
}

.drawer-close {
    font-size: 2.2rem;
    color: var(--color-accent); /* Red close icon */
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close:hover {
    transform: rotate(90deg);
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-menu-list > li {
    border-bottom: 1.5px solid #f1f5f9;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.mobile-link {
    color: var(--color-primary); /* Dark navy */
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
}

.mobile-link:hover, .mobile-link.active {
    color: var(--color-accent); /* Highlight red */
}

/* Mobile Dropdown Headers */
.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-dropdown-toggle-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #f1f5f9;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-dropdown.open .mobile-dropdown-toggle-icon {
    background-color: var(--color-accent);
    color: #ffffff;
    transform: rotate(135deg); /* Plus to X/minus transition */
}

/* Mobile submenus list */
.mobile-dropdown-menu {
    list-style: none;
    padding-left: 15px;
    margin-top: 12px;
    display: none;
    flex-direction: column;
    gap: 12px;
    border-left: 2px solid #e2e8f0;
}

.mobile-dropdown-menu li a {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    display: block;
}

.mobile-dropdown-menu li a:hover,
.mobile-dropdown-menu li a.active {
    color: var(--color-accent);
}

.mobile-dropdown.open .mobile-dropdown-menu {
    display: flex;
}

.overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    display: none;
}

.overlay-backdrop.show {
    display: block;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .nav-menu-container {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
        color: var(--color-primary); /* Dark color for visibility on white header background */
    }
    
    .cta-button {
        display: none; /* Hide phone call button on responsive screens */
    }
    
    .header-wrapper {
        top: 0;                      /* no top-bar on tablet/mobile */
        background-color: #ffffff;
        box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
        padding: 10px 5%;
    }
    
    .header-wrapper.sticky {
        background-color: #ffffff;
        top: 0;
    }
    
    .logo-img {
        height: 56px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quote-form-wrapper {
        margin-top: -60px;
        width: 95%;
        max-width: 650px;
    }
    
    .quote-form {
        padding: 25px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .col-half, .col-quarter {
        flex: 1 1 auto;
    }
    
    .quote-form-header h2 {
        font-size: 1.8rem;
    }
    
    .quote-submit-btn {
        width: 100%;
        text-align: center;
    }

    /* ── Hero: Tablet (≤1024px) ── */
    .hero-section {
        align-items: center;
        padding-top: 80px;    /* header only, no top-bar */
        padding-bottom: 0;
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero-content {
        max-width: 520px;
    }

    .hero-stat-num {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: clamp(1.9rem, 4vw, 2.8rem);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .header-wrapper {
        top: 0;
        background-color: #ffffff;
        box-shadow: var(--shadow-sticky);
    }
    
    .header-wrapper.sticky {
        background-color: #ffffff;
    }
    
    .mobile-toggle {
        color: var(--color-primary);
    }
    
    .logo-text {
        font-size: 1.25rem;
    }

    .slider-dots {
        right: 16px;
    }

    /* ── Hero: Mobile (≤768px) ── */
    .hero-section {
        height: auto;                   /* shrink to content — no empty gap */
        min-height: unset;              /* override base 680px min-height */
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 120px !important;              /* clear fixed header + breathing room */
        padding-bottom: 90px !important;
        padding-left: 6%;
        padding-right: 6%;
    }

    .hero-overlay {
        /* Full white wash on mobile for text readability */
        background: rgba(250, 249, 246, 0.88);
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        width: 100%;
        padding-top: 0;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9rem;
        max-width: 92%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .hero-cta-group {
        justify-content: center;
        gap: 10px;
        margin-bottom: 18px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .hero-cta-btn,
    .hero-cta-secondary {
        flex: 1 1 120px;
        max-width: 190px;
        justify-content: center;
        padding: 11px 14px;
        font-size: 0.87rem;
        gap: 7px;
    }

    /* Stats: evenly spread without dividers on mobile */
    .hero-stats {
        justify-content: space-evenly;
        gap: 6px;
        padding-top: 2px;
        width: 100%;
    }

    .hero-stat {
        align-items: center;
        flex: 1;
    }

    .hero-stat-num {
        font-size: 1.25rem;
    }

    .hero-stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .hero-stat-divider {
        display: none;           /* hide dividers, use space-evenly instead */
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-info-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .info-card-right {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ── Hero: Small Phones (≤480px) ── */
@media (max-width: 480px) {
    .hero-section {
        height: auto;
        min-height: unset;
        align-items: flex-start;
        padding-top: 85px;
        padding-bottom: 40px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero-badge {
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.68rem;
        letter-spacing: 3px;
        margin-bottom: 7px;
    }

    .hero-badge-text {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 8.5vw, 1.9rem);
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 0.86rem;
        margin-bottom: 14px;
    }

    .hero-cta-group {
        flex-direction: row;
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-cta-btn,
    .hero-cta-secondary {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
        font-size: 0.82rem;
        padding: 10px 12px;
        gap: 5px;
    }

    .hero-stats {
        gap: 4px;
        justify-content: space-evenly;
        width: 100%;
    }

    .hero-stat {
        align-items: center;
        flex: 1;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat-num {
        font-size: 1.1rem;
    }

    .hero-stat-label {
        font-size: 0.58rem;
        white-space: nowrap;
        letter-spacing: 0.4px;
    }
}

/* Homepage About Us Section Styles */
.home-about-section {
    position: relative;
    background-color: #faf9f6; /* Elegant warm ivory */
    padding: 100px 5%;
    overflow: hidden;
}

.home-about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image-collage {
    position: relative;
    height: 520px;
    width: 100%;
}

.about-img-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transition: var(--transition-smooth);
}

.main-img {
    width: 62%;
    height: 430px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 8px solid #ffffff;
}

.offset-img {
    width: 62%;
    height: 380px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.main-img img, .offset-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.main-img img:hover, .offset-img img:hover {
    transform: scale(1.04);
}

/* Floating Reviews Card */
.floating-reviews-badge {
    position: absolute;
    top: 15%;
    right: 25%;
    z-index: 3;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.03);
    animation: floatAnimation 4s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

.reviews-badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: -10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.avatar-item:first-child {
    margin-left: 0;
}

.reviews-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stars-row {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.8rem;
    color: #f59e0b; /* Golden Yellow */
}

.stars-val {
    color: #0f172a;
    font-weight: 700;
    margin-left: 4px;
    font-size: 0.85rem;
}

.reviews-count {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

/* Right Side Styles */
.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-tag-pill {
    background-color: rgba(217, 63, 33, 0.08);
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: inline-block;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    line-height: 1.25;
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.about-intro {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.65;
}

.about-features-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-check-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-green {
    color: #10b981;
}

.check-orange {
    color: #f97316;
}

.feature-card-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.feature-card-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Actions Row */
.about-actions-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.btn-get-started {
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.btn-get-started:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(217, 63, 33, 0.25);
    color: #ffffff;
}

.btn-whatsapp {
    background-color: #ffffff;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 24px 8px 8px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    background-color: #faf9f6;
}

.wa-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.08);
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover .wa-icon-circle {
    background-color: #25d366;
    color: #ffffff;
}

/* Statistics Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.stat-card {
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    padding: 22px 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    border-color: rgba(217, 63, 33, 0.15);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent);
    font-family: var(--font-heading);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.3;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .home-about-container {
        gap: 40px;
        grid-template-columns: 1fr 1fr;
    }
    .about-heading {
        font-size: 2.2rem;
    }
    .about-image-collage {
        height: 460px;
    }
    .main-img {
        height: 380px;
    }
    .offset-img {
        height: 330px;
    }
}

@media (max-width: 768px) {
    .home-about-section {
        padding: 70px 5%;
    }
    .home-about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image-collage {
        max-width: 500px;
        margin: 0 auto;
        height: 420px;
    }
    .main-img {
        height: 330px;
    }
    .offset-img {
        height: 290px;
    }
    .floating-reviews-badge {
        right: 18%;
        top: 10%;
    }
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .stat-card {
        padding: 16px;
    }
}
.featured-categories-section {
    background-color: #ffffff;
    padding: 80px 5%;
    overflow: hidden;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
}

.categories-tag {
    background-color: rgba(230, 57, 70, 0.08);
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.categories-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary);
}

.view-all-btn {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.view-all-btn:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Slider Drag & Auto-scroll Area */
.categories-slider-wrapper {
    width: auto;
    margin: 0 -5%;
    padding: 15px 5%;
    overflow-x: auto;
    cursor: grab;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.categories-slider-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.categories-slider-wrapper:active {
    cursor: grabbing;
}

.categories-slider {
    display: flex;
    gap: 25px;
    width: max-content;
    transition: transform 0.1s ease-out;
}

.category-card {
    position: relative;
    width: 280px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.category-card h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 10px 20px;
    transition: var(--transition-smooth);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Hover States */
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(217, 63, 33, 0.25);
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card:hover .card-overlay {
    background: linear-gradient(180deg, rgba(217, 63, 33, 0.45) 0%, rgba(15, 23, 42, 0.8) 100%);
}

/* Dots Navigation */
.slider-nav-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.nav-dot {
    width: 25px;
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-dot.active {
    background-color: var(--color-accent);
    width: 40px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .categories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .categories-title {
        font-size: 2.2rem;
    }
    
    .view-all-btn {
        width: 100%;
        justify-content: center;
    }
    
    .category-card {
        width: 240px;
        height: 200px;
    }
}

/* Mega Menu Dropdown Styles */
.mega-dropdown-trigger {
    position: static !important; /* For full header wrapper width alignment */
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 5%;
    right: 5%;
    width: 90%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(9, 14, 26, 0.12);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    z-index: 100;
    border: 1px solid rgba(9, 14, 26, 0.05);
}

.mega-dropdown-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-menu-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 5px;
    display: inline-block;
}

.mega-menu-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-menu-col ul a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: block;
    transition: var(--transition-smooth);
}

.mega-menu-col ul a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

/* Mega Menu Image Cards */
.mega-menu-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mega-menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.mega-menu-card .card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(9, 14, 26, 0.9) 0%, rgba(9, 14, 26, 0) 100%);
    color: #ffffff;
    z-index: 2;
}

.mega-menu-card .card-caption h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.mega-menu-card .card-caption p {
    font-size: 0.75rem;
    opacity: 0.8;
}

.mega-menu-card:hover img {
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .mega-menu {
        display: none !important;
    }
}

/* How It Works Section Styles */
.how-it-works-section {
    background-color: #faf0ec; /* Light pinkish/cream color */
    padding: 130px 5% 90px;
    position: relative;
    clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%); /* Smooth slanted top */
    margin-top: -40px; /* Blend with section above */
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.how-header-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.how-tag {
    background-color: #ffffff;
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.dot-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: inline-block;
}

.how-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-primary);
}

.how-title .red-dot {
    color: var(--color-secondary);
}

/* Steps Grid */
.how-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(9, 14, 26, 0.03);
    transition: var(--transition-smooth);
}

.step-card-teal { border: 1.5px solid rgba(20, 184, 166, 0.25); }
.step-card-orange { border: 1.5px solid rgba(217, 63, 33, 0.25); }
.step-card-purple { border: 1.5px solid rgba(105, 56, 239, 0.25); }

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(9, 14, 26, 0.07);
}

.step-card-teal:hover { border-color: rgba(20, 184, 166, 0.7); }
.step-card-orange:hover { border-color: rgba(217, 63, 33, 0.7); }
.step-card-purple:hover { border-color: rgba(105, 56, 239, 0.7); }

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.step-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

/* Custom icon themes */
.step-icon-teal {
    background-color: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.step-icon-orange {
    background-color: rgba(217, 63, 33, 0.1);
    color: #d93f21;
}

.step-icon-purple {
    background-color: rgba(105, 56, 239, 0.1);
    color: #6938ef;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    -webkit-text-stroke: 1px currentColor;
    color: transparent;
}

.step-num-teal { color: #14b8a6; }
.step-num-orange { color: #d93f21; }
.step-num-purple { color: #6938ef; }

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive steps block */
@media (max-width: 1200px) {
    .how-it-works-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .how-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .how-title {
        font-size: 2.2rem;
    }

    .step-card {
        padding: 30px 25px;
    }
}

/* Incredible India Tours Section Styles */
.tours-section {
    background-color: #ffffff;
    padding: 100px 5%;
}

.tours-container {
    max-width: 1400px;
    margin: 0 auto;
}

.tours-header {
    text-align: center;
    margin-bottom: 60px;
}

.tours-tag {
    background-color: rgba(255, 107, 0, 0.08);
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.tours-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.tours-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.tour-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(9, 14, 26, 0.04);
    border: 1px solid #f1f5f9;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(9, 14, 26, 0.08);
    border-color: rgba(255, 107, 0, 0.15);
}

.tour-img-wrapper {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-img-wrapper img {
    transform: scale(1.06);
}

/* Float Badges on Image */
.fav-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    z-index: 5;
}

.fav-btn:hover {
    color: #e63946;
    background: #ffffff;
    transform: scale(1.1);
}

.trending-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-accent);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.img-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: #ffffff;
    width: 18px;
    border-radius: 10px;
}

/* Card Content Details */
.tour-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.tour-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #f59e0b; /* Golden star color */
}

.tour-title-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Target cities display with clamp */
.tour-cities {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.tour-cities i {
    color: #94a3b8;
    font-size: 1rem;
    margin-top: 2px;
}

.tour-cities p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines for uniform card height */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}

.tour-price {
    display: none;
}

.price-label {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 2px;
}

.price-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.price-old {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.card-divider {
    border: 0;
    border-top: 1px solid #f1f5f9;
    margin: 0 0 15px 0;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.tour-footer i {
    color: #94a3b8;
    margin-right: 4px;
}

/* Card Actions / Two Buttons Send Enquiry & View Details */
.tour-actions {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 12px;
    margin-top: auto; /* Push actions to bottom of card content */
}

.tour-actions.three-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tour-actions.three-buttons .enquiry-btn {
    grid-column: span 2;
}

.action-btn {
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.enquiry-btn {
    background: var(--color-primary); /* Dark Navy */
    color: #ffffff;
    border: 1.5px solid var(--color-primary);
}

.enquiry-btn:hover {
    background: var(--color-accent); /* Saffron Orange on hover */
    border-color: var(--color-accent);
    color: #ffffff;
}

.details-btn {
    background: transparent;
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent);
}

.details-btn:hover {
    background: var(--color-accent);
    color: #ffffff;
}

.whatsapp-btn {
    background: #25d366; /* WhatsApp Green */
    color: #ffffff;
    border: 1.5px solid #25d366;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    color: #ffffff;
}

/* Responsive Grid overrides */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .tours-title {
        font-size: 2.2rem;
    }
}


.rajasthan-tours-section {
    background-color: #faf9f6; /* Ivory base */
}

.tours-desc-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tours-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    overflow: hidden;
    max-height: 50px; /* Clamped by default */
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tours-desc.expanded {
    max-height: 300px; /* Fully expanded height */
}

.read-more-btn {
    background: transparent;
    border: none;
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
}

.read-more-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.read-more-btn.active i {
    transform: rotate(180deg);
}

.view-all-tours-wrapper {
    text-align: center;
    margin-top: 50px;
}

.view-all-tours-btn {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.view-all-tours-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}


.golden-triangle-tours-section {
    background-color: #ffffff; /* Contrast white background */
}

/* Benefits & Key Advantages Section Styles */
.benefits-section {
    background-color: #f8fafc; /* Very light slate-blue tint */
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.benefits-header {
    text-align: center;
    margin-bottom: 70px;
}

.benefits-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.underline-accent {
    position: relative;
    color: var(--color-accent);
}

.underline-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.benefits-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-road-wrapper {
    position: relative;
    margin-top: 40px;
}

/* Background road graphic styling */
.benefits-road-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.benefits-road-line svg {
    width: 100%;
    height: 100%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Benefit Cards */
.benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(9, 14, 26, 0.03);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(9, 14, 26, 0.08);
    border-color: rgba(255, 107, 0, 0.15);
}

.benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

/* Icon custom colors matching image */
.icon-green {
    background-color: #84cc16;
    color: #ffffff;
}

.icon-orange {
    background-color: #d93f21;
    color: #ffffff;
}

.icon-purple {
    background-color: #6366f1;
    color: #ffffff;
}

.icon-teal {
    background-color: #14b8a6;
    color: #ffffff;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 750;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive constraints */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .benefits-road-line {
        display: none; /* Hide road path on smaller viewport wraps */
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-title {
        font-size: 2.2rem;
    }
}

/* Testimonial Section Styles */
.testimonial-section {
    background: linear-gradient(180deg, #fff0ec 0%, #fffcfb 100%);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 5;
}

/* Left Image Box with target concentric rings */
.testimonial-image-block {
    position: relative;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 480px;
}

.target-bg-decor {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 20px solid rgba(214, 40, 40, 0.08);
    z-index: 1;
}

.target-bg-decor::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border-radius: 50%;
    border: 35px solid rgba(214, 40, 40, 0.04);
}

.couple-img {
    max-width: 100%;
    max-height: 450px;
    height: auto;
    position: relative;
    z-index: 2;
    object-fit: contain;
}

/* Right content box */
.testimonial-content-block {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-pill {
    background: rgba(214, 40, 40, 0.08);
    color: #d62828;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
}

.testimonial-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.testimonial-rating-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.testimonial-rating-bar .stars {
    color: #f59e0b;
    font-size: 1.15rem;
    display: flex;
    gap: 2px;
}

.testimonial-rating-bar .rating-num {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.05rem;
}

/* Swiper styling overrides */
.testimonial-swiper {
    width: 100%;
    overflow: hidden;
}

.testimonial-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-text {
    font-size: 1.2rem;
    color: #334155;
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
}

.client-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 10px 24px;
    border-radius: 100px;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(9, 14, 26, 0.03);
    border: 1px solid #f1f5f9;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1rem;
    font-weight: 750;
    color: var(--color-primary);
    margin: 0 0 2px 0;
}

.client-info p {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

.testimonial-swiper .swiper-pagination {
    position: relative;
    margin-top: 35px;
    bottom: 0;
    text-align: left;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--color-accent) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .testimonial-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .testimonial-image-block {
        width: 100%;
        height: auto;
    }
    
    .testimonial-content-block {
        width: 100%;
        align-items: center;
    }
    
    .review-text {
        font-size: 1.1rem;
    }
    
    .client-badge {
        margin: 0 auto;
    }
    
    .testimonial-swiper .swiper-pagination {
        text-align: center;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 100px 5%;
    background-color: #faf9f6; /* Ivory base */
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-pill {
    background: rgba(214, 40, 40, 0.08);
    color: #d62828;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.gallery-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(9, 14, 26, 0.04);
    z-index: 2;
}

/* Large box */
.gallery-item.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Tall box */
.gallery-item.item-tall {
    grid-row: span 2;
}

/* Wide box */
.gallery-item.item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Overlay elements */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(9, 14, 26, 0.02) 40%, rgba(9, 14, 26, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.gallery-overlay h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.gallery-zoom-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom-btn {
    transform: scale(1);
    opacity: 1;
}

.gallery-zoom-btn:hover {
    background: var(--color-accent);
    color: #ffffff;
}

/* Gallery responsiveness */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
    
    .gallery-item.item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    
    .gallery-item.item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item.item-tall {
        grid-row: span 1;
    }
    
    .gallery-item.item-wide {
        grid-column: span 2;
    }
    
    .gallery-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    
    .gallery-item.item-large, .gallery-item.item-tall, .gallery-item.item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

.faq-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

/* Left Column */
.faq-left-block {
    width: 46%;
}

.faq-heading-wrapper {
    margin-bottom: 35px;
}

.faq-main-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.35;
}

.faq-pill-img {
    display: inline-block;
    width: 80px;
    height: 34px;
    border-radius: 50px;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 5px;
    transform: translateY(-2px);
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.faq-pill-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-orange {
    color: var(--color-accent);
}

.faq-trust-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-trust-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1.5px solid transparent;
    transition: var(--transition-smooth);
}

.faq-trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(9, 14, 26, 0.04);
}

.border-green {
    border-color: rgba(132, 204, 22, 0.15);
}

.border-purple {
    border-color: rgba(99, 102, 241, 0.15);
}

.border-teal {
    border-color: rgba(20, 184, 166, 0.15);
}

.faq-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.bg-green {
    background: rgba(132, 204, 22, 0.1);
    color: #84cc16;
}

.bg-purple {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.bg-teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.faq-card-content h3 {
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--color-primary);
    margin: 0 0 5px 0;
}

.faq-card-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Right Column FAQs */
.faq-right-block {
    width: 54%;
}

.faq-pill-label {
    background: rgba(214, 40, 40, 0.08);
    color: #d62828;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.faq-right-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 35px 0;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 750;
    color: var(--color-primary);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
    color: var(--color-accent);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-content {
    max-height: 150px;
    margin-top: 10px;
}

.accordion-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.toggle-icon {
    font-size: 1.25rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.accordion-item.active .toggle-icon {
    color: var(--color-accent);
}

/* Responsive FAQs */
@media (max-width: 1024px) {
    .faq-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .faq-left-block, .faq-right-block {
        width: 100%;
    }
    
    .faq-main-title, .faq-right-title {
        font-size: 2.2rem;
    }
}

/* Why Choose Us Section Styles */
.why-choose-section {
    padding: 100px 5%;
    background-color: #faf9f6; /* Ivory background */
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-pill {
    background: rgba(214, 40, 40, 0.08);
    color: #d62828;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.why-choose-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.why-choose-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(9, 14, 26, 0.02);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(9, 14, 26, 0.06);
    border-color: rgba(255, 107, 0, 0.15);
}

.why-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon-wrapper {
    background: var(--color-accent);
    color: #ffffff;
    transform: rotateY(360deg);
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 750;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Responsiveness */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-title {
        font-size: 2.2rem;
    }
}

/* India Trip By Theme Styles */
.theme-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

.theme-container {
    max-width: 1400px;
    margin: 0 auto;
}

.theme-header {
    text-align: center;
    margin-bottom: 50px;
}

.theme-tag {
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.theme-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 15px;
}

/* Plane path divider */
.theme-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.theme-divider .line {
    width: 80px;
    height: 1px;
    border-bottom: 1px dashed var(--color-accent);
}

.theme-divider .plane-icon {
    color: var(--color-primary);
    font-size: 1.1rem;
    transform: rotate(90deg);
}

.theme-desc-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.theme-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Outer layout containing navigation arrows and swiper slider */
.theme-slider-outer {
    position: relative;
    padding: 0 45px;
    margin-top: 30px;
}

.theme-swiper {
    width: 100%;
    overflow: hidden;
}

/* Nav arrows on sides */
.theme-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(9, 14, 26, 0.05);
}

.theme-prev-btn {
    left: -10px;
}

.theme-next-btn {
    right: -10px;
}

.theme-nav-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
}

/* Theme card */
.theme-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 10px 25px rgba(9, 14, 26, 0.03);
}

.theme-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(9, 14, 26, 0.2) 0%, rgba(9, 14, 26, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

/* When overlay is active (Slide 1 by default, or others on hover) */
.theme-card-overlay.active, 
.theme-card:hover .theme-card-overlay {
    opacity: 1;
    visibility: visible;
}

.theme-card:hover img {
    transform: scale(1.08);
}

.theme-card-overlay h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.theme-card-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.theme-card-btn {
    background: var(--color-accent);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    width: fit-content;
    transition: var(--transition-smooth);
}

.theme-card-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* Label when NOT hovered */
.theme-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(9, 14, 26, 0.85) 100%);
    transition: opacity 0.3s ease;
    z-index: 2;
}

.theme-card-label h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 750;
    margin: 0;
}

.theme-card:hover .theme-card-label,
.theme-card-overlay.active + .theme-card-label {
    opacity: 0;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .theme-slider-outer {
        padding: 0;
    }
    
    .theme-nav-btn {
        display: none; /* Hide arrow navigation on touch devices */
    }
    
    .theme-title {
        font-size: 2.2rem;
    }
}

/* Floating Widgets CSS */
.floating-left-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

@media (max-width: 768px) {
    .floating-left-actions {
        bottom: 20px;
        left: 12px;
        gap: 8px;
    }

    .floating-action-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 6px;
    }
}

.floating-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 8px; /* Square type matching the theme */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.floating-action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.wa-float {
    background-color: #25d366;
}

.call-float {
    background-color: var(--color-primary);
}

.book-float {
    background-color: var(--color-accent);
}

/* Scroll To Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 8px; /* Square type matching the theme */
    background-color: var(--color-accent);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-to-top-btn.visible,
.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:hover {
    background-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive adjustments for floaters */
@media (max-width: 768px) {
    .floating-left-actions {
        bottom: 20px;
        left: 20px;
        gap: 8px;
    }
    .floating-action-btn {
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1.25rem;
    }
}
/* Lightbox Gallery Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 14, 26, 0.95);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    text-align: center;
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 4px solid #ffffff;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-modal.show #lightboxImage {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2010;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--color-accent);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-caption {
    margin-top: 15px;
    color: #ffffff;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    .lightbox-prev {
        left: 15px;
    }
    .lightbox-next {
        right: 15px;
    }
    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 2.5rem;
    }
    #lightboxImage {
        border-width: 2px;
    }
}

/* Booking Modal Styles */
.booking-modal-overlay {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 14, 26, 0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.booking-modal-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 750px;
    max-height: 90vh;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    padding: 35px;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(217, 63, 33, 0.1);
}

.booking-modal-overlay.show .booking-modal-card {
    transform: translateY(0);
}

.booking-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2.2rem;
    color: #64748b;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
    z-index: 10;
}

.booking-modal-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.booking-modal-header {
    margin-bottom: 25px;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
    padding-bottom: 15px;
}

.booking-modal-header h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.booking-modal-header p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.modal-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
}

.modal-col-span-2 {
    grid-column: span 2;
}

.modal-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.modal-input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--color-accent);
    font-size: 1.1rem;
    pointer-events: none;
}

.modal-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border-radius: 10px;
    border: 1.5px solid rgba(15, 23, 42, 0.1);
    background-color: #faf9f6;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.modal-input:focus {
    border-color: var(--color-accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(217, 63, 33, 0.15);
}

.modal-textarea {
    width: 100%;
    height: 100px;
    padding: 12px 16px 12px 42px;
    border-radius: 10px;
    border: 1.5px solid rgba(15, 23, 42, 0.1);
    background-color: #faf9f6;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--color-primary);
    transition: var(--transition-smooth);
    resize: none;
}

.modal-textarea:focus {
    border-color: var(--color-accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(217, 63, 33, 0.15);
}

.textarea-group i {
    top: 15px;
}

.modal-submit-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 20px;
    gap: 15px;
}

.privacy-note {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.privacy-note i {
    color: #10b981;
    font-size: 1.1rem;
}

.modal-submit-btn {
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(217, 63, 33, 0.25);
    transition: var(--transition-smooth);
}

.modal-submit-btn:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(217, 63, 33, 0.35);
}

@media (max-width: 640px) {
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
    .modal-col-span-2 {
        grid-column: span 1;
    }
    .booking-modal-card {
        padding: 24px 20px;
    }
    .modal-submit-container {
        flex-direction: column;
        text-align: center;
    }
    .modal-submit-btn {
        width: 100%;
    }
}

/* Curated Luxury Experiences Section Styles */
.curated-experiences-section {
    padding: 100px 5%;
    background-color: #faf0ec; /* Light beige matching theme */
}

.curated-experiences-section .experiences-container {
    max-width: 1300px;
    margin: 0 auto;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.experience-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 15px 35px rgba(9, 14, 26, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-card:hover .card-img-box img {
    transform: scale(1.08);
}

.card-glass-content {
    position: relative;
    z-index: 2;
    background: rgba(17, 30, 56, 0.65); /* Rich blue tint */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(197, 160, 89, 0.4); /* Gold border top highlight */
    border-radius: 20px;
    padding: 30px;
    margin: 20px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.experience-card:hover .card-glass-content {
    background: rgba(17, 30, 56, 0.75);
    border-top-color: rgba(197, 160, 89, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15);
}

.card-glass-content h3 {
    font-family: var(--font-heading, "Outfit", sans-serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.card-glass-content p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 22px;
}

.exp-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    border: 1px solid var(--color-accent, #c5a059);
    color: var(--color-accent, #c5a059);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.exp-card-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.experience-card:hover .exp-card-btn {
    background-color: var(--color-accent, #c5a059);
    color: #111e38;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
}

.experience-card:hover .exp-card-btn i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .experience-card {
        height: 400px;
    }
}

/* Interactive Map Section Styles */
.interactive-map-section {
    padding: 100px 5%;
    background-color: #ffffff;
}

.map-section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 60px auto 0;
}

.map-visual-box {
    background-color: #faf0ec;
    border-radius: 24px;
    padding: 40px;
    box-shadow: inset 0 0 40px rgba(17, 30, 56, 0.02);
    border: 1px solid rgba(17, 30, 56, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.svg-map-wrapper {
    width: 100%;
    max-width: 450px;
}

.india-vector-map {
    width: 100%;
    height: auto;
}

/* Pins styling */
.map-pin {
    cursor: pointer;
    transition: all 0.3s ease;
}

.pin-glow {
    fill: var(--color-accent, #c5a059);
    fill-opacity: 0.15;
    transform-origin: center;
    animation: pinPulse 2s infinite ease-out;
}

.pin-core {
    fill: var(--color-accent, #c5a059);
    stroke: #ffffff;
    stroke-width: 1.5px;
    transition: all 0.3s ease;
}

.map-pin:hover .pin-core,
.map-pin.active .pin-core {
    fill: var(--color-secondary, #d93f21);
    transform: scale(1.2);
}

.map-pin:hover .pin-glow,
.map-pin.active .pin-glow {
    fill: var(--color-secondary, #d93f21);
    fill-opacity: 0.3;
}

@keyframes pinPulse {
    0% {
        transform: scale(0.6);
        fill-opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        fill-opacity: 0;
    }
}

/* Info Card Box */
.map-info-box {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.info-card-placeholder {
    text-align: center;
    padding: 40px;
    background: #faf0ec;
    border-radius: 24px;
    border: 1px dashed rgba(197, 160, 89, 0.4);
    width: 100%;
}

.placeholder-icon {
    font-size: 3.5rem;
    color: var(--color-accent, #c5a059);
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite alternate;
}

.info-card-placeholder h3 {
    font-size: 1.4rem;
    color: var(--color-primary, #111e38);
    margin-bottom: 12px;
    font-weight: 700;
}

.info-card-placeholder p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Region Info Cards */
.region-info-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(9, 14, 26, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.region-info-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.region-card-img {
    height: 260px;
    overflow: hidden;
}

.region-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-card-body {
    padding: 30px;
}

.region-tag {
    color: var(--color-secondary, #d93f21);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.region-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary, #111e38);
    margin-bottom: 10px;
    font-weight: 800;
}

.region-card-body p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.region-card-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    font-size: 0.88rem;
    color: #475569;
    font-weight: 600;
}

.region-card-meta i {
    color: var(--color-accent, #c5a059);
    margin-right: 4px;
}

.region-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.map-action-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.map-action-btn.details-btn {
    border: 1px solid var(--color-accent, #c5a059);
    color: var(--color-primary, #111e38);
}

.map-action-btn.details-btn:hover {
    background-color: var(--color-accent, #c5a059);
    color: #ffffff;
}

.map-action-btn.enquiry-btn {
    background-color: var(--color-primary, #111e38);
    color: #ffffff;
}

.map-action-btn.enquiry-btn:hover {
    background-color: var(--color-accent, #c5a059);
}

/* Responsive */
@media (max-width: 992px) {
    .map-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .map-info-box {
        min-height: auto;
    }
}

/* Additional Map Styles: Labels & Tooltips */
.map-label {
    fill: #64748b;
    font-size: 10px;
    font-weight: 700;
    text-anchor: middle;
    letter-spacing: 0.5px;
    font-family: var(--font-heading, "Outfit", sans-serif);
    pointer-events: none;
    transition: fill 0.3s ease;
}

.map-pin:hover .map-label,
.map-pin.active .map-label {
    fill: var(--color-secondary, #d93f21);
}

.pin-tooltip {
    position: absolute;
    background: #111e38;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.5);
    pointer-events: none;
    transform: translate(-50%, -120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    white-space: nowrap;
    text-align: center;
}

.pin-tooltip h4 {
    margin: 0 0 2px 0;
    font-family: var(--font-heading, "Outfit", sans-serif);
    font-size: 0.85rem;
    color: var(--color-accent, #c5a059);
    font-weight: 700;
}

.pin-tooltip p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
}

.pin-tooltip.show-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -130%);
}
