/* =========================================
   HENNA STUDIO - PRODUCTION CSS
   Cleaned & Optimized - Black & Gold Theme
   ======================================== */

/* =========================================
   1. CSS VARIABLES
   ======================================== */
:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --bg-glass: rgba(0, 0, 0, 0.9);
    --bg-elevated: #141414;
    
    --text-primary: #d4af37;
    --text-secondary: #d1d1d1;
    --text-tertiary: #888888;

    --accent-color: #d4af37;
    --accent-hover: #b49025;
    --accent-contrast: #000000;
    
    --border-light: #333333;
    --border-subtle: #222222;
    
    --shadow-sm: 0 2px 8px rgba(212, 175, 55, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.8);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.9);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* =========================================
   2. BASE / RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

input, textarea, select {
    font-family: inherit;
}

/* =========================================
   3. TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }

p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.section-title-large {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-subtitle-large {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.narrative-title {
    font-size: 2.75rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.narrative-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* =========================================
   4. LAYOUT / CONTAINERS
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

/* =========================================
   5. BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--accent-contrast);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-header-premium {
    background-color: #000000;
    color: #d4af37;
    border: 1px solid var(--border-light);
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-header-premium:hover {
    background-color: #d4af37;
    color: #000000;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background-color: var(--bg-secondary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.w-full {
    width: 100%;
}

.hero__actions .btn,
.narrative-actions .btn,
.service-card-content .btn {
    min-width: 180px;
}

/* =========================================
   6. HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.nav__menu {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
}

.nav__link:hover,
.nav__link.active {
    color: var(--text-primary);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    background: none;
    border: none;
}

/* =========================================
   7. HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero__content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero__title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.3rem;
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 2.8rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero__badge i {
    color: var(--accent-color);
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(0,0,0,0.05) 0%, transparent 60%),
                radial-gradient(ellipse at bottom, var(--bg-secondary) 0%, transparent 60%);
    pointer-events: none;
}

/* =========================================
   8. TRUST BAR
   ======================================== */
.trust-bar {
    background-color: #000000;
    padding: 1.5rem 0;
    border-bottom: none;
}

.trust-bar__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.trust-item i {
    color: #10B981;
    font-size: 1.25rem;
}

/* =========================================
   9. HOW IT WORKS
   ======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-primary);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-primary);
}

.step-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   10. ABOUT
   ======================================== */
.about-redesigned {
    padding: 8rem 0;
}

.about-storytelling {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.visual-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--accent-color);
}

.narrative-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-narrative .btn,
.about-redesigned .btn {
    background: #d4af37;
    color: #000000;
    font-weight: 600;
    border-color: transparent;
}

.about-narrative .btn:hover,
.about-redesigned .btn:hover {
    background: #b49025;
    box-shadow: var(--shadow-sm);
}

/* =========================================
   11. SERVICES
   ======================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card-premium {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-premium:hover .service-card-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--accent-color);
    color: var(--bg-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.service-badge-new {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.service-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card__icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-pricing {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.price-from {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--accent-color);
}

.service-card-content .btn {
    margin-top: auto;
}

/* =========================================
   12. FESTIVAL MODE - UPDATED FOR MOBILE
   ======================================== */

.festival-mode {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.festival-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.festival-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-subtle); /* ADD THIS - gives outline border */
}

.festival-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color); /* Gold border on hover */
}

.festival-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.festival-card:hover .festival-card-bg {
    transform: scale(1.05);
}

.festival-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.95) 100%);
}

.festival-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.festival-card:hover .festival-card-content {
    transform: translateY(-5px);
}

.festival-card-content h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.festival-card-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.festival-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.festival-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

.festival-stats i {
    font-size: 1rem;
}

.btn-festival {
    width: 100%;
    background: var(--accent-color);
    color: var(--accent-contrast);
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    transition: all 0.2s ease;
}

.btn-festival:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.festival-calendar {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
}

.calendar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-subtle);
}

