/* =========================================
   VARIABLES & SETUP
   ========================================= */
   :root {
    /* Color Palette: Luxury Black and True Gold */
    --black: #050505;
    --dark-bg: #111111;
    --darker-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    
    --gold: #d4af37;
    --gold-light: #f3d56b;
    --gold-dark: #a88b2c;
    --gold-gradient: linear-gradient(135deg, #f3d56b 0%, #a88b2c 100%);
    
    --white: #ffffff;
    --text-main: #fcfcfc;
    --text-muted: #aaaaaa;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing & Utilities */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 600;
}

h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

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

ul { list-style: none; }

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

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

.section-header {
    margin-bottom: 4rem;
}

.divider {
    height: 2px;
    width: 60px;
    background: var(--gold-gradient);
    margin: 1rem auto 1.5rem;
}

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

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.1);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.3s ease;
}

.btn:hover::after {
    transform: scaleY(1);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--gold-gradient);
    color: var(--black);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    margin-top: 1rem;
}

.btn-small:hover {
    background: var(--gold-gradient);
    color: var(--black);
}

/* =========================================
   TOP BAR & NAVBAR
   ========================================= */
.top-bar {
    background: var(--gold-gradient);
    color: var(--black);
    text-align: center;
    padding: 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 100;
}

.top-bar a {
    color: var(--black);
    text-decoration: underline;
    font-weight: 700;
}

.top-bar a:hover {
    opacity: 0.8;
}

#navbar {
    position: absolute;
    top: 0px; /* Top aligned now that top-bar is gone */
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
}

#navbar.sticky {
    position: fixed;
    top: 0;
    background-color: rgba(10, 15, 12, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: clamp(55px, 6vw, 90px);
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}


#navbar.sticky .logo-img {
    height: clamp(40px, 4vw, 65px);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    /* Removed static background image for new video */
    background-color: #000;
}

#main-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    /* Optimized for vertical mobile video */
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (min-width: 768px) {
    #main-hero-video {
        object-fit: contain; /* Prevents heavy cropping of vertical video on wide screens */
    }
}

/* Base states for animations */
.hero-tags-wrapper, .hero-title, .hero-subtitle, .hero-buttons {
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease !important;
    will-change: transform, opacity;
}

/* Active Video State: Slide away alternately and hide ALL UI */
body.video-active #hero .hero-tags-wrapper { transform: translateX(-150vw) !important; opacity: 0 !important; pointer-events: none !important; }
body.video-active #hero .hero-title { transform: translateX(150vw) !important; opacity: 0 !important; pointer-events: none !important; }
body.video-active #hero .hero-subtitle { transform: translateX(-150vw) !important; opacity: 0 !important; pointer-events: none !important; }
body.video-active #hero .hero-buttons { transform: translateX(150vw) !important; opacity: 0 !important; pointer-events: none !important; }
body.video-active .video-controls-overlay { opacity: 0.3 !important; }
body.video-active .video-controls-overlay:hover { opacity: 1 !important; }

/* Video Controls */
.video-controls-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 25px;
    border-radius: 30px;
    z-index: 10;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ctrl-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.2s ease;
}
.ctrl-btn:hover { 
    color: var(--gold-light); 
    transform: scale(1.05);
}

.seek-container {
    flex: 1;
    display: flex;
    align-items: center;
}
#seek-bar {
    width: 100%;
    cursor: pointer;
    accent-color: var(--gold);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 26, 20, 0.95) 0%, rgba(17, 26, 20, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 5%;
    margin-top: 100px;
}

.hero-content h1 {
    color: #ffffff;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* =========================================
   QUICK SERVICES
   ========================================= */
.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.quick-service-item {
    background-color: var(--card-bg);
    padding: 2.5rem 1rem;
    text-align: center;
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
}

.quick-service-item:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.quick-service-item:hover .icon-wrap {
    background: var(--gold-gradient);
    color: var(--black);
    transform: scale(1.1);
}

.quick-service-item h3 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin: 0;
}

/* =========================================
   OFFERS SECTION
   ========================================= */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offer-card {
    position: relative;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.offer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 100%);
    z-index: 1;
}

.offer-card:hover .offer-bg {
    transform: scale(1.1);
}

.offer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    text-align: center;
}

.offer-content h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.offer-content p {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* =========================================
   SERVICES PREVIEW 
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-subtle);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    border-color: rgba(212, 175, 55, 0.5);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-info {
    padding: 2rem;
}

.service-info h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--gold);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   FRANCHISE BANNER
   ========================================= */
