/* ==========================================================================
   Eagle Hawassa Tour and Car Rent — Editorial CSS Stylesheet
   Color Scheme: Dark Navy Blue (#0A1942) & Emerald Green (#0E802B)
   Aesthetic: High-end, architectural, refined editorial (Non-AI look)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties & Base Setup
   -------------------------------------------------------------------------- */
:root {
    --navy-dark: #0A1942;
    --navy-deeper: #050E26;
    --navy-card: #0F2356;
    --navy-light: #162E6B;
    
    --emerald: #0E802B;
    --emerald-light: #12A137;
    --emerald-subtle: rgba(14, 128, 43, 0.12);
    --emerald-glow: rgba(14, 128, 43, 0.35);
    
    --text-primary: #121926;
    --text-muted: #53647E;
    --text-light: #E2E8F0;
    --text-dim: #94A3B8;
    
    --bg-light: #F8FAF7;
    --bg-white: #FFFFFF;
    --border-light: rgba(10, 25, 66, 0.12);
    --border-dark: rgba(255, 255, 255, 0.12);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-amharic: 'Noto Sans Ethiopic', sans-serif;
    
    /* Precision easing - smooth & high speed, non-bouncy */
    --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s var(--ease-editorial);
    --transition-normal: 0.4s var(--ease-editorial);
    --transition-slow: 0.7s var(--ease-editorial);
    
    --radius-sharp: 0px;
    --radius-subtle: 3px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--navy-deeper);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    background-color: var(--bg-light);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* --------------------------------------------------------------------------
   2. Typography & Section Headers
   -------------------------------------------------------------------------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.section-label.center {
    justify-content: center;
}

.label-line {
    width: 28px;
    height: 1.5px;
    background-color: var(--emerald);
}

.label-text {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--emerald);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title.light-text {
    color: var(--bg-white);
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

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

.amh-text, .top-amharic, .hero-tagline-amharic {
    font-family: var(--font-amharic);
}

/* --------------------------------------------------------------------------
   3. Custom Buttons (Architectural & Non-AI Look)
   -------------------------------------------------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius-subtle);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
    z-index: 1;
}

.btn-emerald {
    background-color: var(--emerald);
    color: var(--bg-white);
    border-color: var(--emerald);
}

.btn-emerald::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
    z-index: -1;
}

.btn-emerald:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-emerald:hover {
    border-color: var(--navy-dark);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--emerald);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
    z-index: -1;
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-outline:hover {
    border-color: var(--emerald);
    color: var(--bg-white);
}

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

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

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    border-color: #1DA851;
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 0.6rem 1.15rem;
    font-size: 0.8125rem;
}

/* --------------------------------------------------------------------------
   4. Top Bar & Main Navigation Header (White Navigation Bar)
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--navy-deeper);
    color: var(--text-dim);
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-link {
    color: var(--text-dim);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.top-link:hover {
    color: var(--emerald-light);
}

.top-link.whatsapp-top {
    color: #25D366;
    font-weight: 600;
}

.top-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.top-amharic {
    color: var(--emerald-light);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Header Navbar — White Background */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(10, 25, 66, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: background-color var(--transition-fast), padding var(--transition-fast);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-frame {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-subtle);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background-color: var(--bg-white);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.brand-subtitle {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--emerald);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-dark);
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--emerald);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-header {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--navy-dark);
    transition: all var(--transition-fast);
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   5. Hero Section with Freely Rendered hero-image.png
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    background-color: var(--navy-dark);
    color: var(--bg-white);
    padding: 4.5rem 0 4rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(14, 128, 43, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(22, 46, 107, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* Hero 2-Column Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.9rem;
    background-color: rgba(14, 128, 43, 0.15);
    border: 1px solid rgba(14, 128, 43, 0.35);
    border-radius: var(--radius-subtle);
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--emerald-light);
    border-radius: 50%;
}

.badge-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--emerald-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-highlight {
    color: var(--emerald-light);
    position: relative;
    display: inline-block;
}

.hero-tagline-amharic {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: #A7F3D0;
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.025rem;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Freely Rendered Hero Image on the Right */
.hero-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-img-free {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
    transition: transform var(--transition-slow);
}

.hero-img-free:hover {
    transform: translateY(-4px);
}

/* Hero Stats Strip Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 2.25rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-subtle);
    position: relative;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.stat-card:hover {
    border-color: var(--emerald);
    background-color: rgba(14, 128, 43, 0.06);
}

.stat-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald-light);
}

.stat-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.stat-sub {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   6. About Section
   -------------------------------------------------------------------------- */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.about-images-wrapper {
    position: relative;
    padding-bottom: 2rem;
    padding-right: 2rem;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-subtle);
    border: 1px solid var(--border-light);
    background-color: var(--navy-dark);
}

