:root {
    --color-black: #050505;
    --color-gold: #c5a059;
    --color-gold-light: #e6d19a;
    --color-gold-dark: #8e6d31;
    --color-white: #ffffff;
    --color-gray: #a8a8a8;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --gold-gradient: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-light) 50%, var(--color-gold-dark) 100%);
    --gold-text-gradient: linear-gradient(to bottom, #f1e09a 0%, #c5a059 50%, #8e6d31 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Hide default for custom */
}

/* Custom Cursor */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.cursor-sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 14px;
    animation: sparkleAnim 0.8s ease-out forwards;
}

@keyframes sparkleAnim {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(0) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(1.2) rotate(180deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.gold-text {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 65px;
    /* Reduced for better balance */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    color: var(--color-white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-list a:hover {
    opacity: 1;
}

.header-star-btn {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.header-star-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
}

.star-icon {
    color: #000;
    /* Black star */
    font-size: 1.8rem;
    line-height: 1;
}

/* Hero Section - Box Design */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('generated-image (6).jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 2rem 50px 2rem;
    /* Increased top padding to avoid header overlap */
}

.hero-container {
    width: 100%;
    max-width: 900px;
}

.hero-box {
    background: transparent;
    /* Fully transparent */
    backdrop-filter: blur(7px);
    /* Reduced an additional 2% to 7px total */
    -webkit-backdrop-filter: blur(7px);
    border: 2px solid var(--color-gold);
    padding: 3rem 2rem 0 2rem;
    display: flex;
    /* Use flexbox for perfect centering */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInScale 1.2s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-box-header {
    text-transform: none;
    letter-spacing: 1px;
    font-size: 0.9rem;
    /* Increased 10% from 0.82rem */
    font-weight: 700;
    /* Made bold */
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 2rem;
    text-decoration: none;
}

.hero-box-center-logo {
    display: inline-block;
    width: 700px;
    /* Significantly increased for better visibility */
    height: 168px;
    /* Significantly increased for better visibility */
    background: #ffffff;
    /* Solid white logo */
    -webkit-mask-image: url('logo.png');
    mask-image: url('logo.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    margin-bottom: 2rem;
    margin-left: -40px;
    /* Shifted left */
}

.hero-box-tagline {
    font-size: 1.8rem;
    /* Slightly smaller for height reduction */
    margin-bottom: 2rem;
    /* Reduced gap */
    font-family: var(--font-heading);
    text-decoration: none;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    /* Ensure gradient works on block content */
}

/* Integrated Marquee - At Bottom */
.hero-marquee {
    background: var(--gold-gradient);
    padding: 1.1rem 0;
    /* Reduced 25% */
    width: calc(100% + 4rem);
    /* Match negative margins for absolute fit */
    margin: 0 -2rem;
    /* No top/bottom margin, fits box bottom */
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    width: max-content;
    /* Ensure container fits items */
    animation: marqueeScroll 20s linear infinite;
    /* Adjusted to 20s for smooth speed */
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-logo {
    height: 30px;
    /* Reduced 25% from 40px */
    width: auto;
    margin: 0 0.5rem;
    filter: brightness(0);
}

.marquee-tagline {
    color: var(--color-black);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    /* Reduced 25% from 1rem */
    letter-spacing: 2px;
    padding: 0;
    /* No distance */
}

.star-sep {
    color: var(--color-black);
    opacity: 0.5;
}

.btn-main-gold {
    background: var(--gold-gradient);
    color: var(--color-black);
    padding: 1rem 2.8rem;
    margin-bottom: 2rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 8px;
    /* Curved corners */
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-main-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
}

/* Why The GuestList Co? Section */
.why-glc-section {
    padding: 5rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Center alignment for the section content */
}

.why-container {
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2.5rem;
    justify-content: center;
    align-items: stretch;
}

.why-item {
    background: rgba(10, 10, 10, 0.5);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 12px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.why-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.1);
    background: rgba(15, 15, 15, 0.8);
}

.why-header {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-gold);
    line-height: 1.3;
}

.why-item p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.8;
    flex-grow: 1;
}

/* Slide Animations */
.reveal-slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
}

.reveal-slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
}

.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.revealed {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Section Common */
.section-tag {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 5px;
    display: block;
    margin-bottom: 1rem;
}

.section-title-alt {
    text-align: center;
    font-size: 2.44rem;
    /* Matched to .about-title */
    margin-bottom: 2.5rem;
}

/* About the Company Section */
.about-section {
    padding: 5rem 0 10rem 0;
    /* Reduced top padding by 50% */
    text-align: center;
    background: #050505;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-title {
    font-family: var(--font-heading);
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.44rem;
    /* Increased 20% from 2.03rem */
    text-transform: none;
    text-decoration: underline;
    text-underline-offset: 10px;
    margin-bottom: 5rem;
    display: inline-block;
}

.about-main-text {
    font-size: 1.56rem;
    /* Increased 20% from 1.3rem */
    line-height: 1.8;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-secondary-text {
    font-size: 1.44rem;
    /* Increased 20% from 1.2rem */
    line-height: 1.6;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Quote Section */


/* Visual Features Grid */
/* End Why Section */

.feature-center {
    flex: 0 0 auto;
}

.feature-center-img {
    width: 350px;
    height: 500px;
    object-fit: cover;
    border: 1px solid var(--color-gold);
    padding: 15px;
}

/* Team Section */
.team-section {
    padding: 10rem 0;
    background: #0a0a0a;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.team-card {
    background: #111;
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 400px;
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.team-label-gold {
    position: absolute;
    top: 2rem;
    right: -1rem;
    background: var(--gold-gradient);
    color: var(--color-black);
    padding: 1rem 0.5rem;
    writing-mode: vertical-rl;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.team-info {
    padding: 3rem;
    background: #111;
}

.team-role {
    font-size: 0.8rem;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.team-name {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.team-desc {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.btn-card-more {
    background: var(--gold-gradient);
    color: var(--color-black);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 8px;
}

/* Contact Info Bar */
.contact-info-bar {
    background: var(--gold-gradient);
    padding: 3rem 0;
    color: var(--color-black);
}

.contact-info-container {
    display: flex;
    justify-content: space-around;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0 10rem 0;
}

.contact-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-input-alt {
    background: #111;
    border: none;
    border-bottom: 1px solid #333;
    padding: 1rem;
    color: white;
    font-family: var(--font-body);
    width: 100%;
}

.form-input-alt:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-textarea-alt {
    background: #111;
    border: none;
    border-bottom: 1px solid #333;
    padding: 1.5rem;
    color: white;
    font-family: var(--font-body);
    width: 100%;
    height: 120px;
    margin-bottom: 2rem;
    resize: none;
}

.form-textarea-alt:focus {
    outline: none;
    border-color: var(--color-gold);
}

.btn-submit-gold {
    background: var(--gold-gradient);
    color: var(--color-black);
    padding: 1.5rem;
    width: 100%;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 2px;
    border-radius: 8px;
}

/* New Split Layout for Contact */
.contact-split-layout {
    display: flex;
    align-items: stretch;
    gap: 0;
    /* Removed gap to make them touch or close */
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.contact-map-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    /* Match theme or image bg */
}

.contact-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures the whole map is visible */
    object-position: center;
    display: block;
}

.contact-form-container {
    flex: 1.2;
    /* Save some space for form */
    padding: 3rem;
    background: #0a0a0a;
}


/* New Footer Styles */
.footer {
    padding: 3rem 0 1rem 0;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    color: var(--color-gray);
    background: #000;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-socials a {
    color: var(--color-white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.footer-socials a:hover {
    background: var(--color-gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-logo-wrapper {
    margin-bottom: 0.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0.9);
}

.footer-email {
    color: var(--color-gold);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: var(--color-white);
    border-color: var(--color-white);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 1rem;
}

/* Static Footer Buttons Row */
.footer-bottom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

/* Desktop Layout */
.footer-call {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    order: 1;
}

.footer-chat {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    order: 3;
}

.footer-star-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
}

.footer-copyright {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    order: 4;
    margin-top: 1.5rem;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 0;
}

.static-footer-btn {
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-gold);
}

.chat-btn {
    color: #fff;
    background: transparent;
    border-color: #25D366;
}

.chat-btn:hover {
    background: #25D366;
    color: #000;
}

.call-btn {
    color: var(--color-gold);
    background: transparent;
}

.call-btn:hover {
    background: var(--color-gold);
    color: #000;
}

.static-footer-star {
    width: 45px;
    height: 45px;
    background: var(--color-gold-dark);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    border: 1px solid var(--color-gold);
    transition: all 0.3s ease;
}

.static-footer-star:hover {
    background: var(--color-gold);
    transform: translateY(-5px);
}

.star-jump {
    display: inline-block;
    animation: jumpStar 2s infinite ease-in-out;
}

@keyframes jumpStar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Floating Elements (Sidebar only now) */
/* Right Side Socials */
.side-socials {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1000;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px 0 0 10px;
    backdrop-filter: blur(5px);
}

.side-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #111;
    color: var(--color-gold);
    border-radius: 5px;
    transition: all 0.3s;
    border: 1px solid var(--color-gold);
}

.side-icon svg {
    width: 18px;
    height: 18px;
}

.side-icon:hover {
    background: var(--color-gold);
    color: #000;
    transform: translateX(-5px);
}

/* Bottom Sticky Buttons */
.sticky-pill-btn {
    position: fixed;
    bottom: 2rem;
    padding: 0.8rem 1.5rem;
    background: var(--color-gold);
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sticky-pill-btn:hover {
    background: #000;
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.btn-left {
    left: 2rem;
    background: #25D366;
    /* WhatsApp Green */
    color: #fff;
}

.btn-left:hover {
    background: #128C7E;
    color: #fff;
    border-color: #25D366;
}

.btn-right {
    right: 2rem;
}

.float-top {
    position: fixed;
    bottom: 6rem;
    /* Above the call button */
    right: 2rem;
    background: var(--color-gold-dark);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--color-gold);
}

.float-top:hover {
    background: var(--color-gold);
    transform: translateY(-5px);
}

.top-star {
    font-size: 1.2rem;
}

/* Responsive */
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Our Event Universe Section */
.universe-section {
    padding: 8rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.universe-title {
    font-size: 2.5rem;
    letter-spacing: 8px;
    margin-bottom: 5rem;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.universe-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
}

#universe-content {
    scroll-margin-top: 15vh;
    /* Adjustable offset to center content */
}

.universe-left-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.universe-box {
    background: var(--gold-gradient);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #000;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.universe-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4);
}

.universe-box h3 {
    color: #000000;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    font-weight: 800;
}

.universe-box .tagline {
    color: #000000;
    opacity: 1;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.4;
    font-style: italic;
}

.universe-box ul {
    list-style: none;
    padding: 0;
}

.universe-box ul li {
    color: #000000;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 700;
    /* Increased weight for clarity */
}

.universe-box ul li::before {
    content: '•';
    color: #000;
    font-weight: 900;
}

.shhhh-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gold-gradient);
    color: #000;
    border: none;
}

.shhhh-box h3 {
    color: #000;
}

.shhhh-box .tagline {
    color: #000;
}

.btn-unlock-access {
    background: #8B0000;
    /* Deep Red */
    color: #fff;
    padding: 12px 45px;
    border-radius: 35px;
    /* Oval shape */
    text-decoration: none;
    font-weight: 700;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border: 2px solid transparent;
}

.btn-unlock-access:hover {
    background: #B22222;
    box-shadow: 0 0 25px rgba(139, 0, 0, 0.6);
    transform: scale(1.05);
}

/* Sparkle Effect */
.sparkle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: sparkleOut 1s forwards ease-out;
}

@keyframes sparkleOut {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(1.5);
        opacity: 0;
    }
}

.secret-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 800;
}

.universe-right-box {
    background: #050505;
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    color: var(--color-gold);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.1);
}

.universe-right-box ul {
    list-style: none;
    padding: 0;
}

.universe-right-box ul li {
    margin-bottom: 1.2rem;
    color: var(--color-gold);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
}

.universe-right-box ul li:hover {
    transform: translateX(10px);
    text-shadow: 0 0 10px var(--color-gold);
}

.check-icon {
    color: #000;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 4px;
    background: var(--color-gold);
}

/* Lily Decorations */
.lily-decor {
    position: absolute;
    width: 80px;
    height: 80px;
    color: var(--color-gold);
    opacity: 0.3;
    pointer-events: none;
    animation: lilyFloat 6s infinite ease-in-out;
    z-index: 1;
}

.lily-top-left {
    top: 20px;
    left: 20px;
}

.lily-top-right {
    top: 20px;
    right: 20px;
    transform: rotate(90deg);
}

.lily-bottom-left {
    bottom: 20px;
    left: 20px;
    transform: rotate(-90deg);
}

.lily-bottom-right {
    bottom: 20px;
    right: 20px;
    transform: rotate(180deg);
}

@keyframes lilyFloat {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rot, 0deg));
    }

    50% {
        transform: translateY(-15px) rotate(var(--rot, 0deg));
    }
}

.lily-top-right {
    --rot: 90deg;
}

.lily-bottom-left {
    --rot: -90deg;
}

.lily-bottom-right {
    --rot: 180deg;
}

/* Universe Ornament for Blank Space */
.universe-ornament {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    text-align: center;
}

.universe-ornament svg {
    width: 120px;
    margin: 0 auto;
    animation: shimmerGlow 4s infinite ease-in-out;
}

@keyframes shimmerGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
        filter: drop-shadow(0 0 2px transparent);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px var(--color-gold));
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 4rem;
    }

    .features-visual {
        flex-direction: column;
        gap: 4rem;
    }

    .features-col.left,
    .features-col.right {
        text-align: center;
    }

    .features-col.left .feature-item h3 {
        justify-content: center;
    }

    .features-col.left .feature-item p {
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .hero-box-center-logo {
        width: 500px;
        height: 120px;
        margin-left: 0;
    }

    .hero-box-tagline {
        font-size: 1.4rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-main-text {
        font-size: 1.3rem;
    }

    .about-secondary-text {
        font-size: 1.2rem;
    }

    .universe-layout {
        grid-template-columns: 1fr;
    }

    /* Mobile Menu for Tablet & Mobile */
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #050505;
        z-index: 1000;
        transition: 0.5s;
        padding: 100px 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-list a {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* Menu styles moved to 991px for broader support */

    .hero {
        padding: 120px 1rem 40px 1rem;
    }

    .hero-box {
        padding: 2rem 1.5rem 0 1.5rem;
    }

    .hero-box-header {
        font-size: 0.75rem;
    }

    .hero-box-center-logo {
        width: 400px;
        height: 96px;
        margin-left: 0;
    }

    .hero-box-tagline {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .about-section {
        padding: 3rem 0 6rem 0;
    }

    .about-title {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }

    .about-main-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .about-secondary-text {
        font-size: 1rem;
    }

    .section-title-alt {
        font-size: 2.5rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Adjustments for Floating Elements */
    .sticky-pill-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        bottom: 1.5rem;
    }

    .btn-left {
        left: 1rem;
    }

    .btn-right {
        right: 1rem;
    }

    .float-top {
        right: 1rem;
        bottom: 5rem;
    }

    .side-socials {
        /* Ensure visible and properly positioned on mobile */
        position: fixed !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0.4rem;
        gap: 0.4rem;
        z-index: 9999 !important;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 10px 0 0 10px;
    }

    .side-icon {
        width: 38px;
        height: 38px;
    }

    .side-icon svg {
        width: 20px;
        height: 20px;
    }


    .contact-split-layout {
        flex-direction: column;
    }

    .contact-map-container {
        height: 300px;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    /* Mobile-specific ordering */
    .footer-call {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-chat {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-star-wrapper {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-copyright {
        order: 4;
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        margin-top: 0;
    }

    .static-footer-star {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin: 0 auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gold-bar {
        flex-direction: column;
        gap: 3rem;
    }

    .universe-title {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }

    .universe-left-grid {
        grid-template-columns: 1fr;
    }
}

/* Starry Night Effect */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: transparent;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle var(--duration) infinite ease-in-out;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Section Specific Stars & Moving Stars */
.about-section {
    position: relative;
    overflow: hidden;
    /* Contain stars */
}

.section-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.moving-star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    animation: drift var(--duration) linear infinite;
}

@keyframes drift {
    from {
        transform: translateX(0) translateY(0);
    }

    to {
        transform: translateX(100px) translateY(50px);
    }
}

.shooting-star {
    position: absolute;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, white, transparent);
    opacity: 0;
    animation: shoot var(--duration) ease-in infinite;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0) rotate(-45deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    20% {
        transform: translateX(-500px) translateY(500px) rotate(-45deg);
        opacity: 0;
    }

    100% {
        transform: translateX(-500px) translateY(500px) rotate(-45deg);
        opacity: 0;
    }
}