:root {
    --gold: #d4af37;
    --gold-light: #e5c05c;
    --black: #000000;
    --dark: #050505;
    --card-bg: #0f0f0f;
    --text-white: #ffffff;
    --text-main: #1A1A1A;
    --text-sec: #555555;
    --text-placeholder: #999999;
    --border-input: #D6DCE5;
    --border-card: #C3CAD6;
    --outline-lux: #2A3F66;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#page-content, .navbar {
    opacity: 0;
    transform: scale(1.15);
    transition: transform 2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.5s ease;
    width: 100%;
}

#page-content.visible, .navbar.visible {
    opacity: 1;
    transform: none;
}

@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

.bg-anim {
    position: relative;
    overflow: hidden;
}

.bg-anim::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    animation: moveBlob 15s infinite linear;
    pointer-events: none;
    z-index: 0;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Base Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

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

.subtitle {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

h3 span { color: var(--gold); }

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none !important;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

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

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

.btn-outline-white {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.btn-outline-gold {
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
}

.btn-round { border-radius: 30px; }
.btn-sm { padding: 10px 20px; font-size: 12px; }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

/* Cinematic Royal Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10000;
    display: flex; justify-content: center; align-items: center;
    background: #000;
    overflow: hidden;
}

.pre-bg { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: #000; z-index: 10000; 
}

.gate {
    position: absolute;
    top: 0;
    bottom: 0; /* Ensures full height even on mobile browsers where 100% height fails */
    width: 50.5vw; /* Slightly over 50 to hide center gap */
    background-color: #000;
    background-image: url('assets/royal_door.png');
    background-size: 200% 100%; /* 200% of 50.5vw = perfect stretch across screen */
    background-repeat: no-repeat;
    transition: transform 1.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 10001;
}

.gate-left {
    left: 0;
    background-position: left center;
    border-right: 2px solid var(--gold);
}

.gate-right {
    right: 0;
    background-position: right center;
    border-left: 2px solid var(--gold);
}

/* Fix Name Plates to meet perfectly in center */
.name-plate {
    position: absolute; 
    top: 65% !important; 
    background: linear-gradient(135deg, #d4af37, #f1d592);
    color: #000; 
    padding: 10px 25px; 
    font-family: 'Outfit', sans-serif; 
    font-weight: 700;
    font-size: 14px; 
    letter-spacing: 2px; 
    border: 2px solid #000; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 10002;
    text-transform: uppercase;
    white-space: nowrap;
}

.gate-left .name-plate { 
    right: 0; 
    transform: translateY(-50%); 
    border-radius: 5px 0 0 5px; 
    border-right: none;
}

.gate-right .name-plate { 
    left: 0; 
    transform: translateY(-50%); 
    border-radius: 0 5px 5px 0; 
    border-left: none;
}

.pre-logo-wrapper { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    z-index: 10005; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: 0.8s all ease; 
}

.pre-logo { 
    background: #000; 
    border-radius: 50%; 
    padding: 15px; 
    border: 2px solid var(--gold); 
    box-shadow: 0 0 30px rgba(212,175,55,0.3); 
    width: 130px;
}

.pre-logo img {
    width: 100%;
    display: block;
}

.floral-spinner { 
    position: absolute; 
    width: 260px; 
    height: 260px; 
    animation: rotateFlowers 20s linear infinite; 
}

.flower { 
    position: absolute; 
    color: #d4af37; 
    font-size: 24px; 
    filter: drop-shadow(0 0 10px #d4af37); 
}

.flower:nth-child(1) { top: -20px; left: 50%; transform: translateX(-50%); }
.flower:nth-child(2) { bottom: -20px; left: 50%; transform: translateX(-50%); }
.flower:nth-child(3) { left: -20px; top: 50%; transform: translateY(-50%); }
.flower:nth-child(4) { right: -20px; top: 50%; transform: translateY(-50%); }
.flower:nth-child(5) { top: 30px; right: 30px; }
.flower:nth-child(6) { bottom: 30px; left: 30px; }

@keyframes rotateFlowers { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.sparkle { 
    position: absolute; 
    background: #fff; 
    border-radius: 50%; 
    animation: twinkle 4s infinite; 
    z-index: 10002; 
    pointer-events: none;
}
.sparkle:nth-child(1) { width: 4px; height: 4px; top: 20%; left: 30%; animation-delay: 0s; }
.sparkle:nth-child(2) { width: 3px; height: 3px; top: 60%; left: 10%; animation-delay: 1s; }
.sparkle:nth-child(3) { width: 5px; height: 5px; top: 40%; left: 80%; animation-delay: 2s; }
.sparkle:nth-child(4) { width: 2px; height: 2px; top: 80%; left: 50%; animation-delay: 0.5s; }
.sparkle:nth-child(5) { width: 4px; height: 4px; top: 10%; left: 70%; animation-delay: 1.5s; }

@keyframes twinkle { 
    0%, 100% { opacity: 0; transform: scale(0.5); } 
    50% { opacity: 0.7; transform: scale(1.2) translateY(-20px); } 
}

/* Cinematic Royal Preloader Responsive (Auto-Adjust Logic) */
@media (max-width: 1024px) {
    .floral-spinner { 
        width: clamp(180px, 40vw, 240px); 
        height: clamp(180px, 40vw, 240px); 
    }
    .flower { font-size: clamp(16px, 4vw, 22px); }
    .pre-logo { 
        width: clamp(90px, 20vw, 120px); 
        padding: clamp(8px, 2vw, 15px); 
    }
    .name-plate { 
        font-size: clamp(9px, 2.5vw, 13px); 
        padding: clamp(6px, 1.5vw, 10px) clamp(12px, 3vw, 25px); 
        letter-spacing: 1.5px;
        top: 70% !important;
    }
}

/* Specific micro-adjustment for very small devices */
@media (max-width: 400px) {
    .name-plate { top: 75% !important; }
}

#preloader.fade-out .gate-left { transform: translateX(-101%); }
#preloader.fade-out .gate-right { transform: translateX(101%); }
#preloader.fade-out .pre-logo-wrapper { opacity: 0; transform: translate(-50%, -50%) scale(0.8); transition: 0.8s all ease; }
#preloader.fade-out { background: transparent !important; pointer-events: none; opacity: 0; transition: opacity 0.8s ease 1s; }

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.sticky {
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

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

.logo {
    flex: 0 0 200px;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    flex: 1;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

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

.nav-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.phone-info i {
    color: var(--gold);
}

/* Mobile Menu & Toggle */
.mobile-toggle {
    display: none !important;
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: block !important;
        color: var(--gold);
        font-size: 24px;
        cursor: pointer;
        z-index: 2000;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.6s cubic-bezier(0.8, 0, 0.2, 1);
        z-index: 1999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 24px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s all ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active a:nth-child(6) { transition-delay: 0.6s; }
    .nav-links.active a:nth-child(7) { transition-delay: 0.7s; }
}

/* App-style Bottom Bar */
.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 2000;
        justify-content: space-around;
        align-items: center;
        padding: 0 10px;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .bottom-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-decoration: none;
        color: var(--text-gray);
        transition: 0.3s;
    }

    .bottom-item i {
        font-size: 20px;
    }

    .bottom-item span {
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .bottom-item.active, .bottom-item:hover {
        color: var(--gold);
    }

    .bottom-center-btn {
        width: 60px;
        height: 60px;
        background: var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -40px;
        box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
        color: #000;
        font-size: 24px;
        border: 4px solid #050505;
    }

    /* Adjust page content for bottom bar */
    body { padding-bottom: 70px; }
}

/* Hero */
.hero {
    height: 100vh; position: relative;
    display: flex; align-items: flex-start; /* Changed from center to top align */
    padding-top: 140px; /* Controlled space below header */
    overflow: hidden;
}

.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.hero-badge {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-badge i {
    color: var(--gold);
    font-size: 6px;
}

.hero-content {
    text-align: left;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(35px, 8vw, 72px);
    font-weight: 700;
    margin-bottom: -5px;
    color: #fff;
    letter-spacing: -2px;
}

.hero-content h2 {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content h2 span {
    color: var(--gold);
}

.hero-content p {
    max-width: 450px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-actions .btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 13px;
    text-transform: none;
    font-weight: 600;
}

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

.hero-actions .btn-outline:hover {
    background: var(--gold);
    color: #000;
}

/* About */
.about {
    position: relative;
}

.about-grid-3 {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-left img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about-center h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-center p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.subtitle-small {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.feature-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 30px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.f-v-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.f-v-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    background: rgba(212, 175, 55, 0.05);
}

.f-v-item span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* Services */
.services {
    background: #080808;
    position: relative;
}

/* Services */
.services {
    background: #080808;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    padding: 20px 0;
}

.service-card {
    background: var(--card-bg);
    padding: 35px 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0; /* Important for grid item shrinking */
}

.service-card:hover { 
    border-color: var(--gold); 
    transform: translateY(-8px); 
    box-shadow: 0 10px 30px rgba(212,175,55,0.1); 
}

.s-icon { 
    font-size: 38px; 
    color: var(--gold) !important; 
    margin-bottom: 20px; 
    display: block !important;
}

.service-card h4 { font-size: 15px; font-weight: 600; line-height: 1.4; color: #fff; word-wrap: break-word; hyphens: auto; }
.service-card h4 span { display: block; font-size: 12px; color: var(--text-gray); margin-top: 5px; word-wrap: break-word; }

/* RE-APPLYING THE MOBILE/TABLET GRID REQUIREMENTS */
@media (max-width: 1024px) {
    .services-grid { 
        grid-template-columns: repeat(5, 1fr); 
        gap: 15px; 
    }
    .service-card { padding: 20px 10px; }
    .s-icon { font-size: 28px; }
    .service-card h4 { font-size: 13px; }
}

@media (max-width: 480px) {
    .services-grid { 
        grid-template-columns: repeat(5, 1fr); 
        gap: 8px; 
    }
    .service-card { padding: 15px 5px; min-height: 120px; }
    .s-icon { font-size: 20px; margin-bottom: 10px; }
    .service-card h4 { font-size: 9px; line-height: 1.2; }
    .service-card h4 span { font-size: 7px; margin-top: 2px; }
    
    .services .section-title h3 { font-size: 24px; }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: flex-start;
}

.price-card {
    background: #0a0a0a;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.price-card.featured {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.card-head {
    text-align: center;
    margin-bottom: 25px;
}

.price-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.amount {
    font-size: 30px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.amount span {
    font-size: 13px;
    color: var(--text-gray);
}

.p-sub {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.p-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.p-list li {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    line-height: 1.4;
}

.p-list li i {
    color: var(--gold);
    font-size: 10px;
    margin-top: 3px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Portfolio */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.portfolio-filter::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.portfolio-filter button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.portfolio-filter button.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .portfolio-filter {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
        gap: 10px;
    }
    
    .portfolio-filter button {
        padding: 6px 14px;
        font-size: 12px;
    }
}
.portfolio-slider-wrapper {
    position: relative;
    width: 100%;
}

.portfolio-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
}

.portfolio-slider::-webkit-scrollbar {
    display: none;
}

.port-item {
    flex: 0 0 350px;
    scroll-snap-align: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .port-item {
        flex: 0 0 85%;
    }
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.prev-slide, .next-slide {
    width: 45px;
    height: 45px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-slide:hover, .next-slide:hover {
    background: var(--gold);
    color: #000;
}

.port-item.hide {
    display: none;
    transform: translateX(50px);
    opacity: 0;
}

.port-item.show {
    animation: slideIn 0.5s forwards;
}

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

.port-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.port-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

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

.port-item:hover .port-overlay, .port-item:active .port-overlay {
    opacity: 1;
}

/* Before After Slider */
.ba-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    cursor: ew-resize;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.img-before, .img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-before img, .img-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-after {
    width: 50%;
    overflow: hidden;
    border-right: 3px solid var(--gold);
    z-index: 2;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.ba-slider .label {
    position: absolute;
    bottom: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 4;
}

.img-before .label { right: 20px; }
.img-after .label { left: 20px; }

/* Why Us */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.why-box {
    background: var(--card-bg); padding: 40px 20px; text-align: center; border-radius: 10px;
}
.why-box i { font-size: 35px; color: var(--gold); margin-bottom: 20px; }
.why-box h5 { font-size: 15px; font-weight: 600; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.testi-card { background: var(--card-bg); padding: 40px; border-radius: 10px; }
.testi-card p { font-style: italic; color: var(--text-gray); margin-bottom: 30px; }
.user-info { display: flex; align-items: center; gap: 15px; }
.user-info img { width: 50px; height: 50px; border-radius: 50%; }
.user-info h6 { font-size: 15px; }
.user-info span { font-size: 12px; color: var(--gold); }

/* Video */
.video-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.video-play {
    flex: 1.2;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.video-play img {
    width: 100%;
    display: block;
}

.video-text {
    flex: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #000;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold-light);
}

.video-text h3 {
    margin-bottom: 20px;
}

/* CTA */
.cta-sec { background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images for backround uses/evening view.png'); background-attachment: fixed; background-size: cover; }
.cta-content h3 { font-size: 45px; margin-bottom: 40px; }
.cta-btns { display: flex; justify-content: center; gap: 20px; }

/* Footer */
.footer { background: #050505; padding-top: 80px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 60px; }
.f-about p { color: var(--text-gray); margin: 25px 0; font-size: 14px; }
.f-social { display: flex; gap: 15px; }
.f-social a { width: 35px; height: 35px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.footer h6 { color: var(--gold); margin-bottom: 25px; font-size: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { color: var(--text-gray); font-size: 14px; text-decoration: none; }
.f-contact p { font-size: 14px; color: var(--text-gray); margin-bottom: 15px; display: flex; gap: 10px; }
.f-contact i { color: var(--gold); }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 0; font-size: 12px; color: var(--text-gray); }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s all ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .pricing-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .hero-content h1 { font-size: 50px; }
    .hero-content h2 { font-size: 35px; }
}

@media (max-width: 768px) {
    .about-grid, .video-grid, .footer-grid, .testi-grid, .portfolio-grid { grid-template-columns: 1fr; }
    .pricing-grid, .why-grid { grid-template-columns: 1fr; }
    .nav-right { display: none; }
    .hero-content h1 { font-size: 42px; }
    .hero-content h2 { font-size: 30px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-content h3 { font-size: 30px; }
    .cta-btns { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .f-logo-side { justify-content: center; align-items: center; }
    section { padding: 30px 0 !important; }
    .container { padding: 0 15px; }
    .hero { height: auto; min-height: 100vh; padding: 80px 0 50px !important; }
    .footer { padding: 50px 0 20px !important; text-align: center; }
}

@media (max-width: 1200px) { .container { max-width: 95%; } .hero-content h1 { font-size: 55px; } .hero-content h2 { font-size: 38px; } } 
@media (max-width: 992px) { .nav-links { display: none; } .mobile-toggle { display: block !important; color: #fff; font-size: 24px; cursor: pointer; } .nav-links.active { display: flex; flex-direction: column; position: fixed; top: 0; right: 0; width: 70%; height: 100vh; background: #000; padding: 100px 40px; z-index: 1001; gap: 25px; box-shadow: -10px 0 30px rgba(0,0,0,0.5); } .about-grid-3 { grid-template-columns: 1fr; gap: 40px; } .feature-vertical { padding-left: 0; border-left: none; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .video-grid { flex-direction: column; } }

/* Cinematic Royal Preloader */
.pre-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 1; }
.pre-logo-wrapper { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10005; display: flex; align-items: center; justify-content: center; }
.floral-spinner { position: absolute; width: 250px; height: 250px; animation: rotateFlowers 15s linear infinite; }
.flower { position: absolute; color: var(--gold); font-size: 20px; filter: drop-shadow(0 0 10px var(--gold)); }
.flower:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.flower:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.flower:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.flower:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }
@keyframes rotateFlowers { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Force Services to stay in one line on all devices */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(5, 1fr) !important; gap: 12px !important; }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: repeat(5, 1fr) !important; gap: 8px !important; }
    .service-card { padding: 15px 5px !important; }
    .s-icon { font-size: 22px !important; }
    .service-card h4 { font-size: 10px !important; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: repeat(5, 1fr) !important; gap: 5px !important; }
    .service-card { padding: 10px 4px !important; min-height: 100px !important; }
    .s-icon { font-size: 18px !important; margin-bottom: 5px !important; }
    .service-card h4 { font-size: 8px !important; }
    .service-card h4 span { font-size: 6px !important; }
}
