@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;700;900&display=swap');

/* ========================================
   CSS VARIABLES & RESET
======================================== */
:root {
    --black: #000000;
    --deep-black: #0a0a0b;
    --gold: #D4AF37;
    --rich-gold: #FFD700;
    --champagne: #F4E4A6;
    --ivory: #FAF9F6;
    --pearl: #F8F6F0;
    --glass-bg: rgba(212, 175, 55, 0.08);
    --glass-border: rgba(212, 175, 55, 0.25);
    --text-light: #FAF9F6;
    --text-dark: #000000;
    --text-muted: #666666;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #D4AF37 25%, #F4E4A6 50%, #D4AF37 75%, #FFD700 100%);
    --gradient-black: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    --gradient-premium: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #F4E4A6, #FFD700);
    --font-tech: 'Orbitron', monospace;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --shadow-luxury: 0 20px 60px rgba(212, 175, 55, 0.4);
    --shadow-premium: 0 30px 80px rgba(255, 215, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ivory);
    color: var(--text-dark);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ========================================
   GLOBAL COMPONENTS & ANIMATIONS
======================================== */

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(244, 228, 166, 0.04) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.01) 50%, transparent 60%);
    animation: luxuryShift 25s ease-in-out infinite;
}
@keyframes luxuryShift {
    0%, 100% { transform: translateX(0) translateY(0) scale(1) rotate(0deg); filter: hue-rotate(0deg); }
    25% { transform: translateX(-30px) translateY(-20px) scale(1.05) rotate(1deg); filter: hue-rotate(10deg); }
    50% { transform: translateX(20px) translateY(-30px) scale(0.95) rotate(-1deg); filter: hue-rotate(-5deg); }
    75% { transform: translateX(-10px) translateY(15px) scale(1.02) rotate(0.5deg); filter: hue-rotate(15deg); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   HEADER
======================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.header-scrolled {
    padding: 1rem 0;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(40px) saturate(200%);
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.15);
    border-bottom: 2px solid var(--gold);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    position: relative;
    transition: all 0.4s ease;
}
.logo img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: drop-shadow(0 10px 20px rgba(212, 175, 55, 0.3));
}
.logo:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 15px 30px rgba(255, 215, 0, 0.5));
}
.logo::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
}
.logo:hover::after {
    opacity: 1;
    animation: logoRipple 0.6s ease-out;
}
@keyframes logoRipple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}
.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
}
.nav-links a::before {
    content: '';
    position: absolute;
    top: 0; left: -10px; right: -10px; bottom: 0;
    background: var(--gradient-gold);
    border-radius: 20px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.4s ease;
    z-index: -1;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-premium);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 2px;
}
.nav-links a:hover::before { opacity: 0.1; transform: scaleX(1); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); transform: translateY(-2px); text-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); }

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.cart-icon {
    position: relative;
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
}
.cart-icon:hover { transform: scale(1.1); color: var(--rich-gold); }
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1002;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 0.5rem;
}
.mobile-toggle span {
    display: block;
    width: 1.25rem;
    height: 0.125rem;
    background: var(--gold);
    margin: 0.1875rem 0;
    transition: 0.3s;
    border-radius: 0.125rem;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(0.25rem, 0.25rem); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(0.25rem, -0.25rem); }

/* ========================================
   MAIN CONTENT & PAGE STRUCTURE
======================================== */
.main-content {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 8rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.page-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    padding: 4rem 0;
}
.page-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: var(--gradient-premium);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.8);
    letter-spacing: -1px;
}
.page-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    font-style: italic;
    font-family: var(--font-serif);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.last-updated {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 4rem;
    text-align: center;
    backdrop-filter: blur(20px);
}
.last-updated p {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========================================
   CONTENT BOX (FOR TERMS & PRIVACY)
======================================== */
.content-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 4rem;
    margin-bottom: 4rem;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}
