:root {
    --primary-gold: #F8B459;
    --secondary-gold: #e2a856;
    --accent-orange: #ed8936;
    --cream: #fffaf5;
    --soft-peach: #FFF0E0;
    --dark-navy: #0b1121;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --text-white: #ffffff;
    
    /* Premium Gradients */
    --premium-linear: linear-gradient(135deg, #fffaf5 0%, #FFF0E0 50%, #F8B459 100%);
    --premium-gold: linear-gradient(180deg, #F8B459 0%, #e2a856 100%);
    --vibrant-mesh: radial-gradient(at 0% 0%, rgba(248, 180, 89, 0.15) 0px, transparent 50%),
                    radial-gradient(at 100% 0%, rgba(237, 137, 54, 0.1) 0px, transparent 50%),
                    radial-gradient(at 100% 100%, rgba(255, 250, 245, 1) 0px, transparent 50%);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}





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

body {
    font-family: var(--font-body);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

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

/* Header */
header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-nav);
    transition: color 0.3s;
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    list-style: none;
    padding: 15px 0;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0 !important;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0 !important;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: var(--primary-gold);
}

.dropdown i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover i {
    transform: rotate(180deg);
}


.btn-call, .btn-gold {
    background: #F6AD55;
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    border: 2px solid #000;
}

.btn-call:hover, .btn-gold:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}



/* Hero Section */
.hero {
    padding: 80px 0;
    background: #fff;
}

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

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    color: #000;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-content h1 span {
    display: block;
    color: #F8B459; /* Matching the orange gold from the image */
    font-size: 0.8em;
}


.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-hero, .btn-primary {
    background: #F6AD55 !important;
    color: #000 !important;
    padding: 15px 45px;
    border-radius: 100px;
    border: 2px solid #000 !important;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover, .btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
}

.btn-hero::after, .btn-primary::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
}



.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 50px 100px rgba(248, 180, 89, 0.2);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: translateY(-10px);
}


/* Story Section */
.story-section {
    background: linear-gradient(135deg, #fff 30%, #fbd38d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.story-section .hero-grid {
    align-items: center;
}

.story-section h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

/* Removed redundant btn-story styles */


.story-image-container {
    position: relative;
}

.story-star {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    z-index: 2;
}

/* Common Section Styles */

.section-peach {
    background: var(--cream);
    background-image: var(--vibrant-mesh);
    padding: 80px 0;
    position: relative;
}

.section-gold {
    background: var(--premium-gold);
    padding: 80px 0;
    color: #fff;
    position: relative;
    box-shadow: inset 0 20px 40px rgba(0,0,0,0.05);
}

.section-gold::after {
    display: none; /* Removed the harsh clip-path */
}

/* Smooth Section Transitions */
section + section {
    border-top: 1px solid rgba(248, 180, 89, 0.1);
}



.faq-item {
    background: #fff;
    color: var(--text-dark);
    padding: 25px 35px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(248, 180, 89, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(248, 180, 89, 0.05);
}

.faq-item:hover {
    background: #fff;
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(248, 180, 89, 0.1);
    transform: translateY(-2px);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(248, 180, 89, 0.1);
}

.faq-item i {
    transition: transform 0.4s ease;
    color: var(--primary-gold);
}

.faq-item.active i {
    transform: rotate(180deg);
}



.faq-item strong {
    font-size: 1.1rem;
    font-family: var(--font-body);
}

/* Join Us Section */
.join-us-box {
    background: #2D2D2D;
    color: #fff;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 500px;
}

/* Removed redundant btn-ig styles */


.social-icons-row {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.bg-fb { background: #1877F2; }
.bg-yt { background: #FF0000; }
.bg-tt { background: #000000; }


.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 30px;
}


/* Music Player Enhancements */
.text-gold {
    background: linear-gradient(to bottom, #F9F295, #F8B459, #B88A44, #8B6c28);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.ctt-slider {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.ctt-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #F9F295;
    cursor: pointer;
    margin-top: -5px;
    box-shadow: 0 0 10px rgba(248, 180, 89, 0.5);
    transition: transform 0.1s;
}

.ctt-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.ctt-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 0.5; transform: scale(1); }
}

.animate-pulse-slow {
    animation: pulse-glow 5s infinite ease-in-out;
}

/* Footer */
footer {
    background-color: var(--dark-navy);
    padding: 80px 0 20px;
    color: #fff;
}



.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-links h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: #000;
}

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

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .stats .container > div {
        flex-wrap: wrap;
        justify-content: center !important;
    }
    .stat-item h2 {
        font-size: 2.2rem;
    }
    .hero-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 10px 20px !important;
    }
    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns, .social-icons-row {
        justify-content: center;
    }
    .stats .container > div {
        flex-direction: column;
        align-items: center !important;
        gap: 20px !important;
    }
    .stats .container > div > div:first-child {
        max-width: 100% !important;
        text-align: center !important;
    }
    .stats .container > div > div:last-child {
        flex-direction: column !important;
        width: 100% !important;
        padding: 30px !important;
        border-radius: 40px !important;
    }
    .stat-item {
        margin-bottom: 20px;
    }
    .stats .container > div > div:last-child div[style*="width: 1px"] {
        width: 80% !important;
        height: 1px !important;
        margin: 10px 0;
    }
    .join-us-box {
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }
    .section-title {
        font-size: 2.5rem !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
    }
    .footer-about p {
        margin-left: auto;
        margin-right: auto;
    }
    .social-links {
        justify-content: center;
    }
    
    /* Music section specific fixes */
    .song-container .relative.flex-col {
        padding: 20px !important;
    }
    
    /* Navigation Toggle */
    nav.hidden.md\:block {
        display: none !important;
    }
    
    #mobile-menu-btn {
        display: block !important;
    }

    #mobile-nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 40px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
        text-align: center;
        flex-direction: column;
        gap: 20px;
    }

    #mobile-nav.active {
        display: flex;
    }

    #mobile-nav li {
        list-style: none;
    }

    #mobile-nav a {
        font-size: 1.2rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #000;
        text-decoration: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2rem !important;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    .container {
        padding: 0 20px;
    }
    .stat-item h2 {
        font-size: 1.8rem;
    }
    #mapHolder .relative {
        height: 350px !important;
    }
    /* Grid adjustments for products */
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    /* Grid adjustments for help section */
    .help-section div[style*="justify-content: flex-end"] {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}

#mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
    padding: 5px;
    z-index: 1001;
}

#mobile-menu-btn:focus {
    outline: none;
}

#mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

#mobile-nav.active {
    display: flex;
    max-height: 500px;
}

@media (max-width: 768px) {
    #mobile-menu-btn {
        display: block;
    }
}

