/* ============================================
   THE DAUGHTER BAKER - PREMIUM LUXURY DESIGN
   ============================================ */

/* === CSS VARIABLES === */
:root {
    /* Brand Colors */
    --navy-primary: #1E3750;
    --navy-dark: #0D2538;
    --beige-light: #F0CCB1;
    --beige-medium: #DBB492;
    --gold-light: #D8BA6B;
    --gold-dark: #C5A13E;
    --cream: #FAF8F5;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    
    /* Typography - Distinctive Luxury Fonts */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.75;
    font-weight: 400;
    color: var(--text-primary);
}

/* === LAYOUT CONTAINERS === */
.container-wide {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 clamp(2rem, 5vw, 4rem);
}

.container-full {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 clamp(2rem, 3vw, 4rem);
}

/* === NAVIGATION === */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 37, 56, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 161, 62, 0.15);
    transition: all 0.3s var(--ease-smooth);
}

.main-nav.scrolled {
    background: rgba(13, 37, 56, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0.5rem clamp(1.5rem, 5vw, 6rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s var(--ease-smooth);
}

.logo:hover {
    transform: translateX(4px);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    transition: all 0.4s var(--ease-spring);
}

.logo:hover .logo-icon {
    transform: rotate(180deg);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.6875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s var(--ease-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link-cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--navy-dark) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease-smooth);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 161, 62, 0.35);
    color: var(--navy-dark) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all 0.3s var(--ease-smooth);
    border-radius: 2px;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: calc(80px + 4rem) 0 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 37, 56, 0.96) 0%, rgba(30, 55, 80, 0.92) 100%),
                url('daughter1/Image01.webp') center/cover;
    background-attachment: fixed;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/Branding_Pattern-25_Rina_Hirani.png') repeat center center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(197, 161, 62, 0.12) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 1.2s var(--ease-smooth) backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 161, 62, 0.25);
    color: var(--gold-light);
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s var(--ease-smooth);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(197, 161, 62, 0.45);
    transform: translateY(-3px);
}

.badge-icon {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--beige-light);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--beige-light);
    opacity: 0.7;
    animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -12px); }
}

.scroll-indicator span {
    font-size: 0.8125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-indicator svg {
    width: 22px;
    height: 22px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s var(--ease-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-sans);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--navy-dark);
    box-shadow: 0 8px 24px rgba(197, 161, 62, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(197, 161, 62, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--navy-dark);
    border-color: var(--navy-dark);
}

.btn-outline:hover {
    background: var(--navy-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

/* === ROTATING TICKER BANNER === */
.ticker-banner {
    background: var(--navy-dark);
    padding: 1.5rem 0;
    border-top: 2px solid var(--gold-dark);
    border-bottom: 2px solid var(--gold-dark);
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 5rem;
    animation: ticker 45s linear infinite;
    width: max-content;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-banner:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gold-light);
    white-space: nowrap;
}

.ticker-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.ticker-item span {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* === SECTION STYLING === */
section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-header-center {
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gold-dark);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-title-left {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    color: var(--navy-dark);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: left;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === SERVICES SECTION === */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--ease-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(13, 37, 56, 0.7) 100%);
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

.service-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease-smooth);
}

.link-arrow svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-smooth);
}

.link-arrow:hover {
    color: var(--navy-dark);
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

/* === ABOUT PREVIEW === */
.about-preview {
    background: var(--cream);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/mnt/user-data/uploads/Branding_Pattern-23_Rina_Hirani.png');
    background-repeat: repeat;
    opacity: 0.025;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 6rem;
    align-items: center;
    position: relative;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    z-index: 2;
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--gold-dark);
}

.image-decoration {
    position: absolute;
    top: 2.5rem;
    right: -2.5rem;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
    border-radius: 24px;
    z-index: 1;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content .btn {
    margin-top: 1rem;
}

/* === GALLERY PREVIEW === */
.gallery-preview {
    background: var(--white);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease-smooth);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 37, 56, 0.95), transparent);
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-smooth);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin: 0;
}

.text-center {
    text-align: center;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    background: var(--beige-light);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/mnt/user-data/uploads/Branding_Pattern-22_Rina_Hirani.png');
    background-repeat: repeat;
    opacity: 0.03;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease-smooth);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 6rem;
    color: var(--gold-dark);
    opacity: 0.12;
    font-family: var(--font-serif);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--gold-dark);
}

.testimonial-card p {
    font-size: 1.0625rem;
    line-height: 1.75;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 0.9375rem;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/Branding_Pattern-25_Rina_Hirani.png');
    background-repeat: repeat;
    opacity: 0.02;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--beige-light);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: var(--navy-dark);
    color: var(--beige-light);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 3px solid var(--gold-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.footer-col p {
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold-light);
    font-weight: 600;
}

.footer-location svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: var(--gold-light);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

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

.footer-col ul li {
    margin-bottom: 0.875rem;
}

.footer-col ul li a {
    color: var(--beige-light);
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 0.5rem;
}

.social-links a svg {
    width: 16px;
    height: 16px;
}

.charity-links {
    margin-top: 1.5rem;
}

