/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    /* Ghana-Inspired Vibrant Colors (Kente Palette) */
    --primary-color: #c9a86a; /* Gold - maintains luxury */
    --primary-dark: #a88750;
    --primary-light: #e5d4b3;
    --accent-gold: #d4af37;
    
    /* Vibrant Ghanaian Accents */
    --ghana-red: #CE1126; /* Flag red - bold & welcoming */
    --ghana-green: #006B3F; /* Flag green - natural & vibrant */
    --ghana-yellow: #FCD116; /* Flag yellow - sunshine & warmth */
    --kente-orange: #E77D32; /* Kente cloth orange - energetic */
    --kente-teal: #008B8B; /* Coastal teal - refreshing */
    --warm-terracotta: #D2691E; /* Earthy Ghana clay */
    
    /* Luxury Base Colors */
    --secondary-color: #2c3545;
    --text-dark: #0a0a0a;
    --text-light: #5a5a5a;
    --text-white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --bg-dark: #1a1d25;
    --bg-cream: #FFF8F0; /* Warm cream for sections */
    --border-color: #e5e5e5;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.18);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 8px 24px rgba(206, 17, 38, 0.15); /* Red glow */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
    position: relative;
}

/* Ghana Flag Watermark - Whole Site */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 1200px;
    height: 800px;
    background-image: url('https://www.genspark.ai/api/files/s/mQ0qTrQX');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
}

/* Ensure all sections stack above watermark */
section, nav, footer {
    position: relative;
    z-index: 1;
}

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

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

ul {
    list-style: none;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ===========================
   Utilities
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.6s ease;
}

.section-header:hover .section-title::after {
    width: 60%;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color), var(--primary-light));
    margin: 0 auto 1.5rem;
}

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

.btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(201, 168, 106, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--kente-orange), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 125, 50, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-white);
}

/* Ensure hero image is always visible on mobile */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: center center;
        min-height: 500px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 29, 37, 0.75), rgba(42, 47, 57, 0.65));
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-light);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.8s backwards;
}

/* Ghana Badge - Professional */
.ghana-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ghana-red);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease 0.1s backwards;
    border: 2px solid var(--ghana-red);
}

.badge-flag {
    width: 24px;
    height: 16px;
    background: linear-gradient(to bottom, 
        var(--ghana-red) 0%, 
        var(--ghana-red) 33.33%, 
        var(--ghana-yellow) 33.33%, 
        var(--ghana-yellow) 66.66%, 
        var(--ghana-green) 66.66%, 
        var(--ghana-green) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-text {
    color: var(--text-dark);
}

/* Hero Highlights - Professional Grid */
.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease 0.7s backwards;
}

.hero-highlight-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.hero-highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--ghana-yellow);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.hero-highlight-item i {
    font-size: 1.5rem;
    color: var(--ghana-yellow);
    flex-shrink: 0;
}

.hero-highlight-item span {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
}

/* Welcome Strip - Vibrant Professional */
/* ===========================
   Premium Decorative Elements
   =========================== */

/* Floating Gold Accent Shapes */
.about::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 8%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-gold));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.05;
    pointer-events: none;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Premium Section Divider */
.premium-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 20%, 
        var(--accent-gold) 50%, 
        var(--primary-color) 80%, 
        transparent 100%);
    opacity: 0.3;
}

/* Gallery Section Decorative Corners */
.gallery::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-top: 3px solid var(--primary-color);
    border-left: 3px solid var(--primary-color);
    opacity: 0.3;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    opacity: 0.3;
}

/* ===========================
   Premium Features Bar
   =========================== */
.features-bar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1d25 100%);
    padding: 1.5rem 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.features-bar-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.feature-bar-item:hover {
    background: rgba(201, 168, 106, 0.1);
    transform: translateY(-2px);
}

.feature-bar-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-bar-item:hover i {
    color: var(--accent-gold);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .features-bar-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-bar-item {
        font-size: 0.85rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--text-white);
    animation: bounce 2s infinite;
    cursor: pointer;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 6rem 0;
    background: var(--bg-white);
    position: relative;
}

/* Subtle accent border top */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--ghana-red), 
        var(--ghana-yellow), 
        var(--ghana-green));
    border-radius: 2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   Premium Highlights Section
   =========================== */
.premium-highlights {
    padding: 6rem 0;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

/* Subtle geometric pattern */
.premium-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 15 L45 30 L30 45 L15 30 Z" fill="rgba(201,168,106,0.03)" stroke="rgba(201,168,106,0.05)" stroke-width="0.5"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.highlight-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--kente-orange);
}

.highlight-card:nth-child(2) {
    border-top-color: var(--ghana-yellow);
}

