/* ============================================================
   PHOENIX CLUB — Main Stylesheet
   Design: Dark Luxury | Gold Accent | Glassmorphism
   ============================================================ */

/* --- Google Fonts already loaded in layout --- */
:root {
    --gold: #d4a017;
    --gold-light: #f0c040;
    --gold-dark: #a07810;
    --purple: #8b5cf6;
    --purple-dark: #6d28d9;
    --bg-black: #080808;
    --bg-dark: #0f0f0f;
    --bg-card: #141414;
    --bg-card2: #1a1a1a;
    --text-white: #f5f5f5;
    --text-muted: #999;
    --border: rgba(212, 160, 23, 0.18);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-black);
    color: var(--text-white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--text-white);
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

/* ---------- UTILITY ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 16px;
    border: 1px solid var(--gold);
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
}

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

.text-center .section-subtitle {
    margin: 0 auto;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin-bottom: 20px;
}

.text-center .gold-line {
    margin: 0 auto 20px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(212, 160, 23, 0.5);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
}

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

.btn-outline:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.btn-white {
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}

/* ---------- NAVBAR ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.12);
    transition: all var(--transition);
    padding: 0;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.92);
    border-bottom-color: rgba(212, 160, 23, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px; /* Standard size for desktop header */
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
}

.nav-logo:hover .logo-img {
    transform: scale(1.08);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: stretch;
    /* Make children full height */
    gap: 4px;
    height: 100%;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-link {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 12px 16px;
    border-radius: 8px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(212, 160, 23, 0.1);
}

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

/* --- Dropdown & Mega Menu --- */
.has-dropdown {
    position: relative;
}

/* 
   Robust hover bridge on the parent item.
   This ensures the 'hover' state is maintained when moving from 
   the navbar link to the dropdown through the 20px gap.
*/
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 30px;
    /* Covers the 20px margin-top gap */
    background: transparent;
    z-index: 10;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    margin-top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.98);
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-top: 3px solid var(--gold);
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.95), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.3s;
    z-index: 1001;
    pointer-events: none;
    /* Prevent interaction while hidden */
}

.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
    /* Re-enable interaction when shown */
}

/* --- Tabbed Mega Menu --- */
.tabbed-dropdown {
    padding: 0 !important;
    overflow: hidden;
    width: 1150px !important;
    /* Increased width */
}

.mega-menu-tabbed {
    display: flex;
    height: 500px;
    /* Fixed height to avoid viewport issues */
    background: rgba(10, 10, 10, 0.98);
}

/* Sidebar */
.mega-sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(212, 160, 23, 0.15);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.sidebar-item {
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-item .s-emoji {
    font-size: 1.2rem;
}

.sidebar-item .s-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.sidebar-item .s-arrow {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: rgba(212, 160, 23, 0.08);
    border-left-color: var(--gold);
}

.sidebar-item:hover .s-title,
.sidebar-item.active .s-title {
    color: #fff;
}

.sidebar-item:hover .s-arrow,
.sidebar-item.active .s-arrow {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-all-link {
    margin-top: auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(212, 160, 23, 0.1);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.sidebar-all-link:hover {
    background: rgba(212, 160, 23, 0.1);
}

/* Content Area */
.mega-tab-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pane-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
    padding-bottom: 20px;
}

.pane-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}

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

.pane-view-all {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

.pane-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
}

.pane-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pane-item-bullet {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(212, 160, 23, 0.4);
}

.pane-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pane-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.pane-item-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.pane-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.pane-item:hover .pane-item-name {
    color: var(--gold);
}

/* Mobile Dropdown */
.drawer-links .has-dropdown>a {
    justify-content: space-between;
}

.drawer-dropdown {
    display: none;
    padding-left: 20px;
    margin-top: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.drawer-dropdown.active {
    display: block;
}

.drawer-dropdown li a {
    font-size: 0.85rem;
    padding: 8px 12px;
}

.dropdown-toggle-icon {
    transition: transform 0.3s ease;
}

.drawer-links .has-dropdown.active>a .dropdown-toggle-icon {
    transform: rotate(180deg);
}

.nav-cta {
    margin-left: 8px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1090;
    backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    display: block;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #111;
    border-left: 1px solid var(--border);
    z-index: 1100;
    transition: right var(--transition);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 24px;
    padding: 4px 8px;
    transition: color var(--transition);
}

.drawer-close:hover {
    color: var(--gold);
}

.drawer-logo {
    margin-bottom: 32px;
}

.drawer-logo .logo-img {
    height: 50px;
}

.drawer-links {
    flex: 1;
}

.drawer-links li {
    margin-bottom: 4px;
}

.drawer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition);
}

.drawer-links a i {
    color: var(--gold);
    width: 20px;
}

.drawer-links a:hover {
    background: rgba(212, 160, 23, 0.1);
    color: #fff;
}

.drawer-cta {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
}

/* ---------- PAGE BANNER (inner pages) ---------- */
.page-banner {
    padding: 140px 0 80px;
    position: relative;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
}

.page-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-banner h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

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

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

.breadcrumb span {
    color: var(--text-muted);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero_banner.png');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroPan 20s ease-in-out infinite alternate;
}

