/* =============================================
   HOME PHASE 1 - DARK THEME
   Color Palette:
   - Background:  #0d0d0d, #111111, #1a1a1a, #1e1e1e
   - Surface:     #222222, #2a2a2a, #333333
   - Accent Red:  #c0392b, #e74c3c, #ff4444
   - Accent Gold: #f39c12, #f1c40f
   - Text:        #ffffff, #e0e0e0, #aaaaaa
   - Border:      rgba(255,255,255,0.08)
   ============================================= */

/* ── FORCE DARK BODY ─────────────────────────── */
body.dark-theme {
    background-color: #0d0d0d !important;
    color: #ffffff !important;
    font-family: 'Inter', 'Nunito', sans-serif;
}

body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
    color: #ffffff;
}

body.dark-theme p {
    color: #cccccc;
}

body.dark-theme a {
    color: inherit;
}

/* ── LAYOUT: fixed navbar + offset main ──────── */

/* Fixed header — always on top, removed from flow */
.header-phase1 {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    margin: 0 !important;
    padding: 0 !important;
}

/*
 * Push main content below the fixed navbar.
 * Height = navbar-padding + brand-padding + logo + brand-padding + navbar-padding + border
 * Desktop (>991px):  8 + 5 + 65 + 5 + 8 + 1 = 92px
 * Tablet (≤991px):  10 + 5 + 65 + 5 + 10 + 1 = 96px
 * Mobile (≤768px):  10 + 5 + 45 + 5 + 10 + 1 = 76px
 */
body.dark-theme > main {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 92px !important;
}

@media (max-width: 991px) {
    body.dark-theme > main {
        padding-top: 96px !important;
    }
}

@media (max-width: 768px) {
    body.dark-theme > main {
        padding-top: 76px !important;
    }
}

/* Hero flush — no extra margin/padding */
.og-hero {
    padding: 0 !important;
    margin: 0 !important;
}

.og-slider {
    margin: 0 !important;
    padding: 0 !important;
}

.og-slides-track {
    margin: 0 !important;
    padding: 0 !important;
}

/* ── NAVBAR ─────────────────────────────────── */
/* Fix for Tailwind vs Bootstrap .collapse conflict */
.collapse.show {
    visibility: visible !important;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        visibility: visible !important;
        display: flex !important;
    }
}

.phase1-navbar {
    background-color: rgba(13, 13, 13, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
    margin: 0;
    position: relative;
    z-index: 1050;
}

.phase1-navbar .navbar-brand {
    display: flex;
    align-items: center;
}

/* Edit the height below to resize the logo on desktop */
.phase1-navbar .navbar-brand img {
    height: 65px; /* Default is 65px, change to 55px or whatever you prefer */
    width: auto;
}

.phase1-navbar .nav-link {
    color: #cccccc !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 6px 14px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.phase1-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #e74c3c;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.phase1-navbar .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
}

.phase1-navbar .nav-link:hover::after {
    width: 70%;
}

.phase1-franchise-link {
    color: #e74c3c !important;
}

.phase1-btn-cta {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #fff !important;
    border: none !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4);
    transition: all 0.3s ease;
}

.phase1-btn-cta:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #ff5555 100%) !important;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
    transform: translateY(-1px);
    color: #fff !important;
}

/* ── HERO ────────────────────────────────────── */
.phase1-hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #0d0d0d;
}

.phase1-hero-img {
    object-fit: cover;
    filter: brightness(0.35) saturate(0.8);
}

.phase1-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(13, 13, 13, 0.88) 0%,
            rgba(192, 57, 43, 0.22) 60%,
            rgba(13, 13, 13, 0.65) 100%);
    z-index: 1;
}

.phase1-hero-text {
    max-width: 620px;
    z-index: 2;
    position: relative;
}

.phase1-hero-badge {
    display: inline-block;
    background: rgba(192, 57, 43, 0.2);
    border: 1px solid #e74c3c;
    color: #e74c3c;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.phase1-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.phase1-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82) !important;
    margin-bottom: 10px;
    line-height: 1.6;
}

.phase1-btn-primary {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.5);
    transition: all 0.3s ease;
}

.phase1-btn-primary:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #ff5555 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
}

.phase1-btn-secondary {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.65) !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.phase1-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #fff !important;
    transform: translateY(-2px);
}