.highlight-card:nth-child(2):hover {
    border-top-color: var(--ghana-red);
}

.highlight-card:nth-child(3) {
    border-top-color: var(--kente-teal);
}

.highlight-card:nth-child(3):hover {
    border-top-color: var(--ghana-green);
}
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.highlight-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.highlight-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.1));
}

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

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

.highlight-content {
    padding: 2rem;
}

.highlight-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.highlight-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 50%;
    color: var(--text-white);
    font-size: 2.2rem;
    box-shadow: 0 8px 20px rgba(201, 168, 106, 0.25);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(201, 168, 106, 0.35);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery {
    padding: 6rem 0;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::before {
    opacity: 1;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-premium);
    transform: translateY(-8px);
}

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

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--text-white);
    margin: 0;
}

/* ===========================
   Location Section
   =========================== */
.location {
    padding: 6rem 0;
    background: var(--bg-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-highlight {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.location-highlight i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.location-highlight h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.location-highlight p {
    color: var(--text-light);
    margin: 0;
}

.map-container {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

#map {
    width: 100%;
    height: 100%;
}

/* ===========================
   Things to Do Section
   =========================== */
.things-to-do {
    padding: 6rem 0;
    background: var(--bg-white);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.attraction-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.attraction-content {
    padding: 1.5rem;
}

.attraction-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.distance {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.distance i {
    margin-right: 0.3rem;
}

.attraction-content p {
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   Airbnb Integration Section
   =========================== */
.airbnb-booking-banner {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border-color);
}

.airbnb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid #FF5A5F;
}

.airbnb-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.airbnb-logo-section svg {
    flex-shrink: 0;
}

.airbnb-text h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.airbnb-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.btn-airbnb {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: #FF5A5F;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.3);
}

.btn-airbnb:hover {
    background: #E00007;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 90, 95, 0.4);
}

.btn-airbnb i {
    font-size: 1.3rem;
}

.booking-divider {
    text-align: center;
    margin-top: 2rem;
    position: relative;
}

.booking-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.booking-divider span {
    position: relative;
    z-index: 2;
    background: var(--bg-light);
    padding: 0.5rem 2rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .airbnb-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .airbnb-logo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-airbnb {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   Booking Section
   =========================== */
.booking {
    padding: 6rem 0;
    background: var(--bg-light);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Make both columns equal height and aligned */
.booking-info,
.booking-form-container {
    height: 100%;
}

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

.booking-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.booking-benefits {
    margin: 0;
    padding: 0;
    list-style: none;
}

.booking-benefits li {
    padding: 0.8rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.booking-benefits li:last-child {
    border-bottom: none;
}

.booking-benefits i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-top: auto;
}

.contact-info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-info-box p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info-box i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
}

.contact-info-box a {
    color: var(--text-light);
}

.contact-info-box a:hover {
    color: var(--primary-color);
}

/* Direct Benefits List */
.direct-benefits-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.direct-benefits-list li {
    padding: 0.9rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.5;
}

.direct-benefits-list li:last-child {
    border-bottom: none;
}

.direct-benefits-list i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.direct-benefits-list strong {
    color: var(--secondary-color);
}

/* Payment Methods Section */
.payment-methods {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f9f9f9, #fff);
    border-radius: 12px;
    border: 2px dashed var(--primary-color);
}

.payment-methods h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-height: 100px;
}

.payment-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-light);
}

.payment-option i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.payment-option span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Contact Direct Section */
.contact-direct {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.contact-direct h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.whatsapp-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp i {
    font-size: 1.4rem;
}

/* Currency Selector */
.currency-selector {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-light);
}

.currency-selector h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.currency-selector h4 i {
    color: var(--primary-color);
}

.currency-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.currency-btn {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.currency-btn:hover {
    border-color: var(--primary-color);
    background: #fef9f3;
    transform: translateY(-2px);
}

.currency-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.currency-btn .currency-symbol {
    font-size: 1.3rem;
    font-weight: 700;
}

.currency-btn .currency-code {
    font-size: 0.85rem;
    font-weight: 500;
}

.currency-btn.active .currency-symbol,
.currency-btn.active .currency-code {
    color: white;
}

.currency-note {
    margin: 0;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.currency-note i {
    color: var(--primary-color);
    font-size: 1rem;
}

.currency-note strong {
    color: var(--primary-color);
}

/* Pricing Calculator */
.pricing-calculator {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-light);
}

.pricing-calculator h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.price-row.subtotal {
    padding-top: 0.8rem;
    border-top: 1px solid var(--border-color);
    font-size: 1rem;
}

.price-row.discount {
    color: #27ae60;
    font-weight: 500;
}

.price-row.discount i {
    margin-right: 0.3rem;
}

.price-row.total {
    padding-top: 0.8rem;
    border-top: 2px solid var(--primary-color);
    font-size: 1.2rem;
    color: var(--primary-color);
}

.price-row.total strong {
    font-weight: 700;
}

/* Payment Method Select */
#paymentMethod {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    transition: var(--transition);
}

#paymentMethod:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.1);
}

/* Payment Details Boxes */
.payment-details {
    margin: 1.5rem 0;
}

.payment-info-box {
    background: #fff9f0;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.payment-info-box h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-info-box p {
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.payment-info-box strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.payment-note {
    margin-top: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(201, 168, 106, 0.08);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-note i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.payment-notes {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Bank Details Grid - Professional Layout */
.bank-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.bank-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.bank-detail-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(201, 168, 106, 0.15);
    transform: translateX(3px);
}

.bank-detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 24px;
    text-align: center;
}

.bank-detail-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Payment Features List */
.payment-intro {
    margin: 1rem 0 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

.payment-intro i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.payment-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.payment-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.payment-features li:last-child {
    border-bottom: none;
}

.payment-features li i {
    color: #27ae60;
    font-size: 1rem;
    min-width: 20px;
}

/* Mobile Money Details */
.momo-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.momo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.momo-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(201, 168, 106, 0.15);
    transform: translateX(3px);
}

.momo-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.momo-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .payment-icons {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-buttons {
        gap: 0.6rem;
    }
    
    .bank-details-grid {
        gap: 0.8rem;
    }
    
    .bank-detail-item {
        padding: 0.9rem;
    }
    
    .detail-value {
        font-size: 0.95rem;
    }
}

.booking-form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.1);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
}

.form-message {
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    font-weight: 400;
    margin-top: 1rem;
    display: none;
    white-space: pre-line;
    line-height: 1.8;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201, 168, 106, 0.2);
}