@keyframes heroPan {
    from {
        transform: scale(1.05) translateX(0);
    }

    to {
        transform: scale(1.1) translateX(-2%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.80) 0%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(139, 92, 246, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease both;
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-bottom: 40px;
    animation: fadeInUp 0.9s ease 0.4s both;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.9s ease 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 64px;
    animation: fadeInUp 0.9s ease 0.8s both;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 20px;
    overflow: hidden;
    max-width: 760px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 28px 20px;
    position: relative;
    transition: background var(--transition);
}

.stat-item:hover {
    background: rgba(212, 160, 23, 0.08);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: rgba(212, 160, 23, 0.25);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(212, 160, 23, 0.05));
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 10px;
    margin: 0 auto 10px;
    font-size: 0.95rem;
    color: var(--gold);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s ease infinite;
}

.hero-scroll i {
    color: var(--gold);
    font-size: 1rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ---------- ABOUT TEASER ---------- */
.about-teaser {
    background: var(--bg-dark);
}

.about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    height: 520px;
    filter: brightness(0.9);
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 160, 23, 0.4);
    border: 5px solid var(--bg-dark);
}

.about-img-badge .badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.about-img-badge .badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.about-features {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.about-feature:hover {
    background: rgba(212, 160, 23, 0.06);
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateX(6px);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.05));
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.about-feature-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.about-feature-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
}

/* ---------- SERVICES PREVIEW ---------- */
.services-preview {
    background: var(--bg-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.service-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 160, 23, 0.9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 12px;
}

.service-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.service-card-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    display: none;
    transition: all var(--transition);
}

.service-card:hover .service-card-text {
    display: block;
}

.service-card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #fff;
    opacity: 0;
    transition: all var(--transition);
}

.service-card:hover .service-card-arrow {
    opacity: 1;
}

/* ---------- SERVICES PAGE FULL ---------- */
.services-page {
    background: var(--bg-black);
}

.service-category {
    margin-bottom: 80px;
}

.service-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.service-category-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-category-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
}

.service-category-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.service-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--purple));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition);
}

.service-item-card:hover {
    background: rgba(212, 160, 23, 0.05);
    border-color: rgba(212, 160, 23, 0.35);
    transform: translateY(-4px);
}

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

.service-item-card .check {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.service-item-card .item-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

/* ---------- WHY CHOOSE US ---------- */
.why-section {
    background: var(--bg-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.why-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.why-card:hover::after {
    opacity: 1;
}

.why-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.05));
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 auto 20px;
    transition: all var(--transition);
}

.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    transform: rotate(5deg) scale(1.1);
}

.why-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

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

/* ---------- GALLERY ---------- */
.gallery-section {
    background: var(--bg-black);
}

.gallery-filter {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition);
}

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

.gallery-item.large {
    grid-row: span 2;
}

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

.gallery-item.large img {
    height: 100%;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

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

.gallery-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.gallery-item-tag {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(212, 160, 23, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    opacity: 0;
    transition: opacity var(--transition);
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
}

.lightbox-close:hover {
    background: var(--gold);
    color: #000;
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero_banner.png') center/cover;
    opacity: 0.08;
}

.cta-strip-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 160, 23, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-strip-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-strip h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

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

/* ---------- BOOKING PAGE ---------- */
.booking-section {
    background: var(--bg-dark);
    padding: 60px 0 100px;
}

.booking-container {
    max-width: 780px;
    margin: 0 auto;
}

.booking-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.booking-form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.booking-form-card p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    transition: all var(--transition);
    outline: none;
}

.form-group select option {
    background: #1a1a1a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(212, 160, 23, 0.05);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.08);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 8px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius);
    padding: 16px 20px;
    color: #10b981;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius);
    padding: 16px 20px;
    color: #ef4444;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
    background: var(--bg-dark);
    padding: 60px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    margin-top: 0;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

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

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.05));
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.contact-item-value a {
    color: var(--gold);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.contact-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 1rem;
    transition: all var(--transition);
}

.contact-social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #050505;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding: 70px 0 50px;
}

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

.footer-logo .logo-img {
    height: 65px; /* Slightly larger for footer prominence */
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(6px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.86rem;
    color: var(--text-muted);
}

.footer-contact-list li i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: var(--gold);
}

.footer-contact-list a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: wafloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes wafloat {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
    }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .about-teaser-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-img-wrapper img {
        height: 380px;
    }

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

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

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

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

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

    .navbar {
        display: none;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-logo .logo-img {
        height: 45px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

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

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

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

    .gallery-item.large {
        grid-row: span 1;
    }

    .gallery-item.large img {
        height: 260px;
    }

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

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

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .booking-form-card {
        padding: 28px 20px;
    }
}

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .about-img-badge {
        width: 110px;
        height: 110px;
        right: 0;
        bottom: -10px;
    }
}

.bg-darker {
    background-color: #050505 !important;
}

.section-divider-glow {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 15px var(--gold);
}
/* Section Divider Gold */
.section-divider-gold {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

/* Section Divider Gold Visible */
.section-divider-gold {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.5), transparent);
    margin: 40px 0;
}

/* Final High-Visibility Gold Divider */
.section-divider-gold {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
    margin: 80px 0;
    opacity: 0.8 !important;
    display: block !important;
    position: relative;
    z-index: 5;
}

/* Full-Width Solid Gold Divider */
.section-divider-gold {
    width: 100%;
    height: 1px;
    background: var(--border); 
    opacity: 1;
    margin: 0;
}

/* Final Full-Width Gold Divider Update */
.section-divider-gold {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 1px;
    background: rgba(212, 160, 23, 0.2);
    display: block;
    border: none;
}

/* Global Call Icon Rotation */
.fa-phone-alt {
    transform: rotate(135deg);
    display: inline-block;
}

/* Glass Card Padding */
.glass-card {
    padding: 20px;
}
