/* =====================================================
   Bakery by Maria - Elegant Pink & White Theme
   ===================================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Soft Pink tones */
    --color-primary: #E91E63;           /* Pink */
    --color-primary-dark: #C2185B;      /* Dark Pink */
    --color-primary-light: #F8BBD9;     /* Light Pink */
    --color-primary-lighter: #FCE4EC;   /* Very Light Pink */
    --color-accent: #D81B60;            /* Accent Pink */

    /* Light Theme Colors */
    --color-bg-light: #FFFFFF;          /* White */
    --color-bg-soft: #FFF8FA;           /* Soft Pink White */
    --color-bg-card: #FFFFFF;           /* Card Background */
    --color-bg-section: #FCE4EC;        /* Section Background */

    /* Text Colors */
    --color-text-primary: #3D3D3D;      /* Dark Gray */
    --color-text-secondary: #666666;    /* Medium Gray */
    --color-text-muted: #999999;        /* Light Gray */
    --color-text-light: #FFFFFF;        /* White */

    /* Accent Colors */
    --color-gold: #D4A574;              /* Warm Gold (dulce de leche) */
    --color-brown: #8B5A2B;             /* Cookie Brown */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    --gradient-soft: linear-gradient(135deg, var(--color-primary-lighter) 0%, var(--color-bg-soft) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(233, 30, 99, 0.85) 0%, rgba(194, 24, 91, 0.9) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(233, 30, 99, 0.1);
    --shadow-md: 0 4px 16px rgba(233, 30, 99, 0.15);
    --shadow-lg: 0 8px 32px rgba(233, 30, 99, 0.2);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);

    /* Borders */
    --border-subtle: 1px solid rgba(233, 30, 99, 0.1);
    --border-accent: 2px solid var(--color-primary);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Dancing Script', cursive;

    /* Spacing */
    --section-padding: 80px 0;
    --section-padding-mobile: 50px 0;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* Section Styling */
.section {
    padding: var(--section-padding);
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile);
    }
}

.section-pink {
    background-color: var(--color-bg-section);
}

.section-soft {
    background: var(--gradient-soft);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--color-text-primary);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    line-height: 1.1;
    text-decoration: none;
}

.brand-logo {
    height: 50px;
    width: auto;
    margin-right: 12px;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1;
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--color-text-primary);
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border-color: var(--color-primary-light);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(233, 30, 99, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-instagram:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    text-align: center;
    padding: 120px 20px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-tagline {
    color: var(--color-primary-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero h1 .script-text {
    font-family: var(--font-script);
    font-size: 5rem;
    display: block;
    font-weight: 400;
}

.hero-subtitle {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-location {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.hero-location i {
    margin-right: 8px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 .script-text {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Decorative wave at bottom of hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23FFFFFF' d='M0,50 C360,100 1080,0 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
}

/* =====================================================
   Cards
   ===================================================== */
.card-custom {
    background-color: var(--color-bg-card);
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-card);
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-custom .card-body {
    padding: 1.5rem;
}

.card-custom .card-title {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
}

.card-custom .card-text {
    color: var(--color-text-secondary);
}

/* Product Cards */
.product-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card .icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
    border: 3px solid var(--color-primary-light);
}

.product-card:hover .icon-wrapper {
    transform: scale(1.1);
    background: var(--gradient-primary);
    color: white;
    border-color: var(--color-primary);
}

.product-card h4 {
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.product-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.product-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* =====================================================
   About Section
   ===================================================== */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--color-primary-light);
    border-radius: 50%;
    z-index: -1;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--color-primary-lighter);
    border-radius: 50%;
    z-index: -1;
}

.about-text .lead {
    color: var(--color-text-primary);
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 15px;
    margin-top: 3px;
}

.about-feature h5 {
    margin-bottom: 0.25rem;
    color: var(--color-text-primary);
}

.about-feature p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* =====================================================
   Contact Section
   ===================================================== */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.contact-card h4 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 15px;
    margin-top: 3px;
    width: 30px;
}

.contact-item a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-item span {
    color: var(--color-text-secondary);
}

/* Social Links */
.social-links-large {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link-btn.whatsapp {
    background: #25D366;
}

.social-link-btn.phone {
    background: var(--color-primary);
}

.social-link-btn:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
    box-shadow: var(--shadow-md);
}

/* =====================================================
   Alfajores Showcase
   ===================================================== */
.alfajor-showcase {
    background: var(--gradient-soft);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.alfajor-showcase::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--color-primary-light);
    border-radius: 50%;
    opacity: 0.5;
}

.alfajor-showcase::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: var(--color-primary-lighter);
    border-radius: 50%;
    opacity: 0.5;
}

