@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,600;1,700&family=Poppins:wght@300;400;500;600;700;800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Screen ke baahar text/content jaane se rokta hai */
}

img, video, iframe {
    max-width: 100%;
}

/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0b0b0b;
    color: #ffffff;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================== HEADER & NAVBAR ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 180, 0, 0.15);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling with Gold Glow */
.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    /* Soft Gold Glow Effect */
    filter: drop-shadow(0 0 10px rgba(255, 187, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}


.logo img:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 18px rgba(255, 187, 0, 0.85));
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffb400;
}

.header-btn {
    padding: 10px 22px;
    background: #ffb400;
    color: #0d0d0d;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.3s ease;
}

.header-btn:hover {
    background: #ffffff;
}

.hamburger-menu {
    display: none;
    font-size: 24px;
    color: #ffb400;
    cursor: pointer;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 80px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35)), url('images/Hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
}
.hero-content {
    max-width: 680px;
}

/* Stylish Brand Header Top */
.hero-brand-header {
    margin-bottom: 22px;
}

.stylish-brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 34px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFF099 0%, #FFB400 50%, #D4AF37 100%);
    -webkit-background-clip: text;
     background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    filter: drop-shadow(0 2px 10px rgba(255, 180, 0, 0.2));
}

.hero-subline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-subline .gold-line {
    height: 2px;
    width: 35px;
    background: linear-gradient(90deg, #FFB400, transparent);
    border-radius: 2px;
}

.hero-subline .sub-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Hero Typography */
.hero-content h1 {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 18px;
    color: #ffffff;
}

.hero-content h1 span {
    color: #ffb400;
}

.hero-content p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 580px;
}

/* Hero Action Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    padding: 14px 32px;
    background: #ffb400;
    color: #0d0d0d;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 180, 0, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #ffb400;
    color: #ffb400;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: #ffb400;
    color: #0d0d0d;
    transform: translateY(-2px);
}

/* Hero Counters/Stats */
.hero-stats {
    display: flex;
    gap: 20px;
}

.hero-stats .stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 180, 0, 0.25);
    padding: 12px 24px;
    border-radius: 10px;
    min-width: 110px;
    text-align: center;
}

.hero-stats h2 {
    font-size: 26px;
    color: #ffb400;
    margin-bottom: 2px;
}

.hero-stats p {
    margin: 0;
    font-size: 12px;
    color: #ddd;
}

/* ==================== GLOBAL SECTION TITLE ==================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 8px;
}

.section-title p {
    color: #ffb400;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ==================== ABOUT SECTION ==================== */
/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 90px 8%;
    background-color: #0d0d0d;
    color: #ffffff;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.about-tagline {
    color: #ffb400;
    font-size: 1rem;
    letter-spacing: 1px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-img-box {
    flex: 1;
    max-width: 500px;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 187, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-text-box {
    flex: 1;
    max-width: 550px;
}

.about-text-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #ffb400;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text-box p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.about-list li i {
    color: #ffb400;
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-img-box {
        width: 100%;
        height: 320px;
    }
    .about-list li {
        justify-content: center;
    }
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 90px 0;
    background: #0b0b0b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 180, 0, 0.15);
    padding: 35px 25px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #ffb400;
    background: rgba(255, 180, 0, 0.05);
}

.service-icon {
    font-size: 36px;
    color: #ffb400;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    padding: 90px 0;
    background: #0f0f0f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 90px 0;
    background: #0b0b0b;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 180, 0, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffb400;
}

.contact-form button {
    width: 100%;
    justify-content: center;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #050505;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 180, 0, 0.1);
    color: #888888;
    font-size: 14px;
}

.developer-credit {
    margin-top: 8px;
    font-size: 12px;
    color: #ffb400;
    letter-spacing: 0.5px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-only-btn {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(11, 11, 11, 0.98);
        flex-direction: column;
        padding: 40px 25px;
        transition: 0.3s ease;
        border-left: 1px solid rgba(255, 180, 0, 0.2);
    }

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

    .stylish-brand-name {
        font-size: 26px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        justify-content: space-between;
    }
}
/* ==================== ADVANCED SERVICES SECTION ==================== */
.services-section {
    padding: 100px 8%;
    background: radial-gradient(circle at center, #141414 0%, #080808 100%);
    position: relative;
    overflow: hidden;
}

/* Header Styling */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 187, 0, 0.12);
    border: 1px solid rgba(255, 187, 0, 0.4);
    color: #ffb400;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    box-shadow: 0 0 15px rgba(255, 187, 0, 0.2);
    animation: pulseBadge 2.5s infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 12px rgba(255, 187, 0, 0.2); }
    50% { box-shadow: 0 0 22px rgba(255, 187, 0, 0.6); }
}

