/* 
   Vision Edge Productions - Design System
   Modern, Premium, and Clean Event Production Website
*/

:root {
    /* Colors - Premium Obsidian Theme */
    --bg: #0a0a0b;
    --bg-elev: #121214;
    --bg-muted: #1c1c1f;
    --text: #ffffff;
    --text-muted: #e2e8f0;
    /* Even brighter for maximum contrast */

    /* Gold Accent Palette - WCAG Compliant Gradients */
    --gold-primary: #d4af37;
    /* Metallic Gold */
    --gold-light: #f4d03f;
    --gold-dark: #b8860b;
    --gold-glow: rgba(212, 175, 55, 0.2);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;

    /* Spacing */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-24: 6rem;
    --sp-32: 8rem;

    /* Layout */
    --section-padding: var(--sp-24) 0;
    --container-padding: 0 var(--sp-6);
    --max-width: 1280px;

    /* Components */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 24px;

    /* Glass Effect */
    --glass-bg: rgba(18, 18, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);

    /* Z-index */
    --z-nav: 1000;
    --z-overlay: 10;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: var(--line-height-base);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.icon {
    width: 20px;
    height: 20px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.metallic-heading {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold-primary);
}

body:not(.index-page) h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    transition: var(--transition);
    padding: var(--sp-6) 0;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    gap: var(--sp-8);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold-primary);
}

.nav-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: var(--sp-2);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--gold-primary);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* Sections */
section {
    padding: var(--section-padding);
    position: relative;
}

body:not(.index-page) section {
    padding: var(--sp-16) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--sp-12);
}

.section-header h2 {
    margin-bottom: var(--sp-4);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--sp-24) 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.index-page .hero {
    min-height: 80vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video,
.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-fallback {
    background: url('assets/img/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: var(--z-overlay);
    max-width: 900px;
    padding: 0 var(--sp-6);
}

.hero .hero-title {
    margin-bottom: var(--sp-6);
}

body:not(.index-page) .hero .hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
}

.hero .hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: var(--sp-12);
    font-weight: 300;
}

/* Buttons */
.gold-button,
.gold-outline-button {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.gold-button {
    background-color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    color: #000;
}

.gold-button:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px var(--gold-glow);
}

.gold-outline-button {
    background-color: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text);
}

.gold-outline-button:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.gold-button.large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

body:not(.index-page) .gold-button.large {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

/* Trust Strip */
.trust-strip {
    background: var(--bg);
    padding: var(--sp-12) 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-8);
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--sp-6);
}

.trust-icon {
    width: 32px;
    height: 32px;
    color: var(--gold-primary);
    margin-bottom: var(--sp-4);
}

/* Service Info */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--sp-8);
}

.service-card {
    background: var(--bg-elev);
    padding: var(--sp-10);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    background: var(--bg-muted);
}

/* Founder & About */
.founder-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--sp-16);
    align-items: center;
}

.founder-bio p {
    margin-bottom: var(--sp-6);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.founders-message {
    margin-top: var(--sp-12);
    padding: var(--sp-8);
    background: var(--bg-elev);
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.message-quote {
    color: var(--gold-primary);
    width: 32px;
    margin-bottom: var(--sp-4);
}

.founders-message blockquote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: var(--sp-4);
}

.founder-placeholder {
    aspect-ratio: 3/4;
    background: var(--bg-elev);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.founder-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: var(--sp-4);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-12);
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: var(--sp-2);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Service Detail Layers */
.service-detail {
    border-bottom: 1px solid var(--glass-border);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse .service-text {
    direction: ltr;
}

.service-icon-large {
    width: 40px;
    height: 40px;
    color: var(--gold-primary);
    margin-bottom: var(--sp-4);
}

.service-features {
    margin: var(--sp-8) 0;
}

.service-features li {
    margin-bottom: var(--sp-3);
    padding-left: var(--sp-6);
    position: relative;
    color: var(--text-muted);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
}

.service-image img {
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
}

/* Timeline */
.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: var(--sp-12);
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--sp-12);
}

.timeline-marker {
    position: absolute;
    left: -48px;
    width: 48px;
    height: 48px;
    background: var(--bg);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    z-index: 1;
}

.timeline-marker svg {
    width: 24px;
    height: 24px;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: var(--sp-2);
}

/* Process Section */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-12);
}

.process-step {
    text-align: center;
}

.step-marker {
    position: relative;
    margin-bottom: var(--sp-6);
}

.step-number {
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(30px);
    width: 28px;
    height: 28px;
    background: var(--gold-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-elev);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

/* Testimonials */
.testimonials-section {
    padding: var(--section-padding);
}

.testimonials-swiper {
    padding: var(--sp-8) 0 var(--sp-12);
}

.testimonial-card {
    background: var(--bg-elev);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--sp-10);
    transition: var(--transition);
    height: 100%;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    height: 100%;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-primary);
}

.photo-placeholder {
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.author-info h4 {
    color: var(--text);
    margin-bottom: var(--sp-1);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rating {
    color: var(--gold-primary);
    letter-spacing: 2px;
}

.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    background: var(--gold-primary);
    opacity: 0.3;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* CTA */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('assets/img/cta-bg.jpg') center/cover no-repeat;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: var(--sp-12);
}

/* Footer */
footer {
    padding: var(--sp-16) 0 var(--sp-8);
    background: var(--bg-elev);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--sp-12);
    margin-bottom: var(--sp-12);
}

