@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&family=Tajawal:wght@300;400;500;700;900&family=Outfit:wght@300;400;600;700&display=swap');

/* variables */
:root {
    --bg-primary: #080808;
    --bg-secondary: #0f0f0f;
    --bg-card: #151515;
    --bg-card-hover: #1f1f1f;
    --accent-gold: #D7A84A;
    --accent-gold-rgb: 215, 168, 74;
    --accent-gold-hover: #E4B95B;
    --coffee-dark: #3A2415;
    --coffee-light: #523723;
    --text-light: #F8F4EA;
    --text-muted: #B8B3A8;
    --whatsapp-green: #25D366;
    --whatsapp-hover: #20ba59;
    --danger-red: #ff4d4d;
    --font-primary: 'Tajawal', sans-serif;
    --font-secondary: 'Cairo', sans-serif;
    --font-numbers: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    --glass-bg: rgba(15, 15, 15, 0.75);
    --glass-border: rgba(215, 168, 74, 0.12);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-light);
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 80px; /* To prevent floating buttons from blocking content */
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border: 2px solid var(--bg-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Common Classes & Typography */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* Container widths for screen sizes */
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.gold-text {
    color: var(--accent-gold);
    background: linear-gradient(135deg, #F8F4EA 0%, var(--accent-gold) 50%, #9A7326 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-border {
    border: 1px solid var(--accent-gold);
}

.number-font {
    font-family: var(--font-numbers);
    direction: ltr;
    display: inline-block;
}

/* Badges */
.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(215, 168, 74, 0.08);
    border: 1px solid rgba(215, 168, 74, 0.3);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-gold::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-gold);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--text-light);
}

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

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 12px auto 0;
    border-radius: 2px;
}

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