.services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.services-tagline {
    color: #aaaaaa;
    font-size: 1rem;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Card Styling with Glassmorphism */
.service-card {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 25px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 187, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 187, 0, 0.2);
}

/* Floating Icons Effect */
.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 187, 0, 0.1);
    border: 1px solid rgba(255, 187, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #ffb400;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #ffb400;
    color: #0d0d0d;
    transform: rotate(-6deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 187, 0, 0.6);
}

.service-card h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: #aaaaaa;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    color: #dddddd;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: #ffb400;
    font-size: 0.75rem;
}

/* Service Button */
.service-btn {
    text-decoration: none;
    color: #ffb400;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-btn:hover {
    gap: 14px;
    color: #ffffff;
}
/* ==================== SERVICES SECTION (IMAGE CARDS) ==================== */
.services-section {
    padding: 90px 8%;
    background-color: #080808;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header .section-subtitle {
    color: #ffb400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

.services-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #121212;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 187, 0, 0.18);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #ffb400;
    box-shadow: 0 15px 35px rgba(255, 187, 0, 0.2);
}

.service-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.service-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.service-card-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card-body p {
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    text-decoration: none;
    color: #ffb400;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #ffffff;
}
/* ==================== BENTO GALLERY SECTION ==================== */
.gallery-section {
    padding: 100px 8%;
    background-color: #0a0a0a;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header .section-subtitle {
    color: #ffb400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #ffffff;
}

/* Filter Tab Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 187, 0, 0.2);
    color: #cccccc;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover, .filter-btn.active {
    background: #ffb400;
    color: #000000;
    border-color: #ffb400;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255, 187, 0, 0.4);
}

/* Bento Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-wide {
    grid-column: span 2;
}

/* Gallery Item Styling */
.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 187, 0, 0.15);
    background: #111111;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: #ffb400;
    box-shadow: 0 12px 30px rgba(255, 187, 0, 0.25);
}

.media-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.feature-wide .media-wrapper {
    height: 300px;
}

.media-wrapper img, 
.media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .media-wrapper img,
.gallery-item:hover .media-wrapper video {
    transform: scale(1.08);
}

/* HD Video Badge Overlay */
.video-play-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid #ffb400;
    color: #ffb400;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

/* Dark Editorial Gradient Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gallery-tag {
    color: #ffb400;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-overlay h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Responsive Styles for Mobile */
@media (max-width: 900px) {
    .feature-wide {
        grid-column: span 1;
    }
    .media-wrapper, .feature-wide .media-wrapper {
        height: 250px;
    }
}
/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 100px 8%;
    background: radial-gradient(circle at center, #121212 0%, #050505 100%);
    color: #ffffff;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header .section-subtitle {
    color: #ffb400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #ffffff;
}

/* Layout Grid */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    max-width: 1250px;
    margin: 0 auto;
}