.footer-brand .brand-logo {
    font-size: 2rem;
    margin-bottom: var(--sp-4);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-section h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text);
    margin-bottom: var(--sp-6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    margin-bottom: var(--sp-3);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--gold-primary);
}

.footer-section.social-links a {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.social-icon {
    width: 18px;
    height: 18px;
    color: var(--gold-primary);
}

.social-icons {
    display: flex;
    gap: var(--sp-4);
    margin-top: var(--sp-4);
}

.social-link,
.social-link-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-elev);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover,
.social-link-icon:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background: var(--gold-glow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--gold-glow);
}

.social-link svg,
.social-link-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link-icon span {
    display: none;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Values Grid Adjustment */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-8);
}

.value-card {
    background: var(--bg-elev);
    padding: var(--sp-10);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
}

.value-icon {
    width: 40px;
    height: 40px;
    color: var(--gold-primary);
    margin-bottom: var(--sp-6);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: var(--sp-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .founder-content,
    .service-content {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }
}

/* Form Styling */
.contact-form {
    background: var(--bg-elev);
    padding: var(--sp-10);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
    margin-bottom: var(--sp-6);
}

.form-group {
    margin-bottom: var(--sp-6);
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--sp-2);
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.custom-select select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1rem;
    border-radius: var(--radius);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.custom-select select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px var(--gold-glow);
}

/* Form Validation States */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #ef4444;
}

.form-group.error label {
    color: #ef4444 !important;
}

.form-error {
    display: none;
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 0.25rem;
}

.form-error.visible {
    display: block;
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: #10b981;
}

/* Floating Label Logic */
.floating-label {
    position: relative;
    margin-bottom: var(--sp-8);
}

.floating-label input,
.floating-label textarea {
    padding: 1.2rem 1rem 0.6rem;
    background: var(--bg-muted);
}

.floating-label label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
    pointer-events: none;
    text-transform: none;
    letter-spacing: normal;
}

.floating-label input:focus~label,
.floating-label input:not(:placeholder-shown)~label,
.floating-label textarea:focus~label,
.floating-label textarea:not(:placeholder-shown)~label {
    top: 0.4rem;
    font-size: 0.75rem;
    color: var(--gold-primary);
}

.select-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gold-primary);
    margin-top: 0.25rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--sp-12);
    align-items: start;
    margin-top: var(--sp-8);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    margin: var(--sp-8) 0;
}

.contact-card {
    background: var(--bg-elev);
    padding: var(--sp-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    display: flex;
    gap: var(--sp-4);
    align-items: center;
}

.contact-icon {
    width: 32px;
    height: 32px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.5rem;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
    pointer-events: none;
}

.form-success {
    text-align: center;
    padding: var(--sp-12);
    border-radius: var(--radius-xl);
    background: var(--gold-glow);
    border: 1px solid var(--gold-primary);
    margin-bottom: var(--sp-8);
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--sp-6);
    color: var(--gold-primary);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Subpage Placeholders */
.founder-placeholder,
.team-placeholder,
.preview-placeholder {
    background: var(--bg-elev);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--sp-6);
    text-align: center;
    color: var(--text-muted);
}

.founder-placeholder {
    aspect-ratio: 3/4;
    max-width: 400px;
    margin: 0 auto;
}

.founder-placeholder svg,
.team-placeholder svg,
.preview-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: var(--sp-4);
    color: var(--gold-primary);
}

.team-placeholder {
    padding: var(--sp-12);
    min-height: 300px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-6);
    margin-top: var(--sp-8);
}

.preview-placeholder {
    aspect-ratio: 1/1;
}

.preview-placeholder svg {
    width: 40px;
    height: 40px;
}

/* Gallery Signup Specifics */
.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

/* Coming Soon Formatting */
.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gold-glow);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-top: var(--sp-6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-elev);
        flex-direction: column;
        padding: var(--sp-32) var(--sp-8);
        transition: var(--transition);
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
}

/* Utilities */
.scroll-top {
    position: fixed;
    bottom: var(--sp-8);
    right: var(--sp-8);
    width: 48px;
    height: 48px;
    background: var(--gold-primary);
    color: #000;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.scroll-top:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
}

.sticky-quote-btn {
    position: fixed;
    bottom: var(--sp-8);
    left: var(--sp-8);
    background: var(--gold-primary);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    z-index: 998;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.sticky-quote-btn.visible {
    transform: translateY(0);
}

.sticky-quote-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.notification {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

[data-aos] {
    transition-duration: 0.8s !important;
}


/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--sp-6);
    margin-top: var(--sp-12);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--sp-8);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    margin-bottom: 4px;
    font-size: 1.25rem;
    color: var(--gold-primary);
}

.gallery-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FAQ Section Styles */
.faq-section {
    background: var(--bg);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-elev);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--sp-4);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-6) var(--sp-8);
    cursor: pointer;
    gap: var(--sp-4);
}

.faq-question h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.faq-toggle svg {
    width: 24px;
    height: 24px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--sp-8) var(--sp-6);
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Accessibility & Contrast Fixes */
.floating-label label {
    color: #e2e8f0;
}

.floating-label input::placeholder {
    color: #94a3b8;
}

.journey-item p {
    color: #e2e8f0;
}

.footer-section p,
.footer-section span {
    color: #e2e8f0;
}

@media (max-width: 480px) {}