/* ============================================
   DCAS Tours - Art Deco Inspired Design System
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-navy: #0E1D42;
    --color-navy-light: #162B5E;
    --color-blue: #38AAD4;
    --color-gold: #E4D578;
    --color-gold-light: #F0E8A0;
    --color-gold-dark: #DDA559;
    --color-cream: #F4F8FB;
    --color-cream-dark: #E8F0F7;
    --color-charcoal: #2D3748;
    --color-gray: #6B7280;
    --color-gray-light: #9CA3AF;
    --color-white: #FFFFFF;

    /* Typography */
    --font-display: 'Poiret One', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 6rem;
    --container-padding: 1.5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.16);
    --shadow-gold: 0 4px 24px rgba(228, 213, 120, 0.35);
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    padding-top: 72px; /* navbar height */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-navy);
}

/* ============================================
   Navigation
   ============================================ */
.navbar-main {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    transition: var(--transition-medium);
}

.navbar-main .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
}

.navbar-main .brand-icon {
    color: var(--color-gold);
    font-size: 1.25rem;
}

.navbar-main .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-main .brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-white);
}

.navbar-main .brand-360 {
    background: linear-gradient(135deg, #E4D578 0%, #C8A84B 50%, #DDA559 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-main .brand-tagline {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-white);
    text-transform: uppercase;
}

.navbar-main .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-main .nav-link:hover {
    color: var(--color-gold);
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

.navbar-main .nav-link:hover::after {
    width: 60%;
}

.navbar-main .nav-link-cta {
    background: transparent;
    border: 2px solid var(--color-gold);
    border-radius: 50px;
    color: var(--color-gold);
    margin-left: 1rem;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-medium);
}

.navbar-main .nav-link-cta:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    box-shadow: 0 0 16px rgba(228, 213, 120, 0.4);
}

.navbar-main .nav-link-cta::after {
    display: none;
}

.navbar-main .navbar-toggler {
    border-color: var(--color-gold);
    padding: 0.5rem;
}

.navbar-main .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E4D578' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #060D1F 0%, #0E1D42 70%, #1A3A6E 100%);
    position: relative;
    overflow: hidden;
    margin-top: -72px;
    padding-top: 72px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(56, 170, 212, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(228, 213, 120, 0.08) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(300,300)' opacity='0.09'%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(15)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(30)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(45)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(60)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(75)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(90)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(105)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(120)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(135)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(150)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(165)'/%3E%3Ccircle cx='0' cy='0' r='80' fill='none' stroke='%23E4D578' stroke-width='2.5'/%3E%3Ccircle cx='0' cy='0' r='160' fill='none' stroke='%23E4D578' stroke-width='2'/%3E%3Ccircle cx='0' cy='0' r='240' fill='none' stroke='%23E4D578' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: auto, auto, 600px 600px;
    background-position: center, center, left center;
    background-repeat: no-repeat, no-repeat, repeat;
    pointer-events: none;
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(228, 213, 120, 0.15);
    border: 1px solid rgba(228, 213, 120, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-badge .badge-icon {
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero-title-360 {
    background: linear-gradient(135deg, #E4D578 0%, #C8A84B 50%, #DDA559 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.text-gold {
    background: linear-gradient(135deg, #E4D578 0%, #C8A84B 50%, #DDA559 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(228, 213, 120, 0.25);
    border-bottom: 1px solid rgba(228, 213, 120, 0.25);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E4D578 0%, #C8A84B 50%, #DDA559 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.stat-card {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-label {
    color: #6c757d;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(228, 213, 120, 0.35);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--color-gold);
    color: var(--color-navy);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-gold);
}

.btn-primary-gold:hover {
    background: var(--color-gold-light);
    color: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(228, 213, 120, 0.45);
}

.btn-primary-gold.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-medium);
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-navy);
}

.btn-text-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-text-gold:hover {
    color: var(--color-gold-dark);
    gap: 0.75rem;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-image-frame {
    position: relative;
    padding: 1rem;
}

.hero-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-gold);
    opacity: 0.6;
}

.image-decoration.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.image-decoration.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.image-decoration.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.image-decoration.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.hero-image-caption {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-style: italic;
}