/* Ghana Flag Background Image in Footer - Very Subtle */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.genspark.ai/api/files/s/mQ0qTrQX');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

/* Geometric Pattern Overlay + Elegant Curly Border */
.footer::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 8px;
    background: url('data:image/svg+xml,<svg width="100" height="8" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 8"><path d="M0,4 Q12.5,0 25,4 T50,4 T75,4 T100,4" stroke="%23c9a86a" stroke-width="1.5" fill="none" opacity="0.6"/><path d="M0,6 Q12.5,2 25,6 T50,6 T75,6 T100,6" stroke="%23d4af37" stroke-width="1" fill="none" opacity="0.4"/></svg>');
    background-repeat: repeat-x;
    background-size: 100px 8px;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list i {
    color: var(--primary-color);
    width: 20px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 25px 0 0 25px;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom i {
    color: #e74c3c;
}

/* ===========================
   Floating Airbnb Button
   =========================== */
.floating-airbnb-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: #FF5A5F;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 90, 95, 0.4);
    transition: var(--transition);
    z-index: 999;
    animation: pulse 2s infinite;
}

.floating-airbnb-btn:hover {
    background: #E00007;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 90, 95, 0.6);
}

.floating-airbnb-btn i {
    font-size: 1.5rem;
}

.floating-airbnb-btn span {
    font-weight: 700;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(255, 90, 95, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 90, 95, 0.7);
    }
}

/* Hide text on small mobile devices */
@media (max-width: 480px) {
    .floating-airbnb-btn {
        bottom: 20px;
        right: 20px;
        padding: 1rem;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    .floating-airbnb-btn span {
        display: none;
    }
    
    .floating-airbnb-btn i {
        font-size: 1.8rem;
        margin: 0;
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

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

    .nav-toggle {
        display: block;
    }

    .location-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-info {
        order: 2;
    }
    
    .booking-form-container {
        order: 1;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

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

    .features-grid,
    .attractions-grid {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .booking-form-container {
        padding: 1.5rem;
    }
    
    .currency-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .currency-btn {
        padding: 0.6rem;
    }
    
    .currency-note {
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}

/* ===========================
   EMERGENCY OVERRIDE - Welcome Strip Horizontal Layout
   =========================== */
@media (min-width: 769px) {
    .welcome-strip .welcome-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
        grid-template-rows: 1fr !important;
        grid-auto-flow: row !important;
        width: 100% !important;
    }
    
    .welcome-strip .welcome-item {
        grid-row: 1 !important;
    }
    
    .welcome-strip .welcome-item:nth-child(1) { grid-column: 1 !important; }
    .welcome-strip .welcome-item:nth-child(2) { grid-column: 2 !important; }
    .welcome-strip .welcome-item:nth-child(3) { grid-column: 3 !important; }
    .welcome-strip .welcome-item:nth-child(4) { grid-column: 4 !important; }
}