.content-box:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-luxury);
}
.content-box-title {
    font-family: var(--font-tech);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    margin-top: 3rem;
    letter-spacing: 1px;
    position: relative;
}
.content-box-title:first-of-type {
    margin-top: 0;
}
.content-box-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}
.content-box p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}
.content-box ul {
    margin: 1.5rem 0 1.5rem 2rem;
    color: var(--text-muted);
}
.content-box li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}
.highlight-box {
    background: var(--glass-bg);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    position: relative;
}
.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 10px;
    pointer-events: none;
}
.contact-info {
    background: var(--gradient-black);
    color: var(--ivory);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    margin-top: 4rem;
}
.contact-info h3 {
    color: var(--gold);
    font-family: var(--font-tech);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.contact-info a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.contact-info a:hover {
    color: var(--rich-gold);
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ========================================
   FAQ PAGE STYLES
======================================== */
.faq-search {
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
}
.search-input {
    width: 100%;
    padding: 1.5rem 2rem 1.5rem 4rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: var(--font-sans);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}
.search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}
.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.3rem;
}
.faq-category {
    margin-bottom: 4rem;
}
.category-title {
    font-family: var(--font-tech);
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    position: relative;
}
.category-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}
.faq-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-luxury);
    transform: translateY(-2px);
}
.faq-question {
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}
.faq-question:hover { background: rgba(212, 175, 55, 0.05); }
.faq-question h3 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    margin-right: 1rem;
    line-height: 1.4;
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-content {
    padding: 0 2.5rem 2rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
}
.faq-item.active .faq-answer { max-height: 300px; }

/* SUPPORT CARDS (FAQ Page) */
.support-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(0, 0, 0, 0.02));
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}
.support-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.1);
}
.support-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-luxury);
    border-color: var(--rich-gold);
}
.support-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
    transition: all 0.4s ease;
}
.support-card:hover .support-icon {
    transform: scale(1.2) rotateY(360deg);
    text-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}
.support-card h3 {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.support-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.support-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-premium);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.support-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-premium);
}

/* ========================================
   ABOUT US PAGE
======================================== */

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    position: fixed;
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
@media (pointer: coarse) {
    .cursor {
        display: none;
    }
}

/* General Section Styling */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}
.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-family: var(--font-serif);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* About Us Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 70vh;
    padding: 0 2rem;
    background: url('about.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--ivory);
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--champagne);
    font-style: italic;
}

/* Story Section */
.story-section {
    background: #fff;
    padding-top: 8rem;
}
.story-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}
.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}
.story-text .highlight {
    color: var(--gold);
    font-weight: 600;
}
.story-image {
    position: relative;
}
.story-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: var(--shadow-luxury);
    object-fit: cover;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(0, 0, 0, 0.01));
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--gold);
}
.value-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}
.value-title {
    font-family: var(--font-tech);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.value-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: #fff;
}
.team-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}
.team-member {
    max-width: 800px;
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
}
.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
}
.member-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.member-role {
    font-family: var(--font-tech);
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.member-bio {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Section & Unified Button Style */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--gradient-black) fixed;
    color: var(--ivory);
}
.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-premium);
    background-size: 200% 200%;
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    animation: gradientShift 4s ease-in-out infinite;
}
.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-premium);
}

/* Reveal Animations */
.reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal-left { transform: translateX(-100px); }
.reveal-right { transform: translateX(100px); }
.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   CONTACT US PAGE
======================================== */

/* Contact Page Hero Section */
.page-hero {
    min-height: 60vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1586769852836-bc069f19e1b6?q=80&w=2070&auto=format&fit=crop') center/cover;
}
.page-hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-premium);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite, slideInUp 1s ease-out;
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.8);
}
.page-hero p {
    font-size: 1.5rem;
    color: var(--ivory);
    animation: slideInUp 1s ease-out 0.3s both;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    font-family: var(--font-serif);
    font-style: italic;
}

