/* ===== CSS Variables - DOT Philippines Brand ===== */
:root {
    --gold: #C8A415;
    --gold-light: #D4AF37;
    --gold-dark: #A6880F;
    --gold-pale: #F5EED6;
    --gold-glow: rgba(200, 164, 21, 0.3);
    --black: #1a1a1a;
    --black-soft: #2c2c2c;
    --black-light: #3d3d3d;
    --white: #ffffff;
    --off-white: #FAFAF7;
    --cream: #F8F5EC;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gray-900: #212529;

    --font-display: 'Satoshi', sans-serif;
    --font-body: 'Switzer', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(200, 164, 21, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* ===== Utility Classes ===== */
.glass-panel {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 164, 21, 0.4);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-glass:hover {
    background: rgba(200, 164, 21, 0.2);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 2rem;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.7rem 2rem;
}

.nav.scrolled .nav-link,
.nav.scrolled .logo-text {
    color: var(--gray-900);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.footer-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.nav.scrolled .logo-subtitle {
    color: var(--gray-800);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-brand .logo-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand .logo-text {
    color: var(--white);
}

.logo-accent {
    color: var(--gold);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-lang {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav.scrolled .btn-lang {
    border-color: var(--gray-300);
    color: var(--gray-800);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav.scrolled .nav-toggle span {
    background: var(--gray-900);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: kenBurns 20s ease infinite;
}

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

@keyframes kenBurns {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(200, 164, 21, 0.4);
    border-radius: 50%;
    animation: float-up 8s infinite;
}

@keyframes float-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

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

.hero-campaign-logo {
    max-width: 500px;
    width: 85%;
    height: auto;
    margin: 0 auto 2.5rem;
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.4s; }
.hero-title-line:nth-child(2) { animation-delay: 0.6s; }
.hero-title-line:nth-child(3) { animation-delay: 0.8s; }

.hero-title-line.accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1s;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.2s;
}

.hero-cta .btn-primary,
.hero-cta .btn-glass {
    min-width: 200px;
    justify-content: center;
    text-align: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.4s;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    animation: pulse 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===== Map Section ===== */
.explore {
    padding: 6rem 2rem;
    background: var(--white);
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.map-wrapper {
    position: relative;
    background: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.map-image-container {
    position: relative;
    display: block;
    width: 100%;
    max-width: 650px;
}

.ph-map-img {
    width: 100%;
    height: auto;
    display: block;
}

.map-region {
    position: absolute;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    padding: 0;
    outline: none;
}

.map-region:hover,
.map-region:focus {
    background: transparent;
    outline: none;
    filter: drop-shadow(0 0 8px rgba(200, 164, 21, 0.6));
}

.map-region.active {
    background: transparent;
    outline: none;
    filter: drop-shadow(0 0 12px rgba(200, 164, 21, 0.8));
}

.map-region:focus-visible {
    outline: none;
}

.map-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.map-modal-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.map-modal {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    max-width: 420px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(10px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.map-modal-overlay.visible .map-modal {
    transform: scale(1) translateY(0);
}

.map-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.map-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--black);
}

.map-modal-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.map-modal-description {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.map-modal-highlights {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.map-modal-highlights li {
    padding: 6px 14px;
    background: rgba(200, 164, 21, 0.12);
    border: 1px solid rgba(200, 164, 21, 0.25);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--black);
}

.map-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--black);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 24px;
    transition: var(--transition);
}

.map-modal-cta:hover {
    background: var(--black-light);
    transform: translateY(-1px);
}

.travel-times {
    background: var(--cream);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    max-width: 500px;
    margin: 2rem auto 0;
}

.travel-times h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.travel-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.85rem;
}

.travel-route:last-child {
    border-bottom: none;
}

.travel-duration {
    font-weight: 600;
    color: var(--gold-dark);
}

/* ===== Destinations Section ===== */
.destinations {
    padding: 6rem 2rem;
}

.destination-filters {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.filter-btn.active {
    background: var(--black);
    color: var(--gold-light);
    border-color: var(--black);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.destination-card:nth-child(1) { animation-delay: 0.1s; }
.destination-card:nth-child(2) { animation-delay: 0.2s; }
.destination-card:nth-child(3) { animation-delay: 0.3s; }
.destination-card:nth-child(4) { animation-delay: 0.4s; }
.destination-card:nth-child(5) { animation-delay: 0.5s; }
.destination-card:nth-child(6) { animation-delay: 0.6s; }

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
}

.card-save {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.card-save:hover {
    background: var(--gold);
    color: var(--black);
}

.card-content {
    padding: 1.25rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.card-location {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-reviews {
    font-weight: 400;
    color: var(--gray-600);
    font-size: 0.8rem;
}

.card-best-time {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== Trip Builder Section ===== */
.trip-builder {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.builder-container {
    max-width: 800px;
    margin: 0 auto;
}

.builder-steps {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.builder-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    opacity: 0.5;
}

.builder-step.active {
    opacity: 1;
    background: rgba(200, 164, 21, 0.08);
}

.builder-step.completed {
    opacity: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-600);
    transition: var(--transition);
}

.builder-step.active .step-number {
    background: var(--gold);
    color: var(--black);
}

.builder-step.completed .step-number {
    background: var(--black);
    color: var(--gold-light);
}

.step-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
}

.step-info p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.builder-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.form-step h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.style-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.style-card {
    cursor: pointer;
}

.style-card input {
    display: none;
}

.style-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.style-card input:checked + .style-card-content {
    border-color: var(--gold);
    background: rgba(200, 164, 21, 0.05);
    box-shadow: 0 0 0 3px rgba(200, 164, 21, 0.1);
}

.style-card-content:hover {
    border-color: var(--gold);
}

.style-icon {
    font-size: 2rem;
}

.style-name {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Duration Slider */
.duration-slider-container {
    text-align: center;
    margin-bottom: 2rem;
}

.duration-slider {
    width: 100%;
    max-width: 400px;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-200);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    margin: 1.5rem auto;
    display: block;
}

.duration-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 8px var(--gold-glow);
}

.duration-display {
    margin-top: 1rem;
}

.duration-value {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--black);
}

.duration-unit {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-left: 4px;
}

.duration-suggestions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.suggestion-chip {
    padding: 6px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    font-size: 0.8rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.suggestion-chip:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

/* Budget Options */
.budget-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.budget-card {
    cursor: pointer;
}

.budget-card input {
    display: none;
}

.budget-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    text-align: center;
}

.budget-card input:checked + .budget-card-content {
    border-color: var(--gold);
    background: rgba(200, 164, 21, 0.05);
    box-shadow: 0 0 0 3px rgba(200, 164, 21, 0.1);
}

.budget-card-content:hover {
    border-color: var(--gold);
}

.budget-icon {
    font-size: 2rem;
}

.budget-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.budget-range {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.btn-generate {
    white-space: nowrap;
    margin-left: auto;
    display: block;
}

.btn-next {
    margin-left: auto;
    display: block;
}

.itinerary-actions .btn-primary,
.itinerary-actions .btn-glass {
    white-space: nowrap;
}

.btn-prev {
    color: var(--gray-600);
    font-weight: 500;
}

/* Itinerary Result */
.itinerary-header {
    text-align: center;
    margin-bottom: 2rem;
}

.itinerary-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.itinerary-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.itinerary-meta {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.itinerary-day-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.itinerary-day-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.itinerary-day-badge {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.75rem 0.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    letter-spacing: 0.5px;
}

.itinerary-day-content {
    flex: 1;
}

.itinerary-day-theme {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.itinerary-schedule {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itinerary-schedule li {
    display: flex;
    gap: 0.75rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--gray-100);
}

.itinerary-schedule li:last-child {
    border-bottom: none;
}

.schedule-time {
    font-weight: 600;
    color: var(--gold-dark);
    min-width: 45px;
    font-size: 0.8rem;
}

.schedule-desc {
    color: var(--gray-800);
}

.itinerary-more {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.itinerary-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Festivals Section ===== */
.festivals {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--black), var(--black-soft));
    color: var(--white);
}

.festivals .section-tag {
    background: rgba(200, 164, 21, 0.2);
    color: var(--gold-light);
}

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

.festivals .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.festival-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 1200px;
    margin: 0 auto;
}

.festival-carousel::-webkit-scrollbar {
    height: 6px;
}

.festival-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.festival-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.festival-card {
    min-width: 280px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    scroll-snap-align: start;
    background: rgba(200, 164, 21, 0.06);
    border: 1px solid rgba(200, 164, 21, 0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.festival-card:hover {
    background: rgba(200, 164, 21, 0.12);
    transform: translateY(-4px);
}

.festival-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    background: rgba(200, 164, 21, 0.2);
    border-radius: var(--radius-sm);
    min-width: 60px;
}

.festival-month {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-light);
}

.festival-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.festival-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.festival-info p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.festival-tag {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(200, 164, 21, 0.15);
    border-radius: 10px;
    font-size: 0.7rem;
    color: var(--gold-light);
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-100);
    padding: 0;
}

.footer-main {
    padding: 3.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto auto 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.footer-brand-side {
    display: contents;
}

.footer-brand-row {
    display: contents;
}

.footer-love-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-seal {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.footer-text-group {
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gray-800);
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 0.4rem;
}

.footer-col h5 {
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 0.3rem 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold-dark);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.82rem;
    color: var(--gray-600);
}

/* ===== Mobile Bottom Navigation ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--gray-200);
    display: none;
    justify-content: space-around;
    padding: 0.5rem 0;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    z-index: 1000;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.bottom-nav-item.active {
    color: var(--gold-dark);
}

.bottom-nav-item svg {
    width: 20px;
    height: 20px;
}

/* ===== Scroll Animations ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Chatbot - Amazon Q Style ===== */
.chatbot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.chatbot-icon-chat {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.chatbot-icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.chatbot-toggle.active .chatbot-icon-chat {
    opacity: 0;
    transform: rotate(90deg);
}

.chatbot-toggle.active .chatbot-icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

.chatbot-toggle.active .chatbot-badge {
    display: none;
}

.chatbot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 400px;
    height: 560px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0,0,0,0.06);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.25s ease;
}

.chatbot-window.open {
    display: flex;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chatbot-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    background: var(--cream);
    padding: 4px;
}

.chatbot-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.chatbot-status {
    font-size: 0.65rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chatbot-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    display: inline-block;
}

.chatbot-close {
    color: var(--black);
    font-size: 1.5rem;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: var(--gray-100);
}

.chatbot-close:hover {
    background: var(--gray-200);
    color: var(--black);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--gray-100);
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 2px;
}

.chat-message {
    max-width: 88%;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.chat-message p {
    margin: 0;
}

.chat-message.bot {
    background: var(--white);
    color: var(--gray-900);
    border-radius: 4px 16px 16px 16px;
    align-self: flex-start;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.chat-message.user {
    background: var(--black);
    color: var(--white);
    border-radius: 16px 16px 4px 16px;
    align-self: flex-end;
}

.chatbot-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.suggestion-btn {
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.suggestion-btn:hover {
    border-color: var(--black);
    background: var(--gray-100);
}

.chatbot-input {
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    gap: 0.75rem;
}

.chatbot-input input {
    flex: 1;
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 10px 16px;
    outline: none;
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--gray-100);
    transition: var(--transition);
}

.chatbot-input input:focus {
    border-color: var(--black);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.chatbot-input input::placeholder {
    color: var(--gray-600);
}

.chatbot-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.chatbot-send:hover {
    background: var(--black-light);
    transform: scale(1.05);
}

/* Chatbot responsive */
@media (max-width: 768px) {
    .chatbot {
        bottom: 80px;
        right: 16px;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
    }

    .chatbot-window {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 85vh;
        border-radius: 16px 16px 0 0;
    }
}

/* ===== Responsive Design ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .map-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .map-image-container {
        max-width: 90%;
    }

    .explore {
        padding: 4rem 1.5rem;
    }

    .destinations {
        padding: 4rem 1.5rem;
    }

    .trip-builder {
        padding: 4rem 1.5rem;
    }

    .festivals {
        padding: 4rem 1.5rem;
    }

    .footer-main {
        grid-template-columns: repeat(3, auto) repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-love-logo {
        height: 80px;
    }

    .footer-seal {
        width: 100px;
        height: 100px;
    }

    .footer-title {
        font-size: 1.4rem;
    }

    .travel-times {
        max-width: 100%;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open .nav-link {
        color: var(--gray-900);
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .logo-img {
        width: 48px;
        height: 48px;
    }

    .logo-subtitle {
        font-size: 0.55rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-campaign-logo {
        max-width: 320px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 5rem 1.5rem 2rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }

    .explore {
        padding: 2rem 0.5rem;
    }

    .section-header {
        margin-bottom: 1rem;
    }

    .map-image-container {
        max-width: 100%;
        padding: 0;
    }

    .ph-map-img {
        width: 100%;
    }

    .travel-times {
        margin-top: 1rem;
    }

    .destinations {
        padding: 3rem 1rem;
    }

    .destination-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .destination-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .trip-builder {
        padding: 3rem 1rem;
    }

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

    .budget-options {
        grid-template-columns: 1fr;
    }

    .builder-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .builder-form {
        padding: 1.5rem;
    }

    .festivals {
        padding: 3rem 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-love-logo {
        height: 80px;
        justify-self: center;
    }

    .footer-seal {
        width: 100px;
        height: 100px;
        justify-self: center;
    }

    .footer-text-group {
        align-items: center;
    }

    .footer-title {
        font-size: 1.5rem;
    }

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

    .bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    .footer {
        padding-bottom: 5rem;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-campaign-logo {
        max-width: 260px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .festival-card {
        min-width: 240px;
    }

    .duration-suggestions {
        gap: 0.5rem;
    }

    .suggestion-chip {
        font-size: 0.72rem;
        padding: 5px 10px;
    }

    .style-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .footer-love-logo {
        height: 60px;
    }

    .footer-seal {
        width: 80px;
        height: 80px;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-subtitle {
        font-size: 0.7rem;
    }
}