.franchise-banner {
    position: relative;
    padding: 6rem 0;
    background-image: url('https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.franchise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.85);
}

.franchise-content {
    position: relative;
    z-index: 2;
}

.franchise-content h2 {
    color: var(--gold);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.franchise-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
}

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

/* Make some items span differently for masonry look */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(30%) brightness(0.8);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-subtle);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.client-info h5 {
    color: var(--white);
    margin: 0;
    font-size: 1rem;
    font-family: var(--font-body);
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================
   INSTAGRAM FEED
   ========================================= */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: block;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.insta-overlay i {
    font-size: 2rem;
    color: var(--black);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.insta-item:hover img {
    transform: scale(1.1);
}

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

.insta-item:hover .insta-overlay i {
    transform: translateY(0);
}

/* =========================================
   FOOTER
   ========================================= */
#footer {
    background-color: var(--black);
    color: #ffffff;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(194, 154, 80, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-sub {
    color: rgba(255,255,255,0.8);
}

.brand-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: var(--black);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.links-col ul li {
    margin-bottom: 0.8rem;
}

.links-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.links-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-col ul li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.contact-col ul li i {
    color: var(--gold);
    margin-top: 4px;
}

.newsletter-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    background-color: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 4px 0 0 4px;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
    padding: 0 1.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   FLOATING WHATSAPP BTN
   ========================================= */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #1ebe58;
}

/* =========================================
   ANIMATIONS & RESPONSIVE
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.animate-fade-up {
    animation: fadeUp 1s cubic-bezier(0.5, 0, 0, 1) forwards;
    opacity: 0;
}

.animate-fade-up.delay-1 { animation-delay: 0.2s; }
.animate-fade-up.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   FORMS
   ========================================= */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-subtle);
}

.dark-form {
    background-color: rgba(10, 15, 12, 0.85);
    backdrop-filter: blur(10px);
}

.custom-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.custom-form .form-row {
    display: flex;
    gap: 1.5rem;
}

.custom-form .form-row .form-group {
    flex: 1;
}

.custom-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--dark-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.custom-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.hero-tag {
    display: inline-block;
    background: rgba(216, 64, 64, 0.15);
    color: var(--white);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    border: 1px solid rgba(216, 64, 64, 0.4);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.hero-tag i {
    margin-right: 8px;
    color: var(--gold);
}

/* =========================================
   SCROLL PROGRESS BAR
   ========================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gold-gradient);
    z-index: 9999;
    transition: width 0.1s;
}

/* =========================================
   ANIMATED STATS
   ========================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item h2 {
    font-size: 3.5rem;
    color: var(--gold);
    display: inline-block;
    margin: 0;
    line-height: 1;
}
.stat-item .stat-plus {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
}
.stat-item p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   SWIPER CUSTOMIZATIONS
   ========================================= */
.swiper-pagination-bullet {
    background: var(--gold);
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: var(--gold-dark);
    opacity: 1;
}

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-subtle);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: #ffeb3b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}
.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 60px;
    height: 60px;
    background: var(--black);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top-btn:hover {
    background: var(--gold-gradient);
    color: var(--black);
}

/* =========================================
   LIGHTBOX MODAL
   ========================================= */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(5px);
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    animation: zoom 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--gold);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.lightbox-close:hover {
    color: var(--white);
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .quick-services-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -50px;
    }
    .offers-grid, .services-grid, .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 1; }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-links, .nav-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .offers-grid, .services-grid, .testimonial-grid, .gallery-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insta-item:nth-child(5) { display: none; }
}

@media screen and (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .quick-services-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   OUTLETS TABLE
   ========================================= */
.outlets-table-container {
    max-width: 1000px;
    margin: 3rem auto 0;
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-subtle);
}

.outlets-table, .outlets-table tbody {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    width: 100%;
}

.outlets-table tr {
    display: contents;
}

.outlets-table td {
    display: block;
    width: auto;
}

.outlets-table td:empty {
    display: none;
}

.outlet-cell {
    display: flex;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--gold);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    color: var(--text-main);
    height: 100%;
    box-sizing: border-box;
}

.outlet-cell i {
    color: var(--gold);
    margin-right: 12px;
    font-size: 1.1rem;
}

.outlet-cell:hover {
    transform: translateX(5px);
    background: rgba(212, 175, 55, 0.15);
    border-left: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* =========================================
   CINEMATIC PRELOADER
   ========================================= */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.8s ease;
}