/* Info Cards Styling */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 187, 0, 0.2);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: #ffb400;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 187, 0, 0.1);
    border: 1px solid rgba(255, 187, 0, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb400;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.info-content p {
    color: #aaaaaa;
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.contact-link {
    color: #ffb400;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Special WhatsApp Button Card */
.whatsapp-card {
    border-color: rgba(35, 211, 102, 0.3);
    background: linear-gradient(135deg, rgba(35, 211, 102, 0.08), rgba(15, 15, 15, 0.8));
}

.whatsapp-icon {
    background: rgba(35, 211, 102, 0.15);
    border-color: rgba(35, 211, 102, 0.4);
    color: #25d366;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #000000 !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 5px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1eb954;
    box-shadow: 0 0 22px rgba(37, 211, 102, 0.6);
    transform: scale(1.02);
}

/* Map Wrapper Dark Styling */
.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 187, 0, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.map-wrapper iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
    display: block;
}

/* Booking Form Styling */
.contact-form-col {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(255, 187, 0, 0.25);
    border-radius: 16px;
    padding: 35px 30px;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 25px;
}

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

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

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.92rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #ffb400;
    box-shadow: 0 0 12px rgba(255, 187, 0, 0.3);
}

.booking-form select option {
    background: #141414;
    color: #ffffff;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffb400, #e09d00);
    color: #000000;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 187, 0, 0.3);
}

.submit-btn:hover {
    box-shadow: 0 0 30px rgba(255, 187, 0, 0.6);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 960px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
/* Layout Grid (Side-by-Side) */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1250px;
    margin: 0 auto;
    align-items: start;
}

/* Clear Map Wrapper Styling */
.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 187, 0, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    margin-top: 5px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
    /* Clean clear map without heavy dark inversion */
    filter: contrast(105%) saturate(110%);
}
/* ==================== GLOBAL MOBILE RESPONSIVENESS ==================== */
@media (max-width: 768px) {
    /* Section Paddings Adjustment */
    section, .contact-section {
        padding: 60px 5% !important;
    }

    /* Hero Heading Scaling */
    h1, .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }

    /* Section Titles Scaling */
    h2, .section-title {
        font-size: 1.8rem !important;
    }

    /* Subtitles Scaling */
    .section-subtitle {
        font-size: 0.8rem !important;
    }

    /* Form Rows to Single Column */
    .form-row {
        grid-template-columns: 1fr !important;
    }

    /* Contact Container Stack */
    .contact-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}
/* ==================== BOTTLE SCROLL TO TOP BUTTON ==================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 90px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 10px rgba(255, 180, 0, 0.3));
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn .bottle-svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.scroll-top-btn:hover {
    filter: drop-shadow(0 0 20px rgba(255, 180, 0, 0.85));
    transform: translateY(-6px) scale(1.08);
}

.scroll-top-btn:hover .bottle-svg path:nth-child(4) {
    animation: bottleArrowPulse 1s infinite alternate;
}

@keyframes bottleArrowPulse {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 78px;
    }
}
/* 1. Hero Particle Overlay (Keeps Hero Image Intact) */
#hero {
    position: relative;
    overflow: hidden;
}

#heroParticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Ensures Hero Content stays on top of particles */
.hero-content, .hero-container {
    position: relative;
    z-index: 2;
}

/* 2. 3D Glass Tilt Card Base */
.info-card, .contact-form-col {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    will-change: transform;
}

/* 3. Gold Glow Cursor Trail */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: #ffb400;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    box-shadow: 0 0 10px #ffb400, 0 0 20px #ffb400;
}

.cursor-glow {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.18) 0%, rgba(255, 180, 0, 0) 70%);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.05s ease-out;
}

/* Hide custom cursor on touch screens */
@media (max-width: 768px) {
    .custom-cursor, .cursor-glow {
        display: none !important;
    }
}
/* ================= ESTIMATOR WIDGET ================= */
.estimator-section, .drinks-section, .faq-section {
    padding: 80px 0;
}

.glass-card {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 180, 0, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.slider-container {
    margin-bottom: 30px;
    text-align: center;
}

.slider-container label {
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.gold-slider {
    width: 100%;
    max-width: 500px;
    accent-color: #ffb400;
    cursor: pointer;
}

.estimator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.result-card h3 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

/* ================= DRINKS SHOWCASE ================= */
.menu-tabs {
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 180, 0, 0.3);
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background: #ffb400;
    color: #000;
    font-weight: 600;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.drink-card {
    position: relative;
}

.drink-badge {
    background: rgba(255, 180, 0, 0.2);
    color: #ffb400;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.drink-info h3 {
    margin: 12px 0 8px 0;
    font-size: 1.3rem;
}

/* ================= FAQ ACCORDION ================= */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: #fff;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 25px;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px 25px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    color: #ffb400;
}

.faq-question .icon {
    transition: transform 0.3s;
    font-size: 1.5rem;
}
/* ================= LUXURY ESTIMATOR FIX ================= */
.estimator-section {
    padding: 90px 0;
}

.gold-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.estimator-box {
    max-width: 900px;
    margin: 40px auto 0;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 180, 0, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 180, 0, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
}

.slider-container label {
    font-size: 1.25rem;
    color: #e0e0e0;
    display: block;
    margin-bottom: 20px;
}

.gold-highlight {
    color: #ffb400;
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 8px;
}

.gold-slider {
    width: 100%;
    max-width: 600px;
    height: 6px;
    border-radius: 5px;
    background: #333;
    outline: none;
    accent-color: #ffb400;
}

.estimator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #ffb400;
    margin-bottom: 5px;
    text-shadow: 0 0 12px rgba(255, 180, 0, 0.25);
}