/* ── SECTION COMMON ──────────────────────────── */
.phase1-section-badge {
    display: inline-block;
    background: rgba(192, 57, 43, 0.15);
    border: 1px solid rgba(192, 57, 43, 0.4);
    color: #e74c3c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.phase1-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -0.5px;
}

.phase1-section-subtitle {
    font-size: 1.05rem;
    color: #888888 !important;
}

.phase1-accent {
    color: #e74c3c !important;
}

/* ── MARQUEE ────────────────────────────────── */
.phase1-marquee {
    background: linear-gradient(90deg, #1a0000 0%, #c0392b 50%, #1a0000 100%);
    padding: 11px 0;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(192, 57, 43, 0.35);
}

.phase1-marquee marquee {
    font-size: 17px;
    color: #fff;
}

/* ── WHY CHOOSE US ───────────────────────────── */
.phase1-why-choose-us {
    background-color: #111111 !important;
    padding: 64px 0;
}

.phase1-wcu-card {
    background: #1e1e1e !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: default;
}

.phase1-wcu-card:hover {
    background: linear-gradient(135deg, #1e0a0a 0%, #2a1010 100%) !important;
    border-color: #c0392b !important;
    box-shadow: 0 8px 30px rgba(192, 57, 43, 0.25);
    transform: translateY(-4px);
}

.phase1-wcu-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(192, 57, 43, 0.12);
    border: 1px solid rgba(192, 57, 43, 0.25);
    transition: all 0.3s ease;
}

.phase1-wcu-card:hover .phase1-wcu-icon-wrap {
    background: #c0392b;
    border-color: #e74c3c;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.5);
}

.phase1-icon {
    color: #e74c3c !important;
    transition: color 0.3s ease;
}

.phase1-wcu-card:hover .phase1-icon {
    color: #fff !important;
}

.phase1-wcu-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 0.3px;
}

.phase1-wcu-desc {
    font-size: 0.9rem;
    color: #888888 !important;
    line-height: 1.65;
    margin-bottom: 0;
}

.phase1-wcu-card:hover .phase1-wcu-title {
    color: #ffffff !important;
}

.phase1-wcu-card:hover .phase1-wcu-desc {
    color: #cccccc !important;
}

/* ── FACILITIES ──────────────────────────────── */
.phase1-facility-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a0000 0%, #2d0808 30%, #1a0000 100%) !important;
    color: #fff;
    position: relative;
}

.phase1-facility-title {
    color: #fff !important;
    font-size: 2rem;
    font-weight: 800;
    margin: 12px 0;
}

.phase1-facility-desc {
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.7;
    font-size: 0.97rem;
}

.phase1-facility-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    height: 300px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phase1-facility-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.8);
}

.phase1-facility-card:hover .phase1-facility-image {
    transform: scale(1.08);
    filter: brightness(0.6);
}

.phase1-facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 0 16px;
    transition: height 0.3s ease;
}

.phase1-facility-card:hover .phase1-facility-overlay {
    height: 80px;
}

.phase1-facility-overlay span {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff !important;
}

.phase1-plus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #e74c3c;
    color: #fff !important;
    font-size: 20px;
    line-height: 1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(192, 57, 43, 0.5);
}

.phase1-plus-icon:hover {
    background: #fff;
    color: #c0392b !important;
    transform: scale(1.1) rotate(90deg);
}

/* ── TESTIMONIALS ────────────────────────────── */
.phase1-testimonials {
    background-color: #1a1a1a !important;
    padding: 64px 0;
}