.alfajor-showcase-content {
    position: relative;
    z-index: 1;
}

.alfajor-showcase h3 {
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.alfajor-showcase p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

.alfajor-feature {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    box-shadow: var(--shadow-sm);
}

.alfajor-feature i {
    color: var(--color-primary);
    margin-right: 8px;
}

/* =====================================================
   Product Images
   ===================================================== */
.product-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 0;
}

.product-image-wrapper img {
    transition: transform 0.4s ease;
}

.product-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Fallback placeholder styling (kept for backwards compatibility) */
.product-image-placeholder {
    background: var(--gradient-soft);
    border-radius: 20px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--color-primary-light);
    color: var(--color-primary);
}

.product-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.product-image-placeholder span {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* =====================================================
   Presentation Cards
   ===================================================== */
.presentation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    height: 100%;
}

.presentation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Presentation Card Images */
.presentation-image {
    margin: 0;
    overflow: hidden;
}

.presentation-image img {
    transition: transform 0.4s ease;
}

.presentation-card:hover .presentation-image img {
    transform: scale(1.08);
}

/* Fallback placeholder styling (kept for backwards compatibility) */
.presentation-image-placeholder {
    background: var(--gradient-soft);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 3px dashed var(--color-primary-light);
    color: var(--color-primary);
}

.presentation-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.presentation-image-placeholder span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.presentation-info {
    padding: 1.5rem;
    text-align: center;
}

.presentation-info h4 {
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.presentation-info p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.presentation-price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Share Links */
.share-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 1rem;
    border-top: 1px solid var(--color-primary-lighter);
}

.share-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.email {
    background: var(--color-primary);
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
    box-shadow: var(--shadow-sm);
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
    background: var(--color-text-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-right: 12px;
    filter: brightness(0) invert(1);
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand .brand-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.social-links-footer {
    display: flex;
    gap: 12px;
}

.social-links-footer a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links-footer a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.site-footer h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--color-primary-light);
    margin-right: 12px;
    margin-top: 3px;
    width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* =====================================================
   Back to Top Button
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 576px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* =====================================================
   Utility Classes
   ===================================================== */
.text-primary-custom {
    color: var(--color-primary) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

/* Decorative Divider */
.decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
}

.decorative-divider::before,
.decorative-divider::after {
    content: '';
    flex: 1;
    max-width: 150px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-primary-light));
}

.decorative-divider::after {
    background: linear-gradient(to left, transparent, var(--color-primary-light));
}

.decorative-divider i {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin: 0 20px;
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .contact-card {
        padding: 1.5rem;
    }
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* =====================================================
   Founder Section
   ===================================================== */
.founder-image-wrapper {
    margin: 0;
}

.founder-image-placeholder {
    width: 280px;
    height: 280px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid var(--color-primary-light);
    box-shadow: var(--shadow-lg);
}

.founder-image-placeholder i {
    font-size: 6rem;
    color: var(--color-primary);
    opacity: 0.6;
}

.founder-image-placeholder span {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.founder-image-wrapper img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-primary-light);
    box-shadow: var(--shadow-lg);
}

.founder-caption {
    text-align: center;
}

.founder-name {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.founder-title {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin: 0;
}

/* =====================================================
   FAQ Accordion
   ===================================================== */
#faqAccordion .accordion-item {
    background: white;
    border: none;
    border-radius: 16px !important;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

#faqAccordion .accordion-button {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    background: white;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

#faqAccordion .accordion-button:not(.collapsed) {
    background: var(--color-primary-lighter);
    color: var(--color-primary-dark);
}

#faqAccordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

#faqAccordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E91E63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#faqAccordion .accordion-body {
    font-family: var(--font-body);
    color: var(--color-text-secondary);
    padding: 0 1.5rem 1.25rem;
    line-height: 1.7;
}

#faqAccordion .accordion-body a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

#faqAccordion .accordion-body a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

#faqAccordion .accordion-body strong {
    color: var(--color-text-primary);
}

/* Print styles */
@media print {
    .navbar,
    .site-footer,
    .social-links,
    .btn,
    .back-to-top {
        display: none !important;
    }
}
