/* 
   AL-NUR PILGRIMAGE TOURS - Custom Stylesheet
   Color Palette: White, Dark Green, Gold, Light Beige, Soft Gray
*/

/* --- Reset & Variables --- */
:root {
    --primary-green: #0B3C26;
    --primary-green-rgb: 11, 60, 38;
    --primary-green-light: #125437;
    --primary-green-dark: #072718;
    
    --gold-accent: #C5A059;
    --gold-accent-rgb: 197, 160, 89;
    --gold-light: #DFCDA6;
    --gold-dark: #9F7E3B;
    
    --bg-beige: #FDFBF7;
    --surface-white: #FFFFFF;
    --muted-gray: #F5F6F8;
    --border-color: #E5E7EB;
    
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --text-light: #F9FAFB;
    
    --font-heading: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-body: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(11, 60, 38, 0.05), 0 4px 6px -2px rgba(11, 60, 38, 0.03);
    --shadow-hover: 0 20px 25px -5px rgba(11, 60, 38, 0.08), 0 10px 10px -5px rgba(11, 60, 38, 0.05);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-beige);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1.25;
}

p {
    color: var(--text-secondary);
}

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

ul {
    list-style: none;
}

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

/* --- Shared Layout Classes --- */
.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.bg-muted {
    background-color: var(--muted-gray);
}

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

/* Section Header styling */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-dark);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 8px;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--gold-accent);
}

/* For left-aligned tags */
.about-text-side .section-tag::after,
.contact-info-area .section-tag::after {
    left: 0;
    transform: none;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-green);
    letter-spacing: -0.02em;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-green-light);
    box-shadow: 0 4px 12px rgba(11, 60, 38, 0.2);
}

.btn-secondary {
    background-color: var(--gold-accent);
    color: var(--primary-green-dark);
}

.btn-secondary:hover {
    background-color: var(--gold-dark);
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--surface-white);
    color: var(--surface-white);
}

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

.btn-full {
    width: 100%;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--surface-white);
    border-radius: var(--radius-md);
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

/* --- Simple Loading Screen --- */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-beige);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    animation: rotate 2s linear infinite;
}

.loader-spinner .path {
    stroke: var(--primary-green);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

.loader-content p {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary-green);
    letter-spacing: 0.05em;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}
@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* --- Header / Sticky Navbar --- */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.navbar-container.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
}

.navbar-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.navbar-container.scrolled .navbar-wrapper {
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    transition: var(--transition-smooth);
}

.navbar-container.scrolled .logo-icon {
    width: 36px;
    height: 36px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--primary-green);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    line-height: 1.5;
}

.logo-title.text-light {
    color: var(--surface-white);
}

.logo-subtitle.text-light {
    color: var(--gold-light);
}

/* Menu */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-green);
}

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

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

.navbar-container:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar-container:not(.scrolled) .nav-link:hover,
.navbar-container:not(.scrolled) .nav-link.active {
    color: var(--surface-white);
}

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

.nav-btn {
    padding: 8px 20px;
    font-size: 0.875rem;
}

/* Hamburger mobile toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.navbar-container:not(.scrolled) .mobile-menu-toggle .bar {
    background-color: var(--surface-white);
}

/* Hamburger animation on active */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary-green) !important;
}
.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary-green) !important;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--surface-white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 120px 40px 40px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        color: var(--text-primary) !important;
    }
    
    .nav-btn {
        display: none; /* Hide button on mobile bar */
    }
}

/* --- 1. Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Scroll is safer for mobile rendering */
    color: var(--surface-white);
}

/* Dark gradient overlay for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 39, 24, 0.8) 0%, rgba(7, 39, 24, 0.6) 50%, rgba(7, 39, 24, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 90px; /* offset navbar */
}

.hero-text-area {
    max-width: 680px;
    margin-bottom: 50px;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--surface-white);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.25rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Trust Badges Grid */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 30px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-accent);
    transform: translateY(-2px);
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-accent);
    flex-shrink: 0;
}

.trust-badge span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (max-width: 992px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .trust-badge {
        padding: 10px 16px;
    }
}