/* Contact Section Grid & Form */
.contact-section { background-color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-box, .contact-form-box {
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(30px);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.1);
}
.contact-info-box h3, .contact-form-box h3 {
    font-family: var(--font-tech);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
}
.info-item { display: flex; align-items: start; margin-bottom: 2rem;background-color: #fff; }
.info-item i { font-size: 2rem; color: var(--gold); margin-right: 1.5rem; margin-top: 5px; }
.info-item-content p { margin: 0; line-height: 1.6; color: var(--text-muted); }
.info-item-content p strong { color: var(--text-dark); display: block; margin-bottom: 0.25rem; }
.info-item-content a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
.info-item-content a:hover { color: var(--rich-gold); }

.form-group { margin-bottom: 1.5rem; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.form-group textarea { resize: vertical; min-height: 150px; }
.contact-form-box .cta-button {
    animation: none; /* Remove distracting animation from form button */
}

/* Map Section */
.map-section { padding-top: 0; }
.map-container { border-radius: 25px; overflow: hidden; box-shadow: var(--shadow-luxury); border: 2px solid var(--glass-border); }
.map-container iframe { width: 100%; height: 450px; border: 0; display: block; }


/* ========================================
   FOOTER
======================================== */
footer {
    padding: 6rem 0 3rem;
    background: var(--deep-black);
    border-top: 2px solid var(--gold);
    text-align: center;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}
.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-tech);
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 1rem;
}
.footer-section p span {
    color: var(--gold);
}
.footer-section a {
    color: var(--ivory);
    text-decoration: none;
    transition: all 0.4s ease;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1rem;
}
.footer-section a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}
.footer-section a:hover::before { opacity: 1; transform: translateX(0); }
.footer-section a:hover {
    color: var(--gold);
    opacity: 1;
    transform: translateX(5px);
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.social-icons {
    display: flex;
    justify-content: left;
    gap: 2rem;
    margin-top: 2rem;
}
.social-icons a {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    color: var(--gold);
}
.social-icons a::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-gold);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}
.social-icons a:hover::before { transform: scale(1); }
.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--gold);
    color: var(--black);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}
.footer-copyright {
    color: var(--text-muted);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    text-align: center;
}
.footer-copyright a {
    color: var(--gold);
    text-decoration: none;
}
/* ========================================
   UTILITIES
======================================== */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border: 3px solid var(--gold);
    border-radius: 50%;
    color: var(--black);
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.back-to-top.visible {
    opacity: 1;
}
.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-premium);
    background: var(--gradient-premium);
}
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .contact-grid { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .story-image {
        order: -1;
    }
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .section {
        padding: 4rem 0;
    }
    .mobile-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        gap: 2rem;
        z-index: 1001;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 2rem;
        color: var(--ivory);
    }
    .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .support-card, .content-box {
        padding: 2.5rem;
    }
    .content-box-title, .category-title {
        font-size: 1.6rem;
    }
    .faq-question {
        padding: 1.5rem;
    }
    .faq-question h3 {
        font-size: 1.1rem;
    }
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem;
        font-size: 1rem;
    }
    .footer-content {
        text-align: center;
    }
    .footer-section a {
        padding-left: 0;
    }
    .footer-section a::before {
        display: none;
    }
    .social-icons {
        justify-content: center;
    }
    .back-to-top {
        bottom: 2rem;
        right: 2rem;
        width: 60px;
        height: 60px;
    }
    /* About Us Responsive */
    .hero {
        height: 50vh;
    }
    .team-member {
        padding: 2.5rem;
    }
    /* Contact Us Responsive */
    .page-hero {
        min-height: 50vh;
    }
    .page-hero h1 { font-size: 3rem; }
    .page-hero p { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .container, .nav-container {
        padding: 0 1rem;
    }
    .page-header {
        padding: 2rem 0;
        margin-bottom: 4rem;
    }
    .page-title {
        font-size: 2.5rem;
    }
    .page-subtitle {
        font-size: 1.2rem;
    }
    .support-card, .content-box {
        padding: 2rem;
    }
    .content-box p, .content-box li {
        font-size: 1rem;
    }
    .support-icon {
        font-size: 3rem;
    }
    /* About Us Responsive */
    .section-title h2 {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1.1rem;
    }
    .story-content {
        gap: 2rem;
    }
    .value-card {
        padding: 2rem;
    }
    .team-member {
        padding: 2rem 1.5rem;
    }
    .member-photo {
        width: 120px;
        height: 120px;
    }
    .member-name {
        font-size: 1.5rem;
    }
    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    /* Contact Us Responsive */
    .contact-info-box, .contact-form-box {
        padding: 2rem;
    }
    .contact-info-box h3, .contact-form-box h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   HOMEPAGE-SPECIFIC STYLES & EFFECTS
   (Append to your main stylesheet)
======================================== */

/* --- Loading Screen --- */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s ease, visibility 1s ease;
    transition-delay: 0.5s;
}
.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader {
    width: 80px;
    height: 80px;
    border: 4px solid var(--glass-border);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Custom Cursor --- */
/* Add class="homepage-body" to the <body> tag on index.html */
.homepage-body {
    cursor: none;
}
.homepage-body .cursor {
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10001;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    opacity: 0;
}
.homepage-body.cursor-hover .cursor {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.2);
    border-color: var(--rich-gold);
}
@media (pointer: coarse) {
    .homepage-body .cursor { display: none; }
    .homepage-body { cursor: auto !important; }
}

