/* Global Styles - Solenyx Premium Theme */
:root {
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --bg-dark: #020202;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

body.light-mode {
    --dark-bg: #F5F7FA;
    --card-bg: #FFFFFF;
    --text-color: #2D3748;
    --heading-color: #1A202C;
    --overlay-color: rgba(255, 255, 255, 0.95);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --bg-overlay: linear-gradient(0deg, var(--dark-bg) 0%, rgba(255, 255, 255, 0.8) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Solenyx Premium Utilities */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .03;
    z-index: 10;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.premium-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.premium-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

/* Force Vapi widget visibility */
[id^="vapi"],
[class*="vapi"],
div[style*="position: fixed"][style*="bottom"],
div[style*="position:fixed"][style*="bottom"] {
    z-index: 99999 !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* Typography Helpers */
.highlight {
    color: var(--primary-gold);
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.separator {
    height: 3px;
    width: 80px;
    background: var(--gold-gradient);
    margin: 20px 0;
    border-radius: 2px;
}

.separator.centered {
    margin: 20px auto;
}

/* Icons */
.gold-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.5);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--primary-gold);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 5px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    background-image: radial-gradient(#D4AF37 1px, transparent 1px), radial-gradient(#D4AF37 1px, #000000 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--dark-bg) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Intro Section */
.intro {
    background-color: var(--dark-bg);
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #aaa;
}

/* Packages Section */
.packages {
    background-color: #0f0f0f;
    position: relative;
}

.package-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid #222;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.5s ease;
}

.package-card:hover::before {
    height: 100%;
}

.package-card.reverse {
    flex-direction: row-reverse;
}



.package-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.package-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.package-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--primary-gold);
    margin-top: 5px;
}

.package-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 800px;
}

/* Feature Lists & Sub Packages */
.sub-packages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sub-package {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    border-left: 2px solid #333;
}

.sub-package h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.sub-package.highlight {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.sub-package p {
    font-size: 0.95rem;
    color: #bbb;
}

.feature-list {
    display: grid;
    gap: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
}

.feature-list strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

/* Ultimate Card Grid */
.ultimate-card .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-item h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #aaa;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    border-top: 1px solid #222;
}

.why-us-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Footer */
.footer {
    background: #000;
    padding: 50px 0 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-logo span {
    color: var(--primary-gold);
    letter-spacing: 3px;
    font-weight: 600;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact a {
    color: #ccc;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    color: #555;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px;
    }

    .nav-menu {
        gap: 15px;
        margin: 10px 0;
    }

    .logo-container {
        margin: 10px 0;
        order: -1;
        /* Keep logo at top on mobile */
    }

    .header {
        padding: 10px 0;
    }

    .logo-img {
        height: 50px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .package-card,
    .package-card.reverse {
        flex-direction: column;
        padding: 30px 20px;
    }



    .sub-packages,
    .ultimate-card .features-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* About Us Section Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 20px;
}

/* New Why Us Styles */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.why-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.why-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.why-item h3 {
    color: #fff;
    margin-bottom: 10px;
}

.why-item p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #1a1a1a;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid var(--primary-gold);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-gold);
}

.modal-title {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 2rem;
    text-align: center;
}

.modal-desc {
    color: #ccc;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
}

.full-width {
    width: 100%;
    margin-top: 10px;
}

.mt-5 {
    margin-top: 50px;
}


/* Light Mode Overrides for Specific Areas */
/* Light Mode Overrides for Specific Areas */
body.light-mode .hero {
    background-image:
        radial-gradient(#C49F27 1px, transparent 1px),
        radial-gradient(#C49F27 1px, #F5F7FA 1px);
}

body.light-mode .hero-overlay {
    background: linear-gradient(0deg, #F5F7FA 0%, rgba(255, 255, 255, 0.2) 100%);
}

body.light-mode .hero-title {
    color: #1A202C;
    text-shadow: none;
}

body.light-mode .hero-subtitle {
    color: #4A5568;
}

body.light-mode .section-title,
body.light-mode .package-title {
    color: #1A202C;
}

body.light-mode .sub-package {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-left: 3px solid #CBD5E0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

body.light-mode .sub-package h4 {
    color: #2D3748;
}

body.light-mode .sub-package p,
body.light-mode .package-desc,
body.light-mode .feature-list strong,
body.light-mode .why-item h3,
body.light-mode .form-group label {
    color: #4A5568;
}

body.light-mode .why-item p,
body.light-mode .feature-item p {
    color: #718096;
}

body.light-mode .sub-package.highlight {
    background: #FFFBF0;
    /* Light gold tint */
    border-color: #D4AF37;
}

body.light-mode .feature-item,
body.light-mode .why-item {
    background: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

body.light-mode .feature-item:hover,
body.light-mode .why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

body.light-mode .package-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-mode .header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

body.light-mode .navbar .nav-menu li a {
    color: #2D3748;
    font-weight: 600;
}

body.light-mode .navbar .nav-menu li a:hover {
    color: #D4AF37;
}

/* Updated Footer for Light Mode - Keeping it Dark */
body.light-mode .footer {
    background: #1A202C;
    border-top: 1px solid #2D3748;
    color: #CBD5E0;
}

body.light-mode .packages,
body.light-mode .why-us {
    background: #F5F7FA;
    border-top: 1px solid #E2E8F0;
}

body.light-mode .footer-logo span {
    color: #D4AF37;
}

body.light-mode .footer-contact a {
    color: #A0AEC0;
}

body.light-mode .footer-contact a:hover {
    color: #D4AF37;
}

body.light-mode .footer-bottom {
    border-top: 1px solid #2D3748;
    color: #718096;
}

/* Form Styles Override in Light Mode */
body.light-mode .modal-content {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

body.light-mode .modal-title {
    color: #1A202C;
}

body.light-mode .modal-desc {
    color: #718096;
}

body.light-mode .form-group input,
body.light-mode .form-group textarea {
    background: #F7FAFC;
    border: 1px solid #E2E8F0;
    color: #2D3748;
}

body.light-mode .form-group input:focus,
body.light-mode .form-group textarea:focus {
    border-color: #D4AF37;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

body.light-mode .close-modal {
    color: #718096;
}

body.light-mode .close-modal:hover {
    color: #D4AF37;
}



/* Theme Switcher Styles */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
    margin-bottom: 0;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #333;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    border: 1px solid var(--primary-gold);
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
    border-radius: 50%;
    z-index: 2;
}

input:checked+.slider {
    background-color: #ccc;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider .fa-sun {
    color: #f39c12;
    font-size: 14px;
}

.slider .fa-moon {
    color: #f1c40f;
    font-size: 14px;
}

.round {
    border-radius: 34px;
}

.round:before {
    border-radius: 50%;
}