.calendar-header i {
    font-size: 2rem;
    color: var(--accent-color);
}

.calendar-header h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin: 0;
}

.calendar-events {
    display: grid;
    gap: 1.5rem;
}

.calendar-event {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.calendar-event:hover {
    transform: translateX(5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.event-date {
    text-align: center;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    min-width: 80px;
}

.event-date .month {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-info h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-info p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

/* =========================================
   13. TESTIMONIALS
   ======================================== */
.testimonials-redesigned {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.testimonials-scroll-row {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.testimonials-track-right {
    animation: scrollRight 40s linear infinite;
}

.testimonials-track-left {
    animation: scrollLeft 40s linear infinite;
}

.testimonial-card-scroll {
    width: 400px;
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-text-scroll {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
}

.testimonial-author-scroll {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-scroll {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-author-scroll h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.testimonial-author-scroll span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* =========================================
   14. PRODUCTS
   ======================================== */
#products .section-title h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-subtle);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--bg-primary);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.new-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1rem 0;
}

.products-footer-actions {
    text-align: center;
    margin-top: 3rem;
}

/* =========================================
   15. AI STUDIO SECTION (on index)
   ======================================== */
.studio-showcase {
    background: var(--bg-primary);
}

.studio-showcase .btn {
    margin-top: 2rem;
}

/* =========================================
   NEWSLETTER SECTION - FIXED ALIGNMENT
   ======================================== */

.newsletter-premium {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.newsletter-container-centered {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
}

.newsletter-icon-centered {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #b49025);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.newsletter-icon-centered i {
    font-size: 2.5rem;
    color: #000000;
}

.newsletter-title-centered {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.newsletter-subtitle-centered {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Styles */
.newsletter-form-centered {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.newsletter-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 0.25rem;
}

.newsletter-input-wrapper i {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    margin-left: 1.25rem;
}

.newsletter-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.9rem 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
}

.newsletter-input-wrapper input::placeholder {
    color: var(--text-tertiary);
}

.btn-newsletter {
    background: var(--accent-color);
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin: 0.25rem;
}

.btn-newsletter:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Privacy Text - Fixed spacing */
.newsletter-privacy-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0 2.5rem;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.newsletter-privacy-centered i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Benefits Row - Proper alignment */
.newsletter-benefits-centered {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.benefit-item-centered {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefit-item-centered i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    .newsletter-premium {
        padding: 4rem 0;
    }
    
    .newsletter-container-centered {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }
    
    .newsletter-icon-centered {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .newsletter-icon-centered i {
        font-size: 2rem;
    }
    
    .newsletter-title-centered {
        font-size: 1.8rem;
    }
    
    .newsletter-subtitle-centered {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    /* Stack form vertically on mobile */
    .newsletter-input-wrapper {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 1rem;
    }
    
    .newsletter-input-wrapper i {
        display: none;
    }
    
    .newsletter-input-wrapper input {
        width: 100%;
        background: var(--bg-secondary);
        border: 1px solid var(--border-light);
        border-radius: 50px;
        padding: 1rem 1.5rem;
        text-align: center;
    }
    
    .btn-newsletter {
        width: 100%;
        padding: 1rem 1.5rem;
        margin: 0;
    }
    
    /* Privacy text spacing fix */
    .newsletter-privacy-centered {
        margin: 1.5rem 0 2rem;
    }
    
    /* Benefits stacked vertically on mobile */
    .newsletter-benefits-centered {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .benefit-item-centered {
        justify-content: center;
        width: 100%;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .newsletter-container-centered {
        padding: 2rem 1rem;
    }
    
    .newsletter-title-centered {
        font-size: 1.6rem;
    }
    
    .benefit-item-centered {
        font-size: 0.9rem;
    }
}

.benefit-item-centered {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.benefit-item-centered i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* =========================================
   17. TOAST NOTIFICATION
   ======================================== */
.toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.toast-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.toast-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid var(--border-subtle);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.toast-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.toast-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #FFFFFF;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.toast-message {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   18. CONTACT
   ======================================== */
#contact .section-title h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

/* =========================================
   19. FOOTER
   ======================================== */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: none;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__col h4 {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.footer__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--text-primary);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.footer-legal-links a {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

.footer-legal-links a:hover {
    color: var(--text-secondary);
}

/* =========================================
   20. MOBILE BOTTOM NAVIGATION - CLEAN VERSION
   ======================================== */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: #000000;
        border-top: 1px solid #222222;
        padding: 0.5rem 1rem calc(0.5rem + env(safe-area-inset-bottom));
        justify-content: space-around;
        align-items: center;
        z-index: 1000;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
        color: #888888;
        font-size: 0.65rem;
        font-weight: 500;
        text-decoration: none;
        background: none;
        border: none;
        padding: 0.25rem 0;
        width: auto;
        min-width: 50px;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .mobile-nav-item i {
        font-size: 1.3rem;
        color: #888888;
        transition: color 0.2s;
    }

    .mobile-nav-item.active,
    .mobile-nav-item:hover,
    .mobile-nav-item.active i,
    .mobile-nav-item:hover i {
        color: #d4af37;
    }

    .mobile-nav-item.highlight {
        position: relative;
        top: -15px;
    }

    .nav-icon-circle {
        width: 48px;
        height: 48px;
        background: #d4af37;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000000;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        transition: transform 0.2s ease;
    }

    .nav-icon-circle i {
        color: #000000 !important;
        font-size: 1.4rem;
    }

    .mobile-nav-item.highlight:active .nav-icon-circle {
        transform: scale(0.95);
    }

    .mobile-nav-item span {
        font-size: 0.6rem;
        margin-top: 0.1rem;
    }
}

/* =========================================
   21. CHATBOT WIDGET - WITH GLOWING CIRCLE BORDER
   ======================================== */

.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

/* Chat Icon with Circular Border and Glow */
.chat-icon {
    width: 60px;
    height: 60px;
    background: transparent; /* Remove background, use image instead */
    border-radius: 50%; /* Make it circular */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    overflow: hidden;
    
    /* Circular border */
    border: 2px solid var(--accent-color);
    padding: 3px; /* Space between border and image */
    
    /* Subtle glowing animation */
    animation: subtleGlow 2s infinite ease-in-out;
}

/* Logo image inside chat icon */
.chat-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%; /* Makes image circular */
    background: #000000; /* Black background if image has transparency */
}

/* Subtle glow animation */
@keyframes subtleGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3);
        border-color: rgba(212, 175, 55, 0.8);
    }
    50% {
        box-shadow: 0 0 10px 2px rgba(212, 175, 55, 0.5);
        border-color: var(--accent-color);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3);
        border-color: rgba(212, 175, 55, 0.8);
    }
}

.chat-icon:hover {
    transform: scale(1.1);
    animation: none; /* Stop animation on hover */
    border-color: var(--accent-hover);
    box-shadow: 0 0 15px 3px rgba(212, 175, 55, 0.6);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    overflow: hidden;
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
}

.chat-header h4 {
    font-size: 1rem;
    color: var(--text-primary);
}

.close-chat {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
}

.close-chat:hover {
    color: var(--text-primary);
}

.chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Updated message avatar to match circular style */
.chat-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.chat-message.bot .message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    
    /* Border for bot avatar */
    border: 1px solid var(--accent-color);
    padding: 2px;
    background: #000000;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.chat-message.bot .message-content {
    background: #111111;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    max-width: 80%;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.chat-message.user .message-avatar {
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1rem;
    flex-shrink: 0;
    border: 1px solid var(--accent-color);
}

.chat-message.user .message-content {
    background: var(--accent-color);
    padding: 0.75rem 1rem;
    border-radius: 18px;
    border-bottom-right-radius: 4px;
    max-width: 80%;
}

.chat-message.user .message-content p {
    color: #000000;
    margin: 0;
}

.chat-message .message-content p {
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot .message-content p {
    color: #e0e0e0;
}

.chat-suggestions {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    background: #0a0a0a;
    border-top: 1px solid #222222;
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-btn {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 0.75rem;
    color: #a0a0a0;
    font-size: 0.85rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggestion-btn i {
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.suggestion-btn:hover {
    background: #1a1a1a;
    border-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.chat-footer {
    padding: 1rem;
    border-top: 1px solid #222222;
    background: #0a0a0a;
}

.new-suggestions-btn {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid #222222;
    border-radius: 12px;
    color: var(--accent-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.new-suggestions-btn:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--accent-color);
}

/* Scrollbar for suggestions */
.chat-suggestions::-webkit-scrollbar {
    width: 4px;
}

.chat-suggestions::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.chat-suggestions::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

/* ========== MOBILE FULL‑SCREEN OVERRIDES ========== */
@media (max-width: 768px) {
    .chat-widget .chat-icon {
        display: none;
    }

    .chat-window {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        bottom: auto;
        right: auto;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
    }

    .chat-window.active {
        transform: translateY(0);
    }

    .chat-body {
        height: calc(100vh - 120px);
    }

    .chat-suggestions {
        max-height: 150px;
    }
}

/* Optional: Different glow variations (choose one) */

/* Variation 2: Pulse effect */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Variation 3: Breathing effect */
@keyframes breatheGlow {
    0% {
        box-shadow: 0 0 5px 1px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px 3px rgba(212, 175, 55, 0.5);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 5px 1px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }
}


/* =========================================
   22. BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 890;
    color: var(--text-primary);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* =========================================
   23. QUOTE MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.3s cubic-bezier(0.16,1,0.3,1);
}

.modal-large {
    max-width: 800px;
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--bg-tertiary);
}

.modal-body {
    padding: 2rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* =========================================
   24. ANIMATIONS
   ======================================== */
@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scrollRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollLeft {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =========================================
   25. RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .about-storytelling {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero__title,
    .hero-title-large {
        font-size: 3rem;
    }
    .narrative-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero__actions .btn,
    .narrative-actions .btn,
    .service-card-content .btn {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .nav__toggle {
        display: block;
    }
    .nav__actions {
        display: none;
    }
    .nav__menu {
        position: fixed;
        top: 0;
        right: -105%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
        z-index: 1100;
        border-left: 1px solid rgba(212,175,55,0.2);
    }
    .nav__menu.active {
        right: 0;
    }
    .nav__link {
        color: #ffffff;
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav__link:hover,
    .nav__link.active {
        color: #d4af37;
        padding-left: 10px;
    }
    .nav__toggle {
        z-index: 1101;
    }

    .hero__title {
        font-size: 2.5rem;
    }
    .steps-grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 4rem 0;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .modal-actions {
        flex-direction: column;
    }
    .modal-actions .btn {
        min-width: 200px;
        display: flex;
        justify-content: center;
    }
    .testimonial-card-scroll {
        width: 320px;
    }

    .chat-widget .chat-icon {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2rem;
    }
    .hero-title-large {
        font-size: 2.5rem;
    }
    .narrative-title {
        font-size: 1.875rem;
    }
    .section-title-large {
        font-size: 2rem;
    }
    .container {
        padding: 0 1.5rem;
    }
    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .hero__actions {
        flex-direction: column;
    }
    .hero__actions .btn {
        width: 100%;
    }
    .card {
        padding: 1.5rem;
    }
    .step-card {
        padding: 2rem;
    }
    .modal-container {
        margin: 1rem;
    }
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }
    .newsletter-container-centered {
        padding: 2.5rem 1.5rem;
    }
    .newsletter-title-centered {
        font-size: 1.75rem;
    }
    .chat-window {
        width: 100%;
        right: -100%;
        bottom: 0;
        height: 100vh;
        border-radius: 0;
    }
    .chat-window.active {
        right: 0;
    }
}

/* =========================================
   26. MOBILE FIXES - CENTER CONTENT PROPERLY
   ======================================== */

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
    }

    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 100px 0 80px;
        margin: 0;
        width: 100%;
    }

    .hero__content {
        width: 100%;
        max-width: 100%;
        padding: 0 1.5rem;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero__title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        width: 100%;
        word-wrap: break-word;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero__actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero__actions .btn {
        width: 100%;
        margin: 0;
        text-align: center;
        justify-content: center;
    }

    .container {
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .section {
        padding: 4rem 0;
        width: 100%;
        overflow-x: hidden;
    }

    .section-header-center {
        padding: 0 1rem;
    }
}

/* =========================================
   27. SHOP PAGE STYLES
   ======================================== */

.shop-header {
    padding: 8rem 0 3rem;
    text-align: center;
    background: var(--bg-primary);
}

.shop-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.shop-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.shop-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.shop-nav-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shop-nav-btn:hover,
.shop-nav-btn.active {
    background: var(--accent-color);
    color: var(--accent-contrast);
    border-color: var(--accent-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card-shop {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-shop:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.product-image-shop {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.product-image-shop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-shop:hover .product-image-shop img {
    transform: scale(1.05);
}

.product-info-shop {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category-shop {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
}

.product-name-shop {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.product-price-shop {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.product-rating-shop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.product-rating-shop .stars {
    color: #FFB800;
}

.product-info-shop .btn {
    margin-top: auto;
    width: 100%;
}

/* =========================================
   28. AI STUDIO LAB STYLES
   ======================================== */

.studio-lab-wrapper {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(70, 70, 80, 0.08), transparent 25%);
    overflow-x: hidden;
}

.lab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-subtle);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
}

.lab-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lab-logo-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.lab-logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.lab-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.badge-beta {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.lab-hero {
    position: relative;
    text-align: center;
    padding: 4rem 2rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}

.lab-eyebrow {
    color: var(--accent-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.lab-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.lab-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hero-back-container {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
}

.hero-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid #222222;
    border-radius: 40px;
    color: #d4af37;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

.hero-back-btn i {
    font-size: 1.1rem;
}

.hero-back-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    color: #ffffff;
    transform: translateX(-3px);
}

.lab-grid-section {
    padding: 2rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lab-card:nth-child(5) {
    grid-column: 2 / 3;
}

.lab-card:nth-child(6) {
    grid-column: 3 / 4;
}

.lab-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.lab-card:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-color);
}

.card-status {
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.status-live {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.status-beta {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.status-soon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.lab-roadmap {
    border-top: none;
    padding: 4rem 2rem;
    background: #000000;
}

.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-list {
    margin-top: 2.5rem;
}

.roadmap-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    border-left: 1px solid #222222;
    padding-left: 1.5rem;
    position: relative;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 9px;
    height: 9px;
    background: #222222;
    border-radius: 50%;
    border: 2px solid #000000;
}

.roadmap-item.active::before {
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.roadmap-quarter {
    font-family: monospace;
    color: var(--accent-color);
    font-size: 0.85rem;
    min-width: 60px;
    font-weight: 600;
    opacity: 0.9;
}

.roadmap-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.roadmap-content p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.lab-early-access {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    border-top: none;
}

.early-access-container {
    max-width: 1000px;
    margin: 0 auto;
}

.early-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.early-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.preview-frames {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.preview-frame {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.preview-frame:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.frame-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    text-align: center;
}

.frame-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.early-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 1rem;
    flex-wrap: wrap;
}

.early-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-subtle);
    background: #111111;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.early-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.early-input::placeholder {
    color: #666666;
}

.early-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    background: var(--accent-color);
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.early-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.early-note {
    color: #666666;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Responsive adjustments for AI Studio */
@media (max-width: 992px) {
    .lab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lab-card:nth-child(5),
    .lab-card:nth-child(6) {
        grid-column: auto;
    }
    
    .preview-frames {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .lab-header {
        padding: 0.75rem 1.5rem;
    }
    
    .lab-logo {
        font-size: 0.95rem;
    }
    
    .lab-logo-icon {
        font-size: 1.25rem;
    }
    
    .lab-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }
    
    .lab-hero {
        padding: 3rem 1.5rem 2rem;
    }
    
    .hero-back-container {
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .hero-back-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero-back-btn span {
        display: none;
    }
    
    .hero-back-btn i {
        font-size: 1.2rem;
        margin: 0;
    }
    
    .hero-back-btn {
        padding: 0.5rem;
        border-radius: 50%;
    }
    
    .lab-title {
        font-size: 2rem;
    }
    
    .lab-subtitle {
        font-size: 0.95rem;
    }
    
    .lab-grid-section {
        padding: 1.5rem;
    }
    
    .lab-grid {
        grid-template-columns: 1fr;
    }
    
    .lab-roadmap {
        padding: 3rem 1.5rem;
    }
    
    .roadmap-item {
        flex-direction: column;
        gap: 0.5rem;
        padding-bottom: 2rem;
    }
    
    .roadmap-quarter {
        min-width: auto;
    }
    
    .lab-early-access {
        padding: 3rem 1.5rem;
    }
    
    .preview-frames {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .preview-frame {
        aspect-ratio: 16/9;
    }
    
    .early-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .early-input, .early-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lab-header {
        padding: 0.5rem 1rem;
    }
    
    .lab-logo {
        font-size: 0.85rem;
    }
    
    .lab-badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }
    
    .lab-title {
        font-size: 1.8rem;
    }
}

/* =========================================
   29. MOBILE HEADER FIXES
   ======================================== */

@media (max-width: 768px) {
    .header {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .nav__logo {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 140px;
    }
    
    .nav__toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        color: #d4af37;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1101;
    }
    
    .nav__actions {
        display: none;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 1100;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .nav__link {
        color: #ffffff;
        font-size: 1.1rem;
        padding: 0.75rem 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav__link:hover,
    .nav__link.active {
        color: #d4af37;
        padding-left: 10px;
    }
    
    .nav__close {
        display: none !important;
    }
}

/* =========================================
   30. MOBILE FIXES - OFFSET FOR FIXED HEADER & BOTTOM NAV
   ======================================== */

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* height of fixed header */
        padding-bottom: 80px; /* height of bottom nav + extra space */
    }

    html {
        scroll-padding-top: 80px; /* for anchor links */
    }

    /* Adjust sections that have large top padding */
    .hero {
        min-height: calc(100vh - 70px);
        padding-top: 0;
    }

    .shop-header {
        padding-top: calc(8rem + 70px); /* original 8rem plus header height */
    }

    .lab-hero {
        padding-top: calc(4rem + 70px); /* original 4rem plus header height */
    }
}


/* Desktop Navigation Active State */
.nav__link {
    position: relative;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
}

.nav__link:hover {
    color: var(--text-primary);
}

.nav__link.active {
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* Optional: Add an underline effect for active links */
.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Action buttons active state */
.btn-header-premium.active,
.btn-outline.active {
    background-color: var(--accent-color);
    color: var(--accent-contrast);
    border-color: var(--accent-color);
}

.btn-header-premium.active:hover,
.btn-outline.active:hover {
    background-color: var(--accent-hover);
}

/* =========================================
   31. FESTIVAL CARD BACKGROUNDS
   ======================================== */
   /* =========================================
   MOBILE FIXES FOR FESTIVAL SECTION
   ======================================== */

@media (max-width: 768px) {
    .festival-mode {
        padding: 4rem 0;
    }
    
    .festival-carousel {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .festival-card {
        height: 380px; /* Slightly smaller on mobile */
        margin-bottom: 0;
    }
    
    .festival-card-content {
        padding: 1.2rem;
    }
    
    .festival-card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .festival-card-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .festival-stats {
        margin-bottom: 0.8rem;
    }
    
    .festival-stats span {
        font-size: 0.8rem;
    }
    
    .btn-festival {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* =========================================
   32. AI STUDIO - ULTRA MINIMAL WITH BETTER WEIGHT
   ======================================== */

.ai-studio-simple {
    background: var(--bg-primary);
    padding: 6rem 0;
    border-top: none;
    border-bottom: none;
}

.ai-studio-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

/* Left Side - Sticky Title */
.ai-studio-left {
    position: sticky;
    top: 120px;
}

.simple-eyebrow {
    display: block;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.simple-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.title-accent {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Right Side - Improved Content */
.ai-studio-right {
    max-width: 600px;
}

.simple-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Features with Numbers */
.simple-features {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.simple-feature {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1.5rem;
}

.simple-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.feature-content p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Note Section */
.simple-note {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.simple-note p {
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Action Section */
.simple-action {
    margin-top: 2rem;
}

/* CHANGED: Specific button class - doesn't affect other buttons */
.btn-studio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--accent-contrast);
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-studio:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.simple-small {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .ai-studio-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .ai-studio-left {
        position: static;
        top: auto;
    }
    
    .simple-title {
        font-size: 2.5rem;
    }
    
    .title-accent {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .ai-studio-simple {
        padding: 4rem 0;
    }
    
    .simple-title {
        font-size: 2.2rem;
    }
    
    .simple-description {
        font-size: 1rem;
    }
    
    .simple-feature {
        gap: 1rem;
    }
    
    .feature-number {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
}

/* =========================================
   33. LOGO STYLES
   ======================================== */

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-img {
    height: 48px !important;
    width: auto !important;
    max-height: 48px !important;
    display: block !important;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* Dark mode adjustment if needed */
[data-theme="dark"] .logo-img {
    filter: brightness(0) invert(1); /* Makes logo white for dark bg */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 28px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}

/* Force logo visibility */
.nav__logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

/* Remove any filters that might hide the logo */
.logo-img {
    filter: none !important;
}

/* Text fallback style */
.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: -0.02em;
}


/* =========================================
   34. CHATBOT AVATAR STYLES
   ======================================== */

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bot message avatar specific */
.chat-message.bot .message-avatar {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* User message avatar (keep as is) */
.chat-message.user .message-avatar {
    background: var(--accent-color);
    color: #000000;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-message.user .message-avatar i {
    color: #000000;
}


/* Form validation styles */
.error-message {
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-input.error {
    border-color: #ff4444;
}

/* Success Modal */
.success-modal {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    background: rgba(16, 185, 129, 0.1) !important;
    border: 2px solid #10b981 !important;
}

.success-icon i {
    color: #10b981 !important;
    font-size: 3rem !important;
}

.success-title {
    color: #10b981;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.success-close {
    background: #10b981 !important;
    color: #000 !important;
    margin-top: 1rem;
}

.success-close:hover {
    background: #059669 !important;
}


/* Additional background images for festival cards */
.bg-diwali { background-image: url('https://images.unsplash.com/photo-1605738985007-37a9b970f6e0?w=800&h=600&fit=crop'); }
.bg-eid { background-image: url('https://images.unsplash.com/photo-1583623025817-d180a2221d0a?w=800&h=600&fit=crop'); }
.bg-wedding { background-image: url('https://images.unsplash.com/photo-1596236569689-090527b79092?w=800&h=600&fit=crop'); }
.bg-navratri { background-image: url('https://images.unsplash.com/photo-1614283233556-f35b0c801ef1?w=800&h=600&fit=crop'); }
.bg-karwa { background-image: url('https://images.unsplash.com/photo-1610522108748-0d1c9bc700f9?w=800&h=600&fit=crop'); }

/* =========================================
   END OF CSS
   ======================================== */