.main-frame {
    width: 88%;
    aspect-ratio: 4/3;
}

.main-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.main-frame:hover img {
    transform: scale(1.05);
}

.offset-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48%;
    aspect-ratio: 1/1;
    border: 3px solid var(--bg-light);
    z-index: 2;
}

.offset-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: rgba(10, 25, 66, 0.92);
    color: var(--bg-white);
    padding: 0.6rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-left: 3px solid var(--emerald-light);
    z-index: 3;
}

.lead-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.body-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.pillars-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--emerald);
    border-radius: var(--radius-subtle);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.pillar-item:hover {
    transform: translateX(4px);
    border-color: var(--navy-dark);
    border-left-color: var(--emerald-light);
}

.pillar-icon {
    font-size: 1.25rem;
    color: var(--emerald);
    padding: 0.5rem;
    background-color: var(--emerald-subtle);
    border-radius: var(--radius-subtle);
    flex-shrink: 0;
}

.pillar-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.25rem;
}

.pillar-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. Services Section & Tab Controls (Landscape Ratio Image Fix)
   -------------------------------------------------------------------------- */
.services-section {
    padding: 6rem 0;
    background-color: var(--navy-dark);
    color: var(--bg-white);
}

.tab-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-subtle);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--emerald);
    color: var(--bg-white);
}

.tab-btn.active {
    background-color: var(--emerald);
    border-color: var(--emerald);
    color: var(--bg-white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.service-card {
    background-color: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-subtle);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--emerald-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
    z-index: 5;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(14, 128, 43, 0.4);
    transform: translateY(-3px);
}

.card-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--navy-deeper);
}

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

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

/* Card Image Slider */
.card-slider {
    position: relative;
}

.card-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.card-slider .slide.active {
    opacity: 1;
    position: relative;
}

.card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(10, 25, 66, 0.9);
    color: var(--emerald-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.75rem;
    border-left: 2px solid var(--emerald);
}

.card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.card-index {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    transition: color var(--transition-fast);
}

.service-card:hover .card-index {
    color: var(--emerald-light);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 0.85rem;
    padding-right: 2rem;
    line-height: 1.3;
}

.card-text {
    font-size: 0.885rem;
    color: var(--text-dim);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.card-features {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-features li {
    font-size: 0.825rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-features li i {
    color: var(--emerald-light);
    font-size: 0.75rem;
}

.card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--emerald-light);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.card-link:hover {
    gap: 0.85rem;
    color: var(--bg-white);
}

/* --------------------------------------------------------------------------
   8. Car Rental Promotional Section
   -------------------------------------------------------------------------- */
.promo-section {
    padding: 6rem 0;
    background-color: var(--navy-deeper);
}

.promo-banner {
    background-color: var(--navy-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-subtle);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    overflow: hidden;
}

.promo-content {
    padding: 3.5rem;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.promo-desc {
    font-size: 0.98rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.65;
}

.promo-perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
}

.perk-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.15rem;
    border-radius: var(--radius-subtle);
    transition: border-color var(--transition-fast);
}

.perk-card:hover {
    border-color: var(--emerald);
}

.perk-card i {
    font-size: 1.35rem;
    color: var(--emerald-light);
    margin-bottom: 0.6rem;
}

.perk-card h4 {
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0.25rem;
}

.perk-card p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.promo-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-image-box {
    position: relative;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy-card);
}

.promo-landscape-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-subtle);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: var(--navy-deeper);
}

.promo-car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.promo-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: var(--emerald);
    color: var(--bg-white);
    padding: 0.75rem 1.25rem;
    text-align: center;
    border-radius: var(--radius-subtle);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-lbl {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   9. Gallery Section & Lightbox
   -------------------------------------------------------------------------- */
.gallery-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.55rem 1.35rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-subtle);
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.filter-btn.active {
    background-color: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-subtle);
    overflow: hidden;
    background-color: var(--navy-dark);
}

.gallery-item.hide {
    display: none;
}

.gallery-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.gallery-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 66, 0.9) 0%, transparent 70%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
    transition: opacity var(--transition-fast);
}

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

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

.gallery-info {
    color: var(--bg-white);
}

.gallery-cat {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--emerald-light);
}

.gallery-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
}

.gallery-zoom-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-subtle);
    background-color: var(--emerald);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.gallery-zoom-btn:hover {
    background-color: var(--navy-dark);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(5, 14, 38, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 2.5rem;
    color: var(--bg-white);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--emerald-light);
}

.lightbox-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.lightbox-content img {
    max-height: 80vh;
    margin: 0 auto 1rem;
    border-radius: var(--radius-subtle);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--bg-white);
}