/* Glassmorphism Card Style */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(215, 168, 74, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(215, 168, 74, 0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B98E35 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(215, 168, 74, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
    left: -150%;
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, #C79B3D 100%);
    box-shadow: 0 6px 22px rgba(215, 168, 74, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(215, 168, 74, 0.4);
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background: rgba(215, 168, 74, 0.05);
    border-color: var(--accent-gold);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Header & Navbar */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.site-header.scrolled {
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(215, 168, 74, 0.08);
    padding: 12px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--bg-card) 0%, #251B10 100%);
    border: 1px solid var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(215, 168, 74, 0.2);
}

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

.logo-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

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

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

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

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

.nav-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1100;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    position: absolute;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.mobile-nav-toggle span:nth-child(1) { top: 0; }
.mobile-nav-toggle span:nth-child(2) { top: 11px; }
.mobile-nav-toggle span:nth-child(3) { top: 22px; }

.mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}
.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 60px;
    background-color: var(--bg-primary);
    overflow: hidden;
}

/* Background Image Overlay with Gradients */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.28;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(58, 36, 21, 0.15) 0%, rgba(8, 8, 8, 0.95) 70%, var(--bg-primary) 100%);
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Trust features in hero */
.hero-trust-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    border-top: 1px solid rgba(215, 168, 74, 0.15);
    padding-top: 30px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(215, 168, 74, 0.1);
    border: 1px solid rgba(215, 168, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.hero-trust-text {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Hero Visual & Floating Cards */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.hero-circle-gradient {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(215, 168, 74, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s infinite alternate ease-in-out;
}

/* Floating Card 1: Ready for next event */
.floating-card-1 {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 270px;
    padding: 20px;
    z-index: 10;
    animation: float1 6s infinite ease-in-out;
}

/* Floating Card 2: Services for */
.floating-card-2 {
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 250px;
    padding: 20px;
    z-index: 10;
    animation: float2 7s infinite ease-in-out;
}

.card-icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.card-mini-icon {
    width: 36px;
    height: 36px;
    background: rgba(215, 168, 74, 0.1);
    border: 1px solid rgba(215, 168, 74, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.card-mini-title {
    font-size: 0.95rem;
    font-weight: 700;
}

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

.services-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.service-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Sections General */
.section-padding {
    padding: 90px 0;
    position: relative;
    background-color: var(--bg-primary);
}

.section-bg-darker {
    background-color: var(--bg-secondary);
}

/* Problem & Solution Section */
.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.problem-card {
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.problem-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(58, 36, 21, 0.4) 0%, rgba(21, 21, 21, 0.8) 100%);
    border: 1px solid rgba(215, 168, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.problem-card:hover .problem-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(215, 168, 74, 0.2);
}

.problem-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.problem-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    position: relative;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(215, 168, 74, 0.08);
    border: 1px solid rgba(215, 168, 74, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

.service-footer .btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Event Types Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.event-type-card {
    padding: 25px 15px;
    text-align: center;
    border-radius: 12px;
    background: rgba(21, 21, 21, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    cursor: default;
}

.event-type-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(215, 168, 74, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.event-type-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
    color: var(--accent-gold);
}

.event-type-title {
    font-size: 1rem;
    font-weight: 700;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.why-us-text {
    max-width: 550px;
}

.why-us-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.35;
}

.why-us-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.why-us-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-feature-card {
    padding: 25px 20px;
}

.why-feature-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(215, 168, 74, 0.08);
    border: 1px solid rgba(215, 168, 74, 0.2);
    color: var(--accent-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.why-feature-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.why-feature-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Timeline (Booking Steps) */
.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
}

.timeline-line {
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(215, 168, 74, 0.05) 0%, rgba(215, 168, 74, 0.4) 50%, rgba(215, 168, 74, 0.05) 100%);
    z-index: 1;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

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

.timeline-number-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--bg-card);
    border: 2px solid rgba(215, 168, 74, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: var(--transition-smooth);
}

.timeline-number {
    font-family: var(--font-numbers);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.timeline-step:hover .timeline-number-wrapper {
    border-color: var(--accent-gold);
    background-color: var(--bg-card-hover);
    box-shadow: 0 0 20px rgba(215, 168, 74, 0.3);
    transform: scale(1.08);
}

.timeline-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.timeline-action {
    text-align: center;
    margin-top: 50px;
}

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

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 30px 20px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

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

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.gallery-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Accordion (FAQs) */
.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    overflow: hidden;
}

.faq-header {
    width: 100%;
    padding: 22px 25px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: right;
}

.faq-question-text {
    flex-grow: 1;
    padding-left: 15px;
}

.faq-icon-indicator {
    color: var(--accent-gold);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: rgba(255, 255, 255, 0.01);
}

.faq-content-inner {
    padding: 0 25px 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active FAQ state */
.faq-item.active {
    border-color: rgba(215, 168, 74, 0.3);
    background-color: rgba(15, 15, 15, 0.85);
}

.faq-item.active .faq-icon-indicator {
    transform: rotate(180deg);
}

/* Final Call To Action (CTA) Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta-glass-box {
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-glass-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 36, 21, 0.25) 0%, rgba(21, 21, 21, 0.9) 100%);
    z-index: -1;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Site Footer */
.site-footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 70px 0 30px;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-top: 8px;
}

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

.footer-link-item a:hover {
    color: var(--accent-gold);
    transform: translateX(-5px);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-icon {
    color: var(--accent-gold);
    width: 20px;
    display: flex;
    justify-content: center;
}

.footer-contact-text {
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.9rem;
}

.footer-admin-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.2;
    transition: var(--transition-fast);
}

.footer-admin-btn:hover {
    opacity: 0.7;
    color: var(--accent-gold);
}

/* Floating Actions Bar */
.floating-actions {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 999;
    display: none; /* Displayed via media queries or JS on mobile */
    justify-content: space-between;
    gap: 12px;
}

.floating-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    text-align: center;
}

.floating-whatsapp {
    background-color: var(--whatsapp-green);
    color: #fff;
}

.floating-call {
    background-color: #121212;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

/* Admin Dashboard Preview Widget */
.admin-widget {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 10001;
    width: 90%;
    max-width: 450px;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.admin-widget.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.admin-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.admin-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(215, 168, 74, 0.2);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.admin-title {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.admin-close:hover {
    color: var(--danger-red);
}

.admin-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.admin-stat-value {
    font-family: var(--font-numbers);
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.admin-btn-action {
    background: transparent;
    border: 1px solid var(--danger-red);
    color: var(--danger-red);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 15px;
    display: block;
    width: 100%;
}

.admin-btn-action:hover {
    background: var(--danger-red);
    color: #fff;
}

/* Animations */
@keyframes float1 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float2 {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(12px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 0.7; }
    100% { transform: scale(1); opacity: 0.4; }
}

/* Scroll reveal initial classes */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */

/* Desktop & Large Screens */
@media (min-width: 1025px) {
    .nav-actions {
        display: flex;
    }
}

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.7rem;
    }
    
    .problem-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets Portrait (768px and below) */
@media (max-width: 768px) {
    body {
        padding-bottom: 90px; /* Leave space for bottom floating bar */
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust-list {
        justify-content: center;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .hero-visual {
        height: 320px;
    }
    
    .floating-card-1 {
        right: 5%;
        top: 5%;
        width: 220px;
    }
    
    .floating-card-2 {
        left: 5%;
        bottom: 5%;
        width: 210px;
    }
    
    /* Navigation */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 280px;
        background: rgba(8, 8, 8, 0.98);
        border-left: 1px solid rgba(215, 168, 74, 0.15);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 25px;
        z-index: 1050;
        transition: var(--transition-smooth);
        overflow-y: auto;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-actions {
        display: none; /* Hide top buttons, handle them in sidebar or bottom float */
    }
    
    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        padding: 10px 0;
    }
    
    /* Timeline (Booking steps) to vertical on tablet/mobile */
    .timeline-line {
        display: none;
    }
    
    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .timeline-step {
        display: flex;
        align-items: flex-start;
        text-align: right;
        gap: 20px;
    }
    
    .timeline-number-wrapper {
        margin: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
    }
    
    .timeline-number {
        font-size: 1.4rem;
    }
    
    .timeline-content {
        flex-grow: 1;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Floating Bottom Action Bar */
    .floating-actions {
        display: flex;
    }
}

/* Small Mobile Devices (430px and below) */
@media (max-width: 430px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-features-list {
        grid-template-columns: 1fr;
    }
    
    .cta-glass-box {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .floating-card-1, .floating-card-2 {
        display: none; /* Hide floating cards on very small screens to avoid clutter */
    }
    
    .logo-main {
        font-size: 1.15rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }
    
    .site-header {
        padding: 15px 0;
    }
}

/* Narrow screens (360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .floating-btn {
        padding: 12px;
        font-size: 0.88rem;
    }
}

/* ==========================================================================
   Service Subpages Custom CSS (Dropdowns, Breadcrumbs, Subpage Heroes, Tables)
   ========================================================================== */

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle .arrow {
    font-size: 0.65rem;
    transition: var(--transition-fast);
}

.nav-dropdown:hover .dropdown-toggle .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 240px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: var(--glass-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 1010;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: right;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    color: var(--accent-gold);
    background: rgba(215, 168, 74, 0.04);
    padding-right: 25px;
}

/* Breadcrumbs Styling */
.breadcrumb-wrapper {
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 15px 0;
    margin-top: 82px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
}

.breadcrumb .current {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Subpage Hero Styling */
.subpage-hero {
    position: relative;
    padding: 120px 0 80px;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    z-index: 1;
}

.subpage-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 20%, var(--bg-secondary) 85%);
    z-index: 2;
}

.hero-valet::before { background-image: url('assets/valet_service.png'); }
.hero-wedding::before { background-image: url('assets/hero_bg.png'); }
.hero-diwaniya::before { background-image: url('assets/hero_bg.png'); }
.hero-corporate::before { background-image: url('assets/hero_bg.png'); }
.hero-hospitality::before { background-image: url('assets/hospitality.png'); }
.hero-packages::before { background-image: url('assets/valet_service.png'); }

.subpage-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.subpage-hero-title {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.subpage-hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.8;
}

.subpage-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.subpage-hero-trust {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.subpage-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.subpage-hero-trust-check {
    color: var(--accent-gold);
    font-weight: bold;
}

/* Split Visual Grid */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.split-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.split-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Package Grid and Cards styling (Bespoke/No Pricing) */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.package-card.popular {
    border-color: var(--accent-gold);
    background: linear-gradient(180deg, rgba(215, 168, 74, 0.03) 0%, rgba(15, 15, 15, 0.8) 100%);
    box-shadow: 0 10px 30px rgba(215, 168, 74, 0.03);
}

.package-card.popular::after {
    content: 'الأكثر طلبًا';
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B98E35 100%);
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.package-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.package-name {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.package-description {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    flex-grow: 1;
}

.package-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.package-feature-check {
    color: var(--accent-gold);
    font-weight: bold;
    flex-shrink: 0;
}

.package-feature-text {
    color: var(--text-muted);
    line-height: 1.5;
}

.package-footer .btn {
    width: 100%;
}

/* Comparison Table Styling */
.comparison-table-wrapper {
    margin-top: 40px;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    background: var(--glass-bg);
}

.comparison-table th, .comparison-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comparison-table th {
    background: rgba(215, 168, 74, 0.03);
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--text-light);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td.check-col {
    color: var(--accent-gold);
    font-weight: bold;
}

/* Related Services Styling */
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

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

.related-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.related-link {
    color: var(--accent-gold);
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-link:hover {
    color: var(--text-light);
}

/* Subpage responsiveness adjustments */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .split-image-wrapper {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-wrapper {
        margin-top: 68px; /* adjusted mobile top height */
        padding: 10px 0;
    }
    
    .subpage-hero {
        padding: 100px 0 50px;
    }
    
    .subpage-hero-title {
        font-size: 2.1rem;
    }
    
    .subpage-hero-desc {
        font-size: 0.95rem;
    }
    
    .subpage-hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    /* Navigation Dropdowns on Mobile */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-dropdown {
        width: 100%;
        position: relative;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .nav-dropdown.open .dropdown-menu {
        max-height: 300px;
        padding: 5px 0 10px;
    }
    
    .dropdown-item {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .nav-dropdown.open .dropdown-toggle .arrow {
        transform: rotate(180deg);
    }
    
    /* Comparison Table to Cards on Mobile */
    .comparison-table-wrapper {
        border: none;
        overflow-x: visible;
    }
    
    .comparison-table {
        display: block;
    }
    
    .comparison-table thead {
        display: none;
    }
    
    .comparison-table tbody, .comparison-table tr, .comparison-table td {
        display: block;
        width: 100%;
    }
    
    .comparison-table tr {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .comparison-table td {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .comparison-table td::before {
        content: attr(data-label);
        font-weight: 700;
        font-family: var(--font-secondary);
        color: var(--text-light);
        margin-left: 15px;
        text-align: right;
    }
    
    .comparison-table tr td:last-child {
        border-bottom: none;
    }
}

/* Local Coverage & Service Areas CSS */
.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.area-card {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.area-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.area-card-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.area-card-link {
    color: var(--accent-gold);
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.area-card-link:hover {
    color: var(--text-light);
    transform: translateX(-4px);
}

/* Guest Experience Path Visual */
.guest-path-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.guest-path-step {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.guest-path-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    color: var(--accent-gold);
}

.guest-path-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.guest-path-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Map Visual Abstract */
.map-visual-container {
    position: relative;
    width: 100%;
    height: 380px;
    background: radial-gradient(circle at 50% 50%, rgba(215, 168, 74, 0.06) 0%, transparent 75%);
    border: 1px dashed rgba(215, 168, 74, 0.15);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-visual-abstract {
    position: relative;
    width: 260px;
    height: 260px;
    border: 2px solid rgba(215, 168, 74, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-visual-abstract::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px dashed rgba(215, 168, 74, 0.12);
    border-radius: 50%;
}

.map-pin {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-gold);
}

.map-pin::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(215, 168, 74, 0.4);
    border-radius: 50%;
    animation: pulse 2.5s infinite ease-in-out;
}

.map-pin-1 { top: 22%; left: 38%; }
.map-pin-2 { top: 46%; left: 62%; }
.map-pin-3 { top: 72%; left: 34%; }
.map-pin-4 { top: 52%; left: 22%; }
.map-pin-5 { top: 28%; left: 72%; }

.map-label {
    position: absolute;
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3px 8px;
    border-radius: 6px;
    color: var(--text-light);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.map-label-1 { top: 12%; left: 32%; }
.map-label-2 { top: 40%; left: 68%; }
.map-label-3 { top: 78%; left: 24%; }
.map-label-4 { top: 56%; left: 8%; }
.map-label-5 { top: 20%; left: 76%; }

/* Local coverage section inside other pages */
.local-coverage-link-card {
    padding: 40px;
    text-align: center;
    border-radius: 20px;
}

/* Responsiveness for Areas and Paths */
@media (max-width: 1200px) {
    .area-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guest-path-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .guest-path-step {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .area-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .map-visual-container {
        height: 300px;
    }
    
    .map-visual-abstract {
        width: 200px;
        height: 200px;
    }
    
    .map-visual-abstract::before {
        width: 130px;
        height: 130px;
    }
}