/* --- Keyframes --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 4. About Agency Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image-side {
    position: relative;
    display: flex;
    justify-content: center;
}

/* CSS Decorative Islamic-themed Frame */
.about-decorative-frame {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4/5;
    background-color: var(--primary-green);
    border-radius: var(--radius-lg);
    position: relative;
    border: 3px solid var(--gold-accent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    background-image: 
        radial-gradient(var(--primary-green-light) 15%, transparent 16%),
        radial-gradient(var(--primary-green-light) 15%, transparent 16%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.about-decorative-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px dashed var(--gold-light);
    border-radius: calc(var(--radius-lg) - 5px);
    pointer-events: none;
}

.frame-content {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 24px;
    border-radius: var(--radius-md);
    width: 100%;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--gold-accent);
    z-index: 2;
}

.frame-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.frame-tag {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.about-text-side .section-desc {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-side {
        order: 2;
    }
    .about-text-side {
        order: 1;
    }
    .about-decorative-frame {
        max-width: 100%;
        aspect-ratio: 16/9;
    }
}

/* --- 2. Hajj & Umrah Packages Section --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Center last items if 5 items */
@media (min-width: 1025px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .packages-grid .package-card:nth-child(4),
    .packages-grid .package-card:nth-child(5) {
        grid-column: span 1;
    }
}

.package-card {
    background-color: var(--surface-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-light);
}

.package-card.featured {
    border: 2px solid var(--gold-accent);
    position: relative;
}

/* Package Headers with Custom Gradients */
.package-card-header {
    padding: 32px;
    color: var(--surface-white);
    position: relative;
    overflow: hidden;
}

/* Gradients */
.bg-gradient-economy {
    background: linear-gradient(135deg, #104C32 0%, #082F1E 100%);
}
.bg-gradient-family {
    background: linear-gradient(135deg, #155E3D 0%, #0C3E27 100%);
}
.bg-gradient-premium {
    background: linear-gradient(135deg, #18714A 0%, #0A3C26 100%);
}
.bg-gradient-ramadan {
    background: linear-gradient(135deg, #1D546C 0%, #0E2F40 100%);
}
.bg-gradient-hajj {
    background: linear-gradient(135deg, #8C6F32 0%, #5E4A1F 100%);
}

/* Islamic pattern background element in header */
.package-card-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    opacity: 0.05;
    background-image: radial-gradient(circle, var(--surface-white) 10%, transparent 11%),
                      radial-gradient(circle, var(--surface-white) 10%, transparent 11%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.package-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--surface-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.featured-badge {
    background-color: var(--gold-accent);
    color: var(--primary-green-dark);
    border-color: var(--gold-light);
}

.package-name {
    color: var(--surface-white);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.featured .price-val {
    color: #F8E6C2;
}

.price-period {
    font-size: 0.8rem;
    opacity: 0.8;
}

.package-details {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-details-list {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.925rem;
    color: var(--text-secondary);
}

.detail-icon {
    width: 18px;
    height: 18px;
    stroke: var(--gold-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.flight-tag {
    border-top: 1px dashed var(--border-color);
    padding-top: 12px;
    margin-top: 4px;
}

.flight-tag.included .detail-icon {
    stroke: var(--primary-green);
}

.flight-tag span {
    font-weight: 600;
}

.package-actions {
    margin-top: auto;
}

/* --- 3. Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--surface-white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--muted-gray);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary-green);
    color: var(--gold-accent);
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- 5. Why Choose Us Section --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: var(--surface-white);
    border-radius: var(--radius-md);
    padding: 32px;
    border-left: 4px solid var(--gold-accent);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.why-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.why-icon-circle {
    width: 36px;
    height: 36px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.why-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- 6. Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

/* Premium Visual Custom Placeholders (SVG geometric background design) */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    position: relative;
    color: var(--surface-white);
    background-size: 40px 40px;
    transition: var(--transition-smooth);
}

/* Subtle overlay */
.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 60, 38, 0.95) 0%, rgba(11, 60, 38, 0.5) 60%, rgba(11, 60, 38, 0.2) 100%);
    z-index: 1;
}

/* Interactive hover effects */
.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-placeholder::before {
    background: linear-gradient(to top, rgba(197, 160, 89, 0.95) 0%, rgba(11, 60, 38, 0.6) 60%, rgba(11, 60, 38, 0.3) 100%);
}

/* Unique backgrounds representing different areas */
.bg-pattern-1 {
    background-color: #0b3c26;
    background-image: radial-gradient(rgba(197, 160, 89, 0.15) 1px, transparent 0);
}
.bg-pattern-2 {
    background-color: #0e4c31;
    background-image: linear-gradient(rgba(197, 160, 89, 0.1) 1px, transparent 0), linear-gradient(90deg, rgba(197, 160, 89, 0.1) 1px, transparent 0);
}
.bg-pattern-3 {
    background-color: #125437;
    background-image: radial-gradient(circle, rgba(197, 160, 89, 0.1) 10%, transparent 11%);
    background-size: 20px 20px;
}
.bg-pattern-4 {
    background-color: #072718;
    background-image: linear-gradient(45deg, rgba(197, 160, 89, 0.08) 25%, transparent 25%), linear-gradient(-45deg, rgba(197, 160, 89, 0.08) 25%, transparent 25%);
    background-size: 30px 30px;
}
.bg-pattern-5 {
    background-color: #155e3c;
    background-image: radial-gradient(rgba(255,255,255,0.05) 2px, transparent 0);
}
.bg-pattern-6 {
    background-color: #0d462c;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(197, 160, 89, 0.05) 10px, rgba(197, 160, 89, 0.05) 20px);
}

.gallery-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.gallery-item-title {
    position: relative;
    z-index: 2;
    color: var(--surface-white);
    font-size: 1.15rem;
    font-weight: 600;
}

/* --- 7. Booking / Inquiry Form Section --- */
.inquiry-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    background-color: var(--surface-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.inquiry-info-box {
    background-color: var(--primary-green);
    padding: 60px;
    color: var(--surface-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-image: radial-gradient(circle at 100% 0%, rgba(197, 160, 89, 0.1) 0%, transparent 60%);
}

.section-tag-light {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-accent);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.inquiry-info-title {
    color: var(--surface-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.inquiry-info-desc {
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    font-size: 0.95rem;
}

.inquiry-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inquiry-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.inquiry-list li svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-accent);
    flex-shrink: 0;
}

.inquiry-form-box {
    padding: 60px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-row.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.925rem;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--muted-gray);
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--gold-accent);
    background-color: var(--surface-white);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-group textarea {
    resize: none;
}

.form-group input.invalid,
.form-group select.invalid {
    border-color: #DC2626;
    background-color: #FEF2F2;
}

.error-msg {
    display: none;
    font-size: 0.75rem;
    color: #DC2626;
    margin-top: 4px;
    font-weight: 500;
}

.error-msg.visible {
    display: block;
}

.submit-btn {
    margin-top: 10px;
    font-size: 1rem;
    padding: 14px;
}

@media (max-width: 992px) {
    .inquiry-container {
        grid-template-columns: 1fr;
    }
    .inquiry-info-box {
        padding: 40px;
    }
    .inquiry-form-box {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .form-row.split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .inquiry-info-box, .inquiry-form-box {
        padding: 30px 20px;
    }
}

/* --- Demo Success Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 39, 24, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: var(--surface-white);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-icon-success {
    width: 64px;
    height: 64px;
    background-color: rgba(11, 60, 38, 0.1);
    color: var(--primary-green);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.modal-icon-success svg {
    width: 32px;
    height: 32px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-message {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.modal-ref {
    font-size: 0.85rem;
    background-color: var(--muted-gray);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    display: inline-block;
    margin-bottom: 24px;
}

.modal-ref strong {
    color: var(--primary-green);
}

.btn-modal-close {
    width: 100%;
}

/* --- 8. Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--surface-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-rating {
    color: var(--gold-dark);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-secondary);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.text-avatar {
    background-color: var(--primary-green);
    color: var(--gold-light);
}

.user-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.user-package {
    font-size: 0.75rem;
    color: var(--gold-dark);
    font-weight: 600;
}

/* --- 9. Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info-area {
    display: flex;
    flex-direction: column;
}

.contact-info-area .section-desc {
    margin-bottom: 36px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(11, 60, 38, 0.05);
    color: var(--primary-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 0.9rem;
}

.whatsapp-btn-wrapper {
    margin-top: 40px;
}

/* Google Maps Custom Visual Mockup */
.map-placeholder-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    min-height: 350px;
    position: relative;
    background-color: #E3EDE4; /* Light green map background tint */
}

/* Mocking standard map interface elements in pure CSS */
.map-mockup {
    width: 100%;
    height: 100%;
    position: relative;
    background-image: 
        linear-gradient(#CDDCCD 1px, transparent 0),
        linear-gradient(90deg, #CDDCCD 1px, transparent 0);
    background-size: 30px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-pin {
    width: 20px;
    height: 20px;
    background-color: #DC2626;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    box-shadow: -2px 2px 4px rgba(0,0,0,0.2);
}

.map-pin::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 6px;
}

.map-label {
    position: absolute;
    top: calc(50% + 20px);
    background-color: var(--surface-white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    border-left: 3px solid var(--primary-green);
}

.map-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.map-btn {
    width: 32px;
    height: 32px;
    background-color: var(--surface-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.map-btn:hover {
    background-color: var(--muted-gray);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .map-placeholder-container {
        min-height: 300px;
    }
}

/* --- 10. Footer --- */
.footer-area {
    background-color: var(--primary-green-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--gold-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-logo .logo-icon {
    stroke: var(--gold-accent);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--surface-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--primary-green-dark);
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer-links h3, .footer-info h3 {
    color: var(--surface-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold-accent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links ul a:hover {
    color: var(--gold-accent);
    padding-left: 6px;
}

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-info strong {
    color: var(--surface-white);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* --- Back to Top Button --- */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--primary-green);
    color: var(--gold-accent);
    border: 1px solid var(--gold-accent);
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: var(--primary-green-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.back-to-top-btn svg {
    width: 20px;
    height: 20px;
}