.phase1-testi-card {
    background: #1e1e1e !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.phase1-testi-card:hover {
    border-color: rgba(192, 57, 43, 0.4) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.phase1-testi-card--featured {
    border-color: #c0392b !important;
    box-shadow: 0 0 20px rgba(192, 57, 43, 0.2);
}

.phase1-avatar {
    background: #2a2a2a !important;
    overflow: hidden;
    border: 2px solid #c0392b;
}

.phase1-star {
    color: #f39c12 !important;
}

.phase1-testi-text {
    font-size: 0.9rem;
    color: #cccccc !important;
    line-height: 1.7;
    font-style: italic;
}

.phase1-testi-name {
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
}

.phase1-testi-club {
    color: #888888 !important;
    font-size: 0.8rem;
}

/* ── BLOG ────────────────────────────────────── */
.phase1-blog {
    background-color: #111111 !important;
    padding: 64px 0;
}

.phase1-see-all {
    color: #e74c3c !important;
    font-size: 0.9rem;
    transition: color 0.3s;
    text-decoration: none;
}

.phase1-see-all:hover {
    color: #ff6666 !important;
}

.phase1-blog-card {
    background: #1e1e1e !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phase1-blog-card:hover {
    border-color: rgba(192, 57, 43, 0.4) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(-4px);
}

.phase1-blog-img-wrapper {
    overflow: hidden;
    height: 180px;
}

.phase1-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.82);
}

.phase1-blog-card:hover .phase1-blog-img {
    transform: scale(1.08);
    filter: brightness(0.65);
}

.phase1-blog-body {
    padding: 16px;
}

.phase1-blog-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 8px;
    line-height: 1.4;
}

.phase1-blog-text {
    font-size: 0.85rem;
    color: #888888 !important;
    margin-bottom: 16px;
    line-height: 1.6;
}

.phase1-btn-link {
    font-weight: 700;
    color: #e74c3c !important;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s;
}

.phase1-btn-link:hover {
    color: #ff6666 !important;
}

/* ── PARTNERSHIP ─────────────────────────────── */
.phase1-partnership {
    background-color: #0d0d0d !important;
    padding: 40px 0 60px;
}

.phase1-partnership-inner {
    background: linear-gradient(135deg, #1a0000 0%, #2d0808 50%, #1a1a00 100%) !important;
    border: 1px solid rgba(192, 57, 43, 0.3) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6) !important;
    position: relative;
    overflow: hidden;
}

.phase1-partnership-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(192, 57, 43, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.phase1-partnership-title {
    color: #fff !important;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 12px 0 16px;
}

.phase1-partnership-desc {
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.7;
    font-size: 0.97rem;
    margin-bottom: 24px;
}

.phase1-btn-outline {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 8px;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.phase1-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #fff !important;
    transform: translateY(-2px);
}

.phase1-partnership-img {
    filter: brightness(0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: filter 0.3s;
}

.phase1-partnership-img:hover {
    filter: brightness(1);
}

/* ── FOOTER ─────────────────────────────────── */
.footer-phase1 {
    background-color: #0a0a0a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #cccccc;
}

.footer-phase1 h1,
.footer-phase1 h2,
.footer-phase1 h3,
.footer-phase1 h4,
.footer-phase1 h5,
.footer-phase1 h6 {
    color: #ffffff !important;
}

.footer-logo-img {
    max-height: 60px;
    filter: brightness(0.9);
}

.phase1-footer-heading {
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.phase1-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase1-footer-links li {
    margin-bottom: 8px;
}

.phase1-footer-links a {
    color: #888888 !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.phase1-footer-links a:hover {
    color: #e74c3c !important;
}

.phase1-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #888888 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phase1-social-icon:hover {
    background: #c0392b;
    border-color: #e74c3c;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.45);
}

.phase1-footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}

.phase1-footer-copy {
    color: #555555 !important;
    font-size: 0.85rem;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 991px) {
    .phase1-hero-title {
        font-size: 1.9rem;
    }

    .phase1-btn-secondary {
        margin-left: 0 !important;
        margin-top: 12px;
    }

    .phase1-section-title {
        font-size: 1.7rem;
    }

    .phase1-navbar {
        padding: 10px 0;
    }

    .phase1-navbar .navbar-collapse {
        background-color: #222222;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        border: 05px solid rgba(255, 255, 255, 0.08);
    }

    .phase1-navbar .nav-link {
        color: #ffffff !important;
        padding: 10px 14px !important;
    }
}

@media (max-width: 768px) {
    .phase1-hero-banner {
        height: 540px;
    }

    .phase1-hero-title {
        font-size: 1.6rem;
    }

    .phase1-facility-card {
        height: 220px;
    }

    .phase1-partnership-inner {
        padding: 30px 20px !important;
    }

    .phase1-partnership-img {
        margin-top: 24px;
    }

    .phase1-navbar .navbar-brand img {
        height: 45px !important;
    }
}