/* ===== CSS Variables ===== */
:root {
    --green-dark: #0a4d2e;
    --green-main: #008751;
    --green-light: #00a86b;
    --white: #ffffff;
    --cream: #faf8f5;
    --cream-dark: #f0ebe3;
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --text-dark: #1a1a1a;
    --text-muted: #5a5a5a;
    --text-light: #8a8a8a;
    --danger: #c0392b;
    --success: #27ae60;
    --warning: #f39c12;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo {
    color: var(--green-dark);
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 0.3rem;
    position: relative;
    white-space: nowrap;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a:hover {
    color: var(--gold);
}

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

.nav-cta {
    background: var(--green-main) !important;
    color: var(--white) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.navbar.scrolled .nav-toggle span {
    background: var(--text-dark);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--green-dark) 0%, #0d5c35 50%, var(--green-main) 100%);
    overflow: hidden;
    padding: 100px 1.5rem 4rem; /* Fixed: explicit px for navbar clearance */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    margin-bottom: 2.5rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat .stat-number {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}

.hero-stat .stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-scroll {
    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.7);
    font-size: 0.85rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #c9a430);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Secondary button variant for light backgrounds */
.section:not(.section-dark):not(.cta-section) .btn-secondary,
.page-content .btn-secondary {
    background: var(--cream);
    color: var(--green-dark);
    border: 2px solid var(--green-main);
    backdrop-filter: none;
}

.section:not(.section-dark):not(.cta-section) .btn-secondary:hover,
.page-content .btn-secondary:hover {
    background: var(--green-main);
    color: var(--white);
    border-color: var(--green-main);
}

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

.btn-outline:hover {
    background: var(--green-main);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--green-dark);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #c9a430);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 135, 81, 0.1), rgba(0, 135, 81, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Sections ===== */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: linear-gradient(135deg, var(--green-dark), #0d5c35);
    color: var(--white);
}

.section-alt {
    background: var(--cream-dark);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 135, 81, 0.15), rgba(0, 135, 81, 0.08));
    color: var(--green-main);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.text-light {
    color: rgba(255, 255, 255, 0.8);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== Steps Timeline ===== */
.steps-timeline {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.8;
    flex-shrink: 0;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--green-dark);
}

.step-content p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.step-link {
    color: var(--green-main);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.step-link:hover {
    color: var(--green-dark);
    gap: 0.5rem;
}

/* ===== Destinations Grid ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}

.destination-featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.destination-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.destination-content {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    color: var(--white);
}

.destination-flag {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.destination-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.destination-featured .destination-name {
    font-size: 2rem;
}

.destination-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.destination-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ===== Flights Section ===== */
.flights-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.flights-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--green-dark);
}

.info-card.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-list li {
    padding-left: 1.5rem;
    position: relative;
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green-main);
}

.airlines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.airline-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.airline-logo {
    font-size: 1.25rem;
}

.airline-item strong {
    display: block;
    font-size: 0.95rem;
}

.airline-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tips-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.tips-list li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

.flights-prices {
    position: sticky;
    top: 100px;
}

.price-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--green-light);
}