.caption-line {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.5;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.25rem;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: var(--section-padding) 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25)), url('/images/Aerial-Shot-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.features-section .section-title {
    color: var(--color-white);
}

.features-section .section-tag {
    color: var(--color-white);
}

.features-section .divider-line {
    background: var(--color-white);
}

.features-section .divider-icon {
    color: var(--color-white);
}

.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, #E4D578 0%, #C8A84B 50%, #DDA559 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.divider-icon {
    color: var(--color-gold);
    font-size: 0.875rem;
}

.feature-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(228, 213, 120, 0.15);
    transition: var(--transition-medium);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.feature-desc {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-footer {
    border-top: 1px solid var(--color-cream-dark);
    padding-top: 1rem;
}

.feature-tag {
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, #E4D578 0%, #C8A84B 50%, #DDA559 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   Civic Fame Section
   ============================================ */
.civic-fame-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #0E1D42 0%, #162B5E 70%, #1E3A6E 100%);
    position: relative;
    overflow: hidden;
}

.civic-fame-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(56, 170, 212, 0.12) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='translate(300,300)' opacity='0.15'%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(15)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(30)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(45)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(60)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(75)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(90)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(105)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(120)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(135)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(150)'/%3E%3Cline x1='0' y1='-280' x2='0' y2='280' stroke='%23E4D578' stroke-width='4' transform='rotate(165)'/%3E%3Ccircle cx='0' cy='0' r='80' fill='none' stroke='%23E4D578' stroke-width='2.5'/%3E%3Ccircle cx='0' cy='0' r='160' fill='none' stroke='%23E4D578' stroke-width='2'/%3E%3Ccircle cx='0' cy='0' r='240' fill='none' stroke='%23E4D578' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: auto, 600px 600px;
    background-position: center, right center;
    background-repeat: no-repeat, repeat;
    pointer-events: none;
}

.statue-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.showcase-frame {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-inner {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--color-navy);
    box-shadow: var(--shadow-gold);
    position: relative;
    z-index: 1;
}

.showcase-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s ease infinite;
}

.showcase-label {
    margin-top: 2rem;
}

.label-year {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    background: linear-gradient(135deg, #E4D578 0%, #C8A84B 50%, #DDA559 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3em;
    opacity: 0.7;
}

.label-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    margin-top: 0.25rem;
}

.civic-content {
    position: relative;
    z-index: 1;
}

.civic-content .section-title {
    background: linear-gradient(135deg, #E4D578 0%, #DDA559 50%, #E4D578 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    letter-spacing: 0.02em;
}

.civic-text {
    margin-bottom: 2rem;
}

.civic-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.civic-text strong {
    color: var(--color-gold);
}

.civic-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.civic-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background: rgba(228, 213, 120, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 0.75rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: #2A90B8;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary-gold {
    background: var(--color-gold);
    color: var(--color-navy);
    box-shadow: 0 4px 24px rgba(228, 213, 120, 0.4);
}

.cta-section .btn-primary-gold:hover {
    background: var(--color-gold-light);
    color: var(--color-navy);
}

/* ============================================
   Info Section
   ============================================ */
.info-section {
    padding: var(--section-padding) 0;
    background: var(--color-cream-dark);
}

.info-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--color-gold);
    font-size: 1.5rem;
}

.info-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.info-content p {
    margin: 0;
    color: var(--color-gray);
    line-height: 1.6;
}