.charity-links p {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.charity-links a {
    display: block;
    color: var(--gold-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s var(--ease-smooth);
}

.charity-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(197, 161, 62, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badges span {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    background: rgba(197, 161, 62, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(197, 161, 62, 0.2);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1400px) {
    .nav-content,
    .container-wide {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 1200px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 320px;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.4s var(--ease-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .image-frame img {
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    
    .services-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--space-xl) 0;
    }
    
    .nav-content,
    .container-wide {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero {
        padding: calc(80px + 3rem) 0 4rem;
    }
    
    .hero-bg {
        background-attachment: scroll !important;
    }
    
    .hero-badges {
        gap: 0.75rem;
    }
    
    .badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .ticker-track {
        gap: 3rem;
    }
}
/* === ADDITIONAL SECTIONS === */

/* About Subtitle */
.about-subtitle {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 6rem;
}

.cert-item {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease-smooth);
    border: 2px solid rgba(197, 161, 62, 0.2);
}

.cert-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-dark);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.cert-icon svg {
    width: 32px;
    height: 32px;
}

.cert-item h4 {
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cert-item p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Products Section */
.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.product-item,
.product-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s var(--ease-smooth);
    border: 2px solid transparent;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-item:hover,
.product-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

/* Hide items 7+ (show only 6 items - 3 rows of 2) */
.product-card:nth-child(n+7),
.product-item:nth-child(n+7) {
    display: none;
}

.product-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--gold-dark);
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-item h4 {
    font-size: 1.25rem;
    color: var(--navy-dark);
    font-weight: 600;
}

/* Videos Section */
.videos-section {
    background: var(--navy-dark);
    position: relative;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/mnt/user-data/uploads/Branding_Pattern-24_Rina_Hirani.png');
    background-repeat: repeat;
    opacity: 0.02;
}

.videos-section .section-label {
    color: var(--gold-light);
}

.videos-section .section-title {
    color: var(--white);
}

.videos-section .section-description {
    color: var(--beige-light);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(197, 161, 62, 0.3);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.video-placeholder svg {
    width: 80px;
    height: 50px;
    fill: var(--gold-dark);
}

.video-placeholder p {
    color: var(--beige-light);
    font-size: 1.125rem;
}

/* Testimonials Carousel */
.testimonials-carousel {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    gap: 2.5rem;
    animation: scrollTestimonials 25s linear infinite;
    width: max-content;
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonials-track .testimonial-card {
    min-width: 450px;
}

/* Charity Section */
.charity-section {
    background: var(--navy-dark);
    position: relative;
}

.charity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/mnt/user-data/uploads/Branding_Pattern-25_Rina_Hirani.png');
    background-repeat: repeat;
    opacity: 0.02;
}

.charity-section .section-label {
    color: var(--gold-light);
}

.charity-section .section-title {
    color: var(--white);
}

.charity-section .section-description {
    color: var(--beige-light);
}

.charity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    padding: 0;
    margin: 0 auto;
}

.charity-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s var(--ease-smooth);
    border: 3px solid var(--gold-dark);
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.charity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.charity-icon {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
}

.charity-icon svg {
    width: 40px;
    height: 40px;
}

.charity-card h3 {
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 1.25rem;
}

.charity-card p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    background: var(--cream);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(197, 161, 62, 0.15);
    transition: all 0.3s var(--ease-smooth);
}

.faq-item.active {
    border-color: var(--gold-dark);
}

.faq-question {
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s var(--ease-smooth);
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question h4 {
    font-size: 1.25rem;
    color: var(--navy-dark);
    font-weight: 600;
    flex: 1;
    margin: 0;
}

.faq-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 300;
    transition: all 0.3s var(--ease-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2.5rem 2rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Instagram Section */
.instagram-section {
    background: var(--white);
}

.instagram-handle {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--navy-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white) !important;
    padding: 1.25rem 3rem;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s var(--ease-smooth);
    margin: 0 auto;
    display: flex;
    width: fit-content;
    box-shadow: 0 8px 24px rgba(188, 24, 136, 0.3);
    border: none;
}

.btn-instagram:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(188, 24, 136, 0.5);
}

.btn-instagram svg {
    width: 24px;
    height: 24px;
}

/* Photo Credit */
.photo-credit {
    text-align: center;
    margin-top: 3rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.photo-credit a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s var(--ease-smooth);
}

.photo-credit a:hover {
    color: var(--navy-dark);
}

/* Responsive Updates */
@media (max-width: 1200px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 1.5rem;
    }
    
    .charity-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    /* Keep products-grid at 2 columns on tablet/mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .testimonials-track .testimonial-card {
        min-width: 350px;
    }
}

@media (max-width: 768px) {
    /* Products grid - 2 columns on mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .instagram-handle {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.5rem 1.75rem;
    }
    
    .faq-question h4 {
        font-size: 1.125rem;
    }
    
    .faq-answer p {
        padding: 0 1.75rem 1.5rem;
    }
}

/* ===================================

/* About Page - Allura Font for Titles */
.about-preview .section-title-left,
.about-values-section .section-title {
    font-family: 'Allura', cursive;
    font-size: 4.5rem;
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        padding: 0 0.5rem;
    }
}

/* Static Gallery Grid - Optimized for older devices */
.static-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    padding: 2rem 0;
}

.static-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    border: 2px solid var(--gold-light);
    transition: transform 0.3s ease;
}

.static-gallery-item:hover {
    transform: translateY(-5px);
}

.static-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.static-gallery-item:hover 



/* Tablet - 4 columns */
@media (max-width: 1024px) {
    .static-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile - 3 columns */
@media (max-width: 768px) {
    .static-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    
}

/* Small mobile - 2 columns */
@media (max-width: 480px) {
    .static-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .static-gallery-item {
        border-width: 1px;
    }
    
    
    
    
}

/* Charity Logo Styling */
.charity-logo {
    width: auto !important;
    max-width: 150px !important;
    height: 100px !important;
    margin: 0 auto 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.charity-logo img {
    max-width: 150px !important;
    max-height: 100px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}