.price-card h4 {
    font-size: 1.25rem;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.price {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    color: var(--green-main);
}

.price-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* ===== Culture Grid ===== */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.culture-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.culture-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.culture-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.culture-card h3 {
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
}

.culture-card p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.culture-card ul {
    margin-top: 0.75rem;
}

.culture-card li {
    padding: 0.375rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.culture-tip {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.weather-guide {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.weather-item {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.weather-season {
    font-weight: 600;
    color: var(--green-dark);
}

.weather-temp {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-main);
}

/* ===== Community Section ===== */
.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.community-text h3 {
    font-size: 1.25rem;
    color: var(--green-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.community-text p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.community-text ul {
    margin-top: 0.75rem;
}

.community-text li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.community-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--green-main);
    font-weight: bold;
}

.community-cities h3 {
    font-size: 1.25rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.city-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.city-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.city-flag {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.city-card h4 {
    font-size: 1.1rem;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.city-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--gold), #c9a430);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-content .btn-gold {
    background: var(--green-dark);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-content .btn-gold:hover {
    background: var(--green-main);
}

/* ===== Footer ===== */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.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;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--text-dark);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 1280px) {
    .nav-menu {
        gap: 0.25rem;
    }
    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.5rem 0.2rem;
    }
    .nav-logo {
        font-size: 1.25rem;
    }
    .logo-icon {
        font-size: 1.25rem;
    }
}

@media (max-width: 1100px) {
    /* Switch to mobile nav earlier due to many nav items */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: var(--text-dark);
        font-size: 1rem;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

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

    .destination-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .flights-content {
        grid-template-columns: 1fr;
    }

    .flights-prices {
        position: static;
    }

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

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

@media (max-width: 768px) {

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

    .step-card {
        flex-direction: column;
        gap: 1rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-featured {
        grid-column: span 1;
    }

    .airlines-grid {
        grid-template-columns: 1fr;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .community-content {
        grid-template-columns: 1fr;
    }

    .city-cards {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ===== Floating Naira Converter Widget ===== */
.naira-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'DM Sans', sans-serif;
}

.naira-widget-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--green-main));
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,135,81,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.naira-widget-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0,135,81,0.5);
}

.naira-widget-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 1.25rem;
    display: none;
}

.naira-widget-panel.active {
    display: block;
    animation: slideUp 0.3s ease;
}

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

.naira-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.naira-widget-header h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--green-dark);
}

.naira-widget-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-muted);
}

.naira-converter-inputs {
    display: grid;
    gap: 0.75rem;
}