.stat-label {
    color: #aaa;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* WhatsApp Luxury Button Fix */
.estimator-action {
    margin-top: 30px;
}

.gold-btn-wa, .gold-btn-wa:visited {
    display: inline-block;
    background: linear-gradient(135deg, #ffe28a 0%, #ffb400 100%);
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
}

.gold-btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 180, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #ffb400 100%);
}
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* ==========================================
   MOBILE RESPONSIVE FIXES (Max Width 768px)
   ========================================== */
@media screen and (max-width: 768px) {
  
  /* 1. Prevent Horizontal Scroll / Cut issue */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* 2. Hero Title Fix */
  .contact-section h1,
  .hero-section h1, 
  h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }

  /* 3. Company Name / Subtitle Fix */
  .hero-section h2,
  .hero-section p,
  .subtitle {
    font-size: 0.95rem !important;
    padding: 0 10px !important;
  }

  /* 4. Hero Background Image Fix */
  .hero-section,
  #home {
    background-size: cover !important;
    background-position: center center !important;
    padding: 80px 15px 40px 15px !important;
    min-height: auto !important;
  }

  /* 5. Hero Buttons Stack vertically */
  .hero-btns,
  .btn-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .hero-btns a, 
  .hero-btns button {
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
  }

  /* 6. Stats Grid (12+ Years, 500+ Events) Fix */
  .stats-container,
  .counter-grid,
  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    padding: 10px 5px !important;
  }

  .stat-card,
  .counter-box {
    padding: 10px 5px !important;
    min-width: 0 !important;
  }

  .stat-card h3,
  .counter-box h3 {
    font-size: 1.3rem !important;
  }

  .stat-card p,
  .counter-box p {
    font-size: 0.75rem !important;
  }
}
/* ==========================================
   MOBILE RESPONSIVE FIXES (FINAL ACCURATE)
   ========================================== */
@media screen and (max-width: 768px) {
  
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* -------------------------------------------
     1. HERO SECTION & BACKGROUND IMAGE FIT FIX
     ------------------------------------------- */
  .hero-section,
  #home {
    /* Image ko exact scale karke center mein bilkul fit karein */
    background-size: cover !important;
    background-position: 75% center !important; /* Image ko right push karke face center mein layega */
    background-repeat: no-repeat !important;
    
    padding-top: 130px !important;
    padding-bottom: 30px !important;
    min-height: auto !important;
  }

  .hero-section h1, h1 {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
    padding: 0 5px !important;
  }

  .hero-section .subtitle, 
  .hero-subtitle {
    font-size: 0.95rem !important;
  }

  .hero-section p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }

  /* -------------------------------------------
     2. COUNTER BUTTONS / CARDS CUTTING FIX
     ------------------------------------------- */
  /* Teeno stats boxes screen ke andar fit karne ke liye vertical stack */
  .stats-container,
  .counter-grid,
  .stats-grid,
  .hero-stats,
  div[class*="stat"] {
    display: flex !important;
    flex-direction: column !important; /* Single column layout for mobile */
    gap: 12px !important;
    width: 90% !important;
    margin: 25px auto 0 auto !important;
    padding: 0 !important;
  }

  .stat-card,
  .counter-box,
  .stat-item,
  div[class*="stat"] > div {
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px !important;
    margin: 0 !important;
  }

  .stat-card h3, 
  .counter-box h3 {
    font-size: 1.6rem !important;
  }

  .stat-card p, 
  .counter-box p {
    font-size: 0.85rem !important;
  }
}