/* --------------------------------------------------------------------------
   10. Booking & Reservation Form Section
   -------------------------------------------------------------------------- */
.booking-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.booking-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-subtle);
    padding: 3.5rem;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.booking-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-quick-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.quick-item i {
    width: 40px;
    height: 40px;
    background-color: var(--emerald-subtle);
    color: var(--emerald);
    border-radius: var(--radius-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.quick-item strong {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.quick-item p, .quick-item a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.quick-item a:hover {
    color: var(--emerald);
}

/* Form Styles */
.booking-form-wrapper {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 2.25rem;
    border-radius: var(--radius-subtle);
}

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

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

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

.form-group label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--navy-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-subtle);
    outline: none;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    background-color: var(--bg-white);
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-response {
    display: none;
    padding: 0.85rem;
    font-size: 0.875rem;
    border-radius: var(--radius-subtle);
    text-align: center;
    margin-top: 0.5rem;
}

.form-response.success {
    display: block;
    background-color: rgba(14, 128, 43, 0.12);
    border: 1px solid var(--emerald);
    color: var(--emerald);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. Contact & Map Location Section
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 6rem 0;
    background-color: var(--navy-dark);
    color: var(--bg-white);
}

.location-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-subtle);
    overflow: hidden;
    margin-top: 3rem;
}

.location-details {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.loc-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.loc-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(14, 128, 43, 0.15);
    border: 1px solid rgba(14, 128, 43, 0.3);
    color: var(--emerald-light);
    border-radius: var(--radius-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.loc-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 0.25rem;
}

.loc-item p, .loc-item a {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.loc-item a:hover {
    color: var(--emerald-light);
}

.map-placeholder {
    position: relative;
    background-color: #0c1833;
    background-image: 
        radial-gradient(rgba(14, 128, 43, 0.25) 1px, transparent 0),
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px, 48px 48px, 48px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.map-overlay-card {
    background-color: rgba(10, 25, 66, 0.92);
    border: 1px solid var(--emerald);
    padding: 2rem;
    border-radius: var(--radius-subtle);
    text-align: center;
    max-width: 360px;
    color: var(--bg-white);
}

.map-overlay-card i {
    font-size: 2.5rem;
    color: var(--emerald-light);
    margin-bottom: 1rem;
}

.map-overlay-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.map-overlay-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   12. Footer Section
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--navy-deeper);
    color: var(--text-dim);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-subtle);
    border: 1px solid var(--emerald);
    object-fit: cover;
}

.footer-title h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--bg-white);
    line-height: 1.1;
}

.footer-title span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--emerald-light);
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.footer-amharic {
    font-family: var(--font-amharic);
    font-size: 0.85rem;
    color: #A7F3D0;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--emerald);
}

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-dim);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--emerald);
    transition: transform var(--transition-fast);
}

.footer-links a:hover {
    color: var(--bg-white);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact-line {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-line i {
    color: var(--emerald-light);
    width: 16px;
}

.footer-contact-line a:hover {
    color: var(--emerald-light);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
}

.credit-line {
    color: var(--emerald-light);
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background-color: var(--emerald);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-subtle);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 90;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--navy-dark);
}

/* --------------------------------------------------------------------------
   13. Scroll Reveal & Smooth Animation Classes (Precision Easings)
   -------------------------------------------------------------------------- */
.reveal-fade,
.reveal-text,
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale,
.reveal-stagger > * {
    opacity: 0;
    transition: opacity 0.8s var(--ease-editorial), transform 0.8s var(--ease-editorial);
    will-change: opacity, transform;
}

.reveal-fade { transform: translateY(0); }
.reveal-text { transform: translateY(24px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-up { transform: translateY(30px); }
.reveal-scale { transform: scale(0.96); }
.reveal-stagger > * { transform: translateY(20px); }

/* Triggered State */
.reveal-active {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* --------------------------------------------------------------------------
   14. Mobile Responsiveness (Media Queries)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .grid-2col,
    .hero-grid,
    .promo-banner,
    .location-card-wrapper {
        grid-template-columns: 1fr;
    }

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

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

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

    .about-images-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .promo-image-box {
        padding: 1.5rem;
    }

    .hero-img-free {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions .btn-header {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        border-bottom: 1px solid var(--border-light);
        padding: 2rem 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        display: none;
        z-index: 99;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .nav-link {
        font-size: 1.1rem;
        color: var(--navy-dark);
    }

    .cards-grid,
    .gallery-grid,
    .hero-stats-grid,
    .promo-perks-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-card,
    .promo-content,
    .location-details {
        padding: 2rem 1.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}