/* --- Luxury Particles --- */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.particle {
    position: absolute;
    border-radius: 50%;
    animation: luxuryFloat 20s infinite linear;
    opacity: 0;
}
.particle.gold { width: 3px; height: 3px; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.particle.diamond { width: 2px; height: 2px; background: white; box-shadow: 0 0 15px rgba(255, 255, 255, 0.8); }
.particle.large { width: 6px; height: 6px; background: var(--gradient-gold); }
@keyframes luxuryFloat {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateY(-100px); opacity: 0; }
}

/* --- Homepage Hero Section --- */
.homepage-hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1511499767150-a48a237f0083?q=80&w=2070&auto=format&fit=crop') center/cover;
}
.homepage-hero .hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
    z-index: 2;
}
.homepage-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite, slideInUp 1s ease-out;
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.8);
    position: relative;
    line-height: 1.1;
}
.homepage-hero h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent, var(--gold), transparent);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: -1;
    animation: shine 3s infinite;
}
@keyframes shine {
    from { transform: translateX(-100%); } to { transform: translateX(100%); }
}
.homepage-hero .hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    color: var(--ivory);
    animation: slideInUp 1s ease-out 0.3s both;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    font-family: var(--font-serif);
    font-style: italic;
}
.homepage-hero .cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-premium);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInUp 1s ease-out 0.6s both;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-luxury);
    border: none;
    font-size: 1.1rem;
}
.homepage-hero .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-premium);
}

/* --- Products Section (Homepage) --- */
.products-section {
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.product-card {
    background: rgba(250, 249, 246, 0.9);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-luxury);
}

.card-image {
    width: 100%;
    height: auto; 
    aspect-ratio: 1 / 1; 
    object-fit: contain; 
    background: rgba(240, 240, 240, 0.5); 
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: transform 0.4s ease; 
}

.card-title {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.card-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
    flex-grow: 1; 
}

/* --- Consolidated Media Query for Mobile & Tablet --- */
@media (max-width: 768px) {
    .products-grid {
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .card-image {
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .card-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* --- About Section (Homepage) --- */
.about-home-section { text-align: center; }
.about-home-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem) !important;
    margin-bottom: 3rem !important;
}
.about-home-p {
    font-size: 1.6rem !important;
    max-width: 900px !important;
}

/* --- Testimonials Section (Homepage) --- */
.testimonials-section { background: var(--pearl); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-left: 5px solid var(--gold);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
}
.testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-family: var(--font-serif);
}
.testimonial-author { color: var(--gold); font-weight: 700; }
.testimonial-author::before { content: '— '; }

/* --- Newsletter Section --- */
.newsletter-section {
    padding: 8rem 2rem;
    text-align: center;
    background: var(--gradient-black);
    color: var(--ivory);
}
.newsletter-section h2 {
    font-family: var(--font-tech);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold);
    margin-bottom: 1rem;
}
.newsletter-form {
    max-width: 600px;
    margin: 3rem auto 0;
    display: flex;
    gap: 1rem;
}
.newsletter-input {
    flex: 1;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--ivory);
    font-size: 1.1rem;
    transition: all 0.4s ease;
}
.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.newsletter-button {
    padding: 1.2rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
}
.newsletter-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Responsive adjustments for homepage newsletter */
@media (max-width: 768px) {
    .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
    .newsletter-button { width: 100%; }
}
/* --- TEMPORARY DEBUGGING FIX --- */
.reveal {
    opacity: 1 !important;
    transform: none !important;
}