#loader-wrapper.loaded {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.logo-mask-container {
    position: relative;
    width: 350px;
    max-width: 80vw;
    display: flex;
    justify-content: center;
}

.loader-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    animation: drawGlow 2.5s ease-in-out forwards;
}

@keyframes drawGlow {
    0% {
        opacity: 0;
        transform: scale(0.9);
        filter: drop-shadow(0 0 0 transparent);
    }
    40% {
        opacity: 1;
        transform: scale(1.05);
        filter: drop-shadow(0 0 35px var(--gold)); /* Bright gold sweep effect */
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    }
}

/* =========================================
   INSTAGRAM STORIES COMPONENT
   ========================================= */
.stories-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.stories-scroll-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 20px;
    scrollbar-width: none; /* Firefox */
}
.stories-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome */
}

.story-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex-shrink: 0;
    width: 80px;
}

.story-ring {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 3px;
    background: var(--gold-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.story-bubble:hover .story-ring {
    transform: scale(1.08);
}

.story-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--darker-bg); /* Inner dark gap like app */
}

.story-username {
    font-size: 0.75rem;
    color: var(--text-main);
    font-weight: 500;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: lowercase;
}

/* =========================================
   INSTAGRAM STORY MODAL
   ========================================= */
.story-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #050505;
    z-index: 100000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-modal.active {
    display: flex;
    opacity: 1;
}

.story-progress-container {
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    z-index: 100001;
}

.story-progress-bar {
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: 2px;
}

.story-progress-bar.animate {
    animation: storyTimer 5s linear forwards;
}

@keyframes storyTimer {
    0% { width: 0%; }
    100% { width: 100%; }
}

.story-header {
    position: absolute;
    top: 30px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100001;
}

.story-close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.story-modal-content {
    max-width: 100%;
    max-height: 100vh;
    width: auto;
    height: 100%;
    object-fit: contain;
}

/* =========================================
   FRANCHISE SHOWCASE STYLES
   ========================================= */

.intro-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card.premium {
    background: linear-gradient(145deg, rgba(20,20,20,1) 0%, rgba(30,25,10,1) 100%);
    border: 1px solid var(--gold);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2;
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.price-breakdown {
    border-top: 1px dashed rgba(255,255,255,0.1);
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.price-breakdown p {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.price-breakdown p span {
    color: var(--white);
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.features-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold);
    font-size: 0.8rem;
}

.features-list.includes li::before {
    content: '\f192';
}

.pricing-card .card-note {
    font-size: 0.85rem;
    color: var(--gold);
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
    background: rgba(212, 175, 55, 0.05);
    padding: 10px;
    border-radius: 5px;
}

/* Masonry Gallery */
.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
    margin-top: 2rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.masonry-item:hover img {
    transform: scale(1.1);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.masonry-overlay span {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.masonry-item:hover .masonry-overlay span {
    transform: translateY(0);
}

/* Video Wrapper for Franchise */
.franchise-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.franchise-video-wrapper video,
.franchise-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.premium {
        transform: scale(1);
    }
    .pricing-card.premium:hover {
        transform: translateY(-10px);
    }
    .masonry-grid {
        column-count: 2;
    }
}

@media screen and (max-width: 768px) {
    .masonry-grid {
        column-count: 1;
    }
}

/* =========================================
   CONTACT HUB & TEAM SECTION
   ========================================= */

.contact-header {
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, rgba(10,10,10,1) 80%);
    padding: 8rem 0 4rem;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.team-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.team-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    font-size: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.team-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.team-card .role {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: block;
}

.team-card a.call-btn {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    font-weight: 500;
}

.team-card a.call-btn:hover {
    background: var(--gold-gradient);
    color: var(--black);
}

.contact-split {
    display: flex;
    gap: 4rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

.contact-info-panel, .map-panel {
    flex: 1;
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    filter: grayscale(80%) contrast(1.2);
    transition: filter 0.3s ease;
}

.map-panel iframe:hover {
    filter: grayscale(0%);
}

.address-details {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
}

.address-details p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.address-details i {
    color: var(--gold);
    margin-right: 15px;
    width: 20px;
}

.quick-actions-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    font-weight: 500;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 1.05rem;
}

.action-btn i {
    font-size: 1.2rem;
    color: var(--gold);
}

.action-btn:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.05);
}

@media screen and (max-width: 900px) {
    .team-grid { grid-template-columns: 1fr; }
    .contact-split { flex-direction: column; }
    .map-panel iframe { height: 350px; }
    .contact-split { gap: 2rem; }
}