.converter-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.converter-row label {
    width: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.converter-row input {
    flex: 1;
    padding: 0.6rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
}

.converter-row input:focus {
    outline: none;
    border-color: var(--green-main);
}

.naira-rate {
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

/* ===== WhatsApp Share Button ===== */
.whatsapp-share {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-share:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}

.whatsapp-share-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

/* ===== Weather Comparison Widget ===== */
.weather-compare {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: white;
    margin: 1.5rem 0;
}

.weather-compare h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.weather-cities {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.weather-city {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    min-width: 120px;
}

.weather-city-name {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.weather-temp {
    font-size: 2rem;
    font-weight: 700;
}

.weather-icon {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

.weather-vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.weather-warning {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255,193,7,0.2);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

/* ===== Church & Community Finder ===== */
.community-finder {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.community-finder h4 {
    color: var(--green-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.church-list {
    display: grid;
    gap: 1rem;
}

.church-item {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--green-main);
}

.church-item h5 {
    margin: 0 0 0.5rem 0;
    color: var(--green-dark);
    font-size: 1rem;
}

.church-item p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.church-item .church-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.church-item .church-meta span {
    font-size: 0.85rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--green-main);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.map-link:hover {
    color: var(--green-dark);
}

/* ===== Food Finder ===== */
.food-finder {
    background: linear-gradient(135deg, rgba(0,135,81,0.05), rgba(212,175,55,0.1));
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 2px solid rgba(0,135,81,0.2);
}

.food-finder h4 {
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.food-list {
    display: grid;
    gap: 0.75rem;
}

.food-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
}

.food-item-icon {
    font-size: 2rem;
}

.food-item-info h5 {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
}

.food-item-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.food-item-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

/* ===== Phrase Player ===== */
.phrase-player {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.phrase-player h4 {
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.phrase-list {
    display: grid;
    gap: 0.75rem;
}

.phrase-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    gap: 1rem;
}

.phrase-text {
    flex: 1;
}

.phrase-english {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.phrase-local {
    font-weight: 600;
    color: var(--green-dark);
}

.phrase-play {
    background: var(--green-main);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s;
}

.phrase-play:hover {
    background: var(--green-dark);
    transform: scale(1.1);
}

/* ===== Photo Spots ===== */
.photo-spots {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin: 1rem 0;
    color: white;
}

.photo-spots h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.photo-spot-list {
    display: grid;
    gap: 0.5rem;
}

.photo-spot {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border-radius: var(--radius-md);
}

.photo-spot h5 {
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.photo-spot p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.photo-spot .caption-idea {
    font-style: italic;
    opacity: 0.8;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* ===== Destination Section Enhancements ===== */
.dest-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* ===== Taste of Home Collapsible Section ===== */
.taste-of-home-section {
    background: linear-gradient(135deg, rgba(0,135,81,0.05), rgba(0,135,81,0.02));
    border: 1px solid rgba(0,135,81,0.15);
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
    overflow: hidden;
}

.taste-of-home-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--green-dark);
    list-style: none;
    transition: var(--transition);
}

.taste-of-home-toggle::-webkit-details-marker {
    display: none;
}

.taste-of-home-toggle::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--green-main);
}

details[open] .taste-of-home-toggle::after {
    content: '−';
}

.taste-of-home-toggle:hover {
    background: rgba(0,135,81,0.08);
}

.toggle-hint {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.taste-of-home-content {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid rgba(0,135,81,0.1);
}

.taste-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.home-option {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.home-option:last-child {
    margin-bottom: 0;
}

.home-option h5 {
    margin: 0 0 0.5rem 0;
    color: var(--green-dark);
    font-size: 1rem;
}

.home-option p {
    margin: 0 0 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.home-option ul {
    margin: 0.5rem 0 0 1.25rem;
    list-style: disc;
}

.home-option li {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .toggle-hint {
        display: none;
    }
}

/* ===== Advertisement Placement Styles ===== */

/* Generic ad container styling */
.ad-container {
    background: var(--cream);
    border: 1px dashed #ccc;
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    margin: 1.5rem 0;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ad-container::before {
    content: 'Advertisement';
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* Leaderboard Ad (728x90) - Top of page */
.ad-leaderboard {
    max-width: 728px;
    height: 90px;
    margin: 1rem auto;
}

/* Medium Rectangle Ad (300x250) - Sidebar/In-content */
.ad-rectangle {
    max-width: 300px;
    min-height: 250px;
}

/* In-article Ad - Between content sections */
.ad-in-article {
    max-width: 600px;
    min-height: 250px;
    margin: 2rem auto;
    background: linear-gradient(to right, var(--cream), var(--cream-dark));
}

/* Sidebar sticky ad */
.ad-sidebar-sticky {
    position: sticky;
    top: 100px;
    max-width: 300px;
    min-height: 600px;
}

/* Mobile banner ad (320x50) */
.ad-mobile-banner {
    max-width: 320px;
    height: 50px;
    margin: 1rem auto;
}

/* Anchor ad container (fixed bottom on mobile) */
.ad-anchor {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 998;
    text-align: center;
    display: none;
}

.ad-anchor-close {
    position: absolute;
    top: -25px;
    right: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Native ad styling (blends with content) */
.ad-native {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e0e0e0;
}

.ad-native-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: block;
}

.ad-native-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.ad-native-image {
    width: 120px;
    height: 90px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.ad-native-text h5 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.ad-native-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive ad adjustments */
@media (max-width: 768px) {
    .ad-leaderboard {
        max-width: 100%;
        height: auto;
        min-height: 50px;
    }

    .ad-sidebar-sticky {
        position: static;
        max-width: 100%;
        min-height: 250px;
    }

    .ad-anchor {
        display: block;
    }

    .ad-native-content {
        grid-template-columns: 1fr;
    }

    .ad-native-image {
        width: 100%;
        height: 150px;
    }
}

/* Hide ads on print */
@media print {
    .ad-container,
    .ad-leaderboard,
    .ad-rectangle,
    .ad-in-article,
    .ad-sidebar-sticky,
    .ad-anchor,
    .ad-native {
        display: none !important;
    }
}