.info-highlight {
    background: linear-gradient(135deg, #E4D578 0%, #DDA559 50%, #C8751A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.5rem !important;
}

/* ============================================
   Footer
   ============================================ */
.footer-main {
    background: var(--color-navy);
    color: var(--color-white);
    margin-top: auto;
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-brand .brand-icon {
    color: var(--color-gold);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-navy);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #E4D578 0%, #C8A84B 50%, #DDA559 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--color-gold);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-gold);
}

.footer-divider {
    margin: 0 0.75rem;
    opacity: 0.3;
}

@media (max-width: 991.98px) {
    .footer-top {
        padding: 2.5rem 0 2rem;
    }

    .footer-brand {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .footer-top {
        padding: 2rem 0 1.5rem;
    }

    .footer-bottom {
        padding: 1rem 0;
        text-align: center;
    }

    .footer-bottom .col-md-6:last-child {
        margin-top: 0.5rem;
    }

    .footer-social {
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .footer-top {
        padding: 1.5rem 0 1rem;
    }

    .footer-brand {
        font-size: 1.1rem;
    }

    .footer-desc {
        font-size: 0.875rem;
    }

    .footer-heading {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding: 0.75rem 0;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: 0.8rem;
    }

    .footer-divider {
        margin: 0 0.4rem;
    }
}

/* ============================================
   Booking Page Styles (preserved)
   ============================================ */
.booking-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.booking-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: var(--color-white);
    padding: 1.5rem;
}

.booking-header h4 {
    color: var(--color-white);
}

.time-slot {
    border: 2px solid var(--color-cream-dark);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    background: var(--color-white);
}

.time-slot:hover:not(.disabled) {
    border-color: var(--color-gold);
    background: var(--color-cream);
}

.time-slot.selected {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-navy);
}

.time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--color-cream-dark);
}

/* Availability dot indicators */
.availability-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.availability-dot.dot-green {
    background-color: #28a745;
}

.availability-dot.dot-yellow {
    background-color: #ffc107;
}

.availability-dot.dot-red {
    background-color: #dc3545;
}

.time-slot.selected .availability-dot.dot-green,
.time-slot.selected .availability-dot.dot-yellow,
.time-slot.selected .availability-dot.dot-red {
    background-color: rgba(10, 22, 40, 0.4);
}

/* QR Code display */
.qr-code-container {
    background: var(--color-white);
    padding: 1rem;
    border-radius: 12px;
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

/* Confirmation page */
.confirmation-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* ── Suppress Google Translate banner bar ── */
.goog-te-banner-frame,
.skiptranslate > iframe {
    display: none !important;
    height: 0 !important;
}
body {
    top: 0 !important;
}
.goog-te-balloon-frame { display: none !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }

/* ── Language Picker Dropdown ── */
#lang-label::before {
    content: attr(data-label);
}

#lang-picker .lang-option::before {
    content: attr(data-name);
}

#lang-picker .lang-toggle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    padding: 0.35rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    transition: border-color 0.15s, color 0.15s;
    white-space: nowrap;
}

#lang-picker .lang-toggle:hover,
#lang-picker .lang-toggle.show {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

#lang-picker .lang-menu {
    min-width: 11rem;
    max-height: 70vh;
    overflow-y: auto;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    border-radius: 6px;
    padding: 0.35rem 0;
}

#lang-picker .lang-menu .dropdown-item {
    font-size: 0.875rem;
    padding: 0.4rem 1rem;
}

#lang-picker .lang-menu .dropdown-item.active,
#lang-picker .lang-menu .dropdown-item:active {
    background-color: #0a1628;
    color: #fff;
}


.confirmation-badge i {
    font-size: 2.5rem;
    color: white;
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

/* ============================================
   Form Styles
   ============================================ */
.form-control {
    border: 2px solid var(--color-cream-dark);
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.btn-primary {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-navy);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: var(--color-navy);
}

.btn-primary:disabled {
    background: var(--color-gray-light);
    border-color: var(--color-gray-light);
}

.btn-outline-secondary {
    border-color: var(--color-cream-dark);
    color: var(--color-charcoal);
}

.btn-outline-secondary:hover {
    background: var(--color-cream-dark);
    border-color: var(--color-cream-dark);
    color: var(--color-charcoal);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .civic-fame-section .row {
        flex-direction: column-reverse;
    }

    .statue-showcase {
        margin-bottom: 3rem;
    }

    .civic-content {
        text-align: center;
    }

    .civic-highlights li {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 4rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Back to Top Button */
#backToTopBtn { position: fixed; bottom: 2rem; right: 2rem; z-index: 1050; display: none; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; border: none; background: var(--primary, #0d6efd); color: #fff; font-size: 1.1rem; box-shadow: 0 4px 12px rgba(0,0,0,.2); cursor: pointer; transition: opacity .3s, transform .3s; opacity: 0; }#backToTopBtn.visible { display: flex; opacity: 1; }#backToTopBtn:hover { transform: translateY(-3px); }

/* Required field asterisk */
.req { color: #dc3545; font-weight: 700; margin-left: 2px; }
