/* ========================================
   Global Styles & Reset
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Brand Colors - Updated to match logo */
    --primary-color: #5f3179;
    --secondary-color: #8b5da7;
    --dark-color: #4a2561;
    --light-color: #eec9fd;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --lavender-light: #F4EFFF;
    
    /* Golden Yellow Accent Colors */
    --accent-color: #f8af0b;
    --accent-dark: #f8af0b;
    --accent-light: #f8af0b;
    
    /* Emergency Colors */
    --emergency-color: #f8af0b;
    --emergency-accent: #f8af0b;
    
    /* Supporting Colors */
    --success-color: #4ECDC4;
    
    /* Gradients - Purple only */
    --gradient-primary: linear-gradient(135deg, #5f3179 0%, #8b5da7 100%);
    --gradient-dark: linear-gradient(135deg, #4a2561 0%, #5f3179 100%);
    --gradient-emergency: linear-gradient(135deg, #f8af0b20 0%, #f8af0b20 100%);
    
    /* Typography */
    --font-primary: 'Quicksand', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-handwritten: 'Dancing Script', cursive;
    --font-fantasy: 'MedievalSharp', cursive;
    --font-lato: 'Lato', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Borders */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Logo scaling */
    --logo-scale: 1;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #eec9fd;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    background: #eec9fd !important;
    padding: 1.25rem 0 !important;
    box-shadow: none !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    position: relative;
    gap: 2rem;
    max-width: 1400px;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-size: 1.7rem;
    font-weight: 900;
    margin-right: var(--spacing-md);
    white-space: nowrap;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    grid-column: 2;
}

.nav-menu a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 10px rgba(95, 49, 121, 0.15);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(248, 175, 11, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(95, 49, 121, 0.3);
}

.nav-menu a:hover::after {
    width: 70%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    font-family: 'Poppins', sans-serif !important;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    font-family: 'Poppins', sans-serif !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-family: 'Poppins', sans-serif !important;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-emergency {
    background: var(--emergency-color);
    color: var(--white);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif !important;
}

.btn-emergency:hover {
    background: var(--emergency-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    background: #eec9fd;
    color: var(--dark-color);
    padding: 1.5rem 0 2.5rem 0;
    text-align: center;
    position: relative;
    overflow: visible;
    margin-top: 0;
    padding-top: 2rem;
    z-index: 1;
}



.hero-content {
    position: relative;
    z-index: 10;
}

.hero-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder for missing images */
.hero-image img[src*="profile.jpg"]:not([src*="http"]) {
    background: var(--gradient-primary);
}



.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.hero-title em {
    font-style: italic;
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    color: rgba(95, 49, 121, 0.9);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
}

/* ========================================
   Section Styles
   ======================================== */

.section {
    padding: 1.25rem 0 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.section-description {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 1.25rem;
    line-height: 1.6;
}

/* ========================================
   1:1 Coaching Section
   ======================================== */

.coaching {
    background: var(--white);
    position: relative;
    z-index: 1;
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* ========================================
   Coaching Carousel - Swiper.js Implementation
   ======================================== */

/* Swiper Container */
.coaching-carousel {
    margin-top: 0.5rem;
    padding: 15px 60px 15px;
    position: relative;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

/* Swiper Wrapper */
.swiper-wrapper {
    align-items: stretch;
}

/* Swiper Slide */
.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* Coaching Card within Swiper */
.swiper-slide .coaching-card {
    width: 100%;
    max-width: 100%;
    min-width: unset;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    transition: var(--transition);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white) !important;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    margin-top: -25px;
    position: absolute;
    top: 50%;
    z-index: 100;
    opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    opacity: 1;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.swiper-button-next {
    right: -25px;
}

.swiper-button-prev {
    left: -25px;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: var(--spacing-md);
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--light-color);
    opacity: 0.6;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.2);
}

/* Desktop - Ensure arrows have enough space */
@media (min-width: 1024px) {
    .coaching-carousel {
        padding: 20px 80px 40px;
    }
    
    .swiper-button-next {
        right: 15px;
    }
    
    .swiper-button-prev {
        left: 15px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .coaching-carousel {
        padding: 20px 60px 40px;
    }
    
    .swiper-button-next {
        right: 10px;
    }
    
    .swiper-button-prev {
        left: 10px;
    }
}

/* Mobile Responsive - Integrated with main mobile breakpoints below */
@media (max-width: 767px) {
    .swiper-slide .coaching-card {
        max-width: 100%;
        min-width: unset;
    }
    
    .swiper-button-next {
        right: 5px;
    }
    
    .swiper-button-prev {
        left: 5px;
    }
    
    .swiper-pagination {
        margin-top: var(--spacing-sm);
    }
}

.coaching-card {
    background: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius-lg);
    padding: 1rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

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

/* Active/Center slide styling */
.swiper-slide-active .coaching-card {
    background: linear-gradient(135deg, #f4efff 0%, #eec9fd 100%);
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 8px 32px rgba(95, 49, 121, 0.3);
}

.swiper-slide-active .coaching-card .btn-secondary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

/* Diagonal stripe hover effect removed for center/active slide buttons */
/*
.swiper-slide-active .coaching-card .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.swiper-slide-active .coaching-card .btn-secondary:hover::before {
    left: 100%;
}
*/

/* Ensure non-active slides have the correct button styling */
.coaching-card .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.coaching-card .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Mobile swipe hint - subtle gradient edges */
@media (max-width: 768px) {
    .coaching-carousel::before,
    .coaching-carousel::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 40px;
        width: 40px;
        z-index: 5;
        pointer-events: none;
        opacity: 0.4;
    }
    
    .coaching-carousel::before {
        left: 0;
        background: linear-gradient(90deg, rgba(238, 201, 253, 0.8) 0%, transparent 100%);
    }
    
    .coaching-carousel::after {
        right: 0;
        background: linear-gradient(270deg, rgba(238, 201, 253, 0.8) 0%, transparent 100%);
    }
}

.coaching-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    background: linear-gradient(to bottom, var(--light-color), var(--white));
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid var(--dark-color);
    border-top: 8px solid transparent;
}

.ribbon.most-popular-ribbon {
    background: var(--primary-color);
}

.ribbon.most-popular-ribbon::after {
    border-right: 8px solid var(--dark-color);
}

.ribbon.returning-clients-ribbon {
    background: var(--accent-color);
}

.ribbon.returning-clients-ribbon::after {
    border-right: 8px solid var(--accent-dark);
}

/* Tag Styles - Simple rectangle banner (smaller) */
.tag {
    position: absolute;
    top: 8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 3px 12px 3px 8px;
    font-size: 0.6rem;
    font-weight: var(--font-weight-semibold);
    box-shadow: var(--shadow-sm);
    z-index: 10;
    font-family: var(--font-primary);
    transition: all 0.2s ease;
}

.tag:hover {
    transform: translateX(-2px);
    box-shadow: var(--shadow-md);
}

.tag-most-popular {
    background: var(--primary-color);
    color: var(--white);
}

.tag-returning-clients {
    background: var(--accent-color);
    color: var(--white);
}

/* Keep original ribbon styles commented for easy reversion */
/*
.ribbon {
    position: absolute;
    top: 8px;
    right: -5px;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    font-family: var(--font-primary);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.ribbon:hover {
    transform: translateX(-2px);
    box-shadow: var(--shadow-md);
}

.ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -4px;
    border-left: 4px solid transparent;
    border-right: 4px solid var(--dark-color);
    border-top: 4px solid transparent;
}

.ribbon-most-popular {
    background: var(--primary-color);
}

.ribbon-most-popular::after {
    border-right: 4px solid var(--dark-color);
}

.ribbon-returning-clients {
    background: var(--accent-color);
    top: 8px;
}

.ribbon-returning-clients::after {
    border-right: 4px solid var(--accent-dark);
}
*/

.card-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.coaching-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--dark-color);
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.coaching-card > p {
    color: var(--text-light);
    margin-bottom: 10px;
    min-height: 42px;
    font-size: 0.85rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 10px;
    flex-grow: 1;
    
}

.features li {
    padding: 3px 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.features i {
    color: var(--success-color);
    margin-right: var(--spacing-xs);
    margin-top: 4px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.price {
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin: 8px 0;
    margin-top: auto;
    transition: color 0.3s ease;
}

.calendly-container {
    margin-top: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
}

.calendly-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.close-calendly {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-calendly:hover {
    color: var(--primary-color);
}

/* ========================================
   Self-Guided Tools Section
   ======================================== */

.products {
    background: var(--light-color);
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* New Product Badge */
.product-badge-new {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(248, 175, 11, 0.4);
    z-index: 10;
    animation: newBadgePulse 2s ease-in-out infinite;
}

@keyframes newBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: transparent;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
}



.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.product-title-clickable {
    cursor: pointer;
    transition: color 0.3s ease;
}

.product-title-clickable:hover {
    color: var(--primary-color);
}

.product-content > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    min-height: 50px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-features {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-features span {
    background: var(--light-color);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    color: var(--text-dark);
}

.product-features i {
    color: var(--primary-color);
    margin-right: 5px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-color);
}

.product-footer .price {
    font-size: 1.6rem;
    margin: 0;
}

/* ========================================
   Emergency Coaching Section
   ======================================== */

.emergency {
    background: 
        var(--gradient-emergency),
        var(--white);
    position: relative;
    z-index: 1;
}

.emergency-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.emergency-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: var(--emergency-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(248, 175, 11, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(248, 175, 11, 0);
    }
}

.emergency-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.emergency-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.emergency-feature {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    display: flex;
    align-items: start;
    gap: var(--spacing-sm);
    text-align: left;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.emergency-feature i {
    font-size: 2rem;
    color: var(--emergency-color);
    flex-shrink: 0;
}

.emergency-feature h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--dark-color);
}

.emergency-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.emergency-cta {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.emergency-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.price-label {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.emergency-note {
    background: var(--white);
    padding: var(--spacing-md);
    border-left: 4px solid var(--emergency-color);
    border-radius: var(--border-radius-sm);
    text-align: left;
    color: var(--text-light);
    font-size: 0.9rem;
}

.emergency-note i {
    color: var(--emergency-color);
    margin-right: var(--spacing-xs);
}

/* ========================================
    Client Stories Section
    ======================================== */

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr; /* Forces all rows to be equal height */
    gap: var(--spacing-md) 0.75rem; /* Keep row gap large, reduce column gap */
    margin-top: var(--spacing-md);
}

/* Specific styling for client story cards */
.stories-grid .product-card {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem 0.3rem 1.5rem; /* top right bottom left - good side/top margins, minimal bottom */
}

.stories-grid .product-card .product-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Override product paragraph spacing for client testimonials */
.stories-grid .product-content > p {
    margin-bottom: 0.5rem !important; /* Override the 2rem from .product-content > p */
    min-height: auto; /* Remove the min-height requirement */
}

.client-testimonial {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 0.5rem; /* Clear paragraph separation */
    font-size: 0.95rem;
}

/* Remove extra margin from last paragraph */
.client-testimonial:last-of-type {
    margin-bottom: 0.1rem !important; /* Almost nothing before initial */
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    box-sizing: border-box;
}

.product-card .product-content {
    padding: 0;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}



.client-initial {
    text-align: right;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    font-size: 1.1rem;
    padding-top: 0.1rem; /* Almost no space from content above */
    margin-bottom: 0;
    font-style: normal;
}

/* ========================================
   About Section
   ======================================== */

.about {
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
    max-width: 250px;
    margin: 0 auto;
    align-self: start;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-text {
    text-align: left;
}



.about-intro {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-values {
    margin: var(--spacing-lg) 0;
}

.about-values h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.value-item {
    background: rgba(238, 201, 253, 0.4);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(93, 63, 124, 0.15);
    border: 1px solid rgba(93, 63, 124, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(93, 63, 124, 0.25);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 10px rgba(93, 63, 124, 0.3);
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.about-credentials {
    background: rgba(238, 201, 253, 0.4);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin-top: var(--spacing-lg);
}

.about-credentials h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

.about-credentials ul {
    list-style: none;
}

.about-credentials li {
    padding: var(--spacing-xs) 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
}

.about-credentials i {
    color: var(--primary-color);
    margin-right: var(--spacing-xs);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* ========================================
   Socials Section
   ======================================== */

.socials {
    background: var(--light-color);
    position: relative;
    z-index: 1;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: 2rem;
}

.socials-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link i {
    font-size: 1.25rem;
}

.social-link.tiktok:hover {
    background: #000000;
    border-color: #000000;
}

.social-link.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-link.email:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
}

.social-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.social-card.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-card.tiktok .social-icon {
    background: #000000;
}

.social-card.youtube .social-icon {
    background: #FF0000;
}

.social-card.email .social-icon {
    background: var(--gradient-primary);
}

.social-content {
    text-align: left;
    flex: 1;
    min-width: 0;
}

.social-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.social-content p {
    color: var(--text-light);
    margin-bottom: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.social-cta {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
}

/* Newsletter */
.newsletter {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.newsletter > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-primary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    align-items: start;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    font-weight: 600;
}

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

.footer-col li {
    margin-bottom: var(--spacing-xs);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 968px) {
    /* ========================================
       MOBILE NAVIGATION - SLIDE-IN WITH OVERLAY
       ======================================== */
    
    /* Dark overlay behind menu when open - moved to body */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(95, 49, 121, 0.4);
        backdrop-filter: blur(3px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 998;
    }
    
    body.menu-open::before {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Slide-in menu from right */
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        left: auto;
        flex-direction: column;
        background: #eec9fd !important;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        text-align: left;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 30px rgba(95, 49, 121, 0.3);
        padding: 0;
        padding-top: 5rem;
        padding-bottom: 2rem;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
    }
    
    /* Sparkle background for mobile menu */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(2px 2px at 20% 30%, white, transparent),
            radial-gradient(2px 2px at 60% 70%, white, transparent),
            radial-gradient(1px 1px at 50% 50%, white, transparent),
            radial-gradient(1px 1px at 80% 10%, white, transparent),
            radial-gradient(2px 2px at 90% 60%, white, transparent),
            radial-gradient(1px 1px at 33% 80%, white, transparent),
            radial-gradient(2px 2px at 15% 90%, white, transparent);
        background-size: 200% 200%;
        background-position: 0% 0%;
        opacity: 0.5;
        animation: sparkleMove 20s ease-in-out infinite;
        pointer-events: none;
        z-index: 0;
    }
    
    @keyframes sparkleMove {
        0%, 100% { background-position: 0% 0%; }
        50% { background-position: 100% 100%; }
    }
    
    /* Ensure menu items appear above sparkles */
    .nav-menu li {
        position: relative;
        z-index: 1;
    }
    
    /* Add decorative header to mobile menu */
    .nav-menu::after {
        content: '✦';
        position: fixed;
        top: 1.5rem;
        right: 50%;
        transform: translateX(50%);
        font-size: 2rem;
        color: var(--primary-color);
        text-shadow: 0 0 10px rgba(95, 49, 121, 0.5);
        animation: menuSparkle 3s ease-in-out infinite;
        pointer-events: none;
    }
    
    @keyframes menuSparkle {
        0%, 100% { opacity: 0.6; transform: translateX(50%) scale(1) rotate(0deg); }
        50% { opacity: 1; transform: translateX(50%) scale(1.2) rotate(90deg); }
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Staggered animation for menu items */
    .nav-menu.active li {
        animation: slideInMenuItem 0.3s ease-out backwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(7) { animation-delay: 0.35s; }
    
    @keyframes slideInMenuItem {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Full-width menu items */
    .nav-menu li {
        margin: 0.2rem 0 !important;
        padding: 0 1rem;
        border-bottom: none;
        list-style: none;
        width: 100%;
    }
    
    .nav-menu li a {
        display: flex !important;
        padding: 0.75rem 1.25rem !important;
        margin: 0 !important;
        font-size: 0.95rem !important;
        background: rgba(255, 255, 255, 0.7) !important;
        border: 1px solid rgba(95, 49, 121, 0.2) !important;
        box-shadow: 0 1px 4px rgba(95, 49, 121, 0.08) !important;
        border-radius: 10px !important;
        backdrop-filter: blur(5px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 48px;
        align-items: center;
        justify-content: center !important;
        text-align: center !important;
        color: var(--primary-color) !important;
        font-weight: 600;
        position: relative;
        overflow: hidden;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Gradient accent bar on left */
    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--gradient-primary);
        transform: scaleY(0);
        transition: transform 0.3s ease;
        border-radius: 12px 0 0 12px;
    }
    
    /* Subtle shimmer effect */
    .nav-menu a::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.4) 50%, 
            transparent 100%);
        transition: left 0.5s ease;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 255, 255, 0.9);
        transform: translateX(-5px);
        box-shadow: 0 4px 15px rgba(95, 49, 121, 0.25), 0 0 20px rgba(95, 49, 121, 0.1);
        border-color: var(--primary-color);
    }
    
    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        transform: scaleY(1);
    }
    
    .nav-menu a:hover::after {
        left: 100%;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Animated Hamburger to X - More Obvious Design */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
        width: 44px;
        height: 44px;
        padding: 10px;
        background: var(--gradient-primary);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 12px rgba(95, 49, 121, 0.4), 0 0 20px rgba(95, 49, 121, 0.2);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    /* Add pulsing animation to make it more noticeable */
    .hamburger::before {
        content: '';
        position: absolute;
        inset: -4px;
        background: var(--gradient-primary);
        border-radius: 14px;
        opacity: 0.3;
        animation: menuButtonPulse 2s ease-in-out infinite;
        z-index: -1;
    }
    
    @keyframes menuButtonPulse {
        0%, 100% { transform: scale(1); opacity: 0; }
        50% { transform: scale(1.15); opacity: 0.3; }
    }
    
    .hamburger:hover {
        background: var(--gradient-dark);
        box-shadow: 0 6px 16px rgba(95, 49, 121, 0.5), 0 0 25px rgba(95, 49, 121, 0.3);
        transform: scale(1.05);
    }
    
    .hamburger span {
        position: absolute;
        left: 10px;
        width: calc(100% - 20px);
        height: 3px;
        transition: all 0.3s ease;
        background: var(--white);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        border-radius: 2px;
    }
    
    .hamburger span:nth-child(1) {
        top: 12px;
    }
    
    .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .hamburger span:nth-child(3) {
        bottom: 12px;
    }
    
    /* Hamburger active state (X) */
    .hamburger.active {
        background: var(--gradient-dark);
        box-shadow: 0 4px 16px rgba(95, 49, 121, 0.5);
        transform: rotate(90deg);
    }
    
    .hamburger.active::before {
        animation: none;
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
/* Reduce navbar padding on mobile */
    .navbar {
        padding: 0.5rem 0 !important;
    }
    
    .navbar .container {
        gap: 0.75rem;
    }
    
    /* Reduce brand logo size on mobile */
    .nav-brand h2 {
        font-size: 1.3rem;
    }
    
    /* Adjust mobile menu padding for small screens */
    .nav-menu {
        padding: 3rem 0 1.5rem 0;
    }
    
    .navbar .container {
        gap: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    /* Move hamburger to left, logo to absolute center on mobile */
    .hamburger {
        order: 1;
        flex-shrink: 0;
        z-index: 10;
    }
    
    .nav-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        text-align: center;
        margin: 0;
        z-index: 5;
    }
    
    .nav-brand .logo-link {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* ========================================
       LAYOUT ADJUSTMENTS
       ======================================== */
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .footer-col {
        margin-bottom: var(--spacing-md);
    }
    
    /* Reduce brand logo size on mobile */
    .nav-brand h2 {
        font-size: 1.4rem;
    }
    
    /* Section spacing optimization */
    .section {
        padding: 3.5rem 0;
    }
    
    /* Container breathing room */
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 768px) {
    /* ========================================
       TABLET OPTIMIZATIONS
       ======================================== */
    
    /* Navbar adjustments */
    .navbar {
        padding: 1rem 0 !important;
    }
    
    .navbar .container {
        gap: 1.5rem;
    }
    
    .nav-brand h2 {
        font-size: 1.5rem;
    }
    
    /* Typography improvements */
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .section-description {
        font-size: 1.05rem;
    }
    
    /* Hero adjustments */
    .hero {
        padding: 3rem 0;
        padding-top: 4rem;
    }
    
    .hero-image {
        width: 180px;
        height: 180px;
    }
    
    /* Section spacing */
    .section {
        padding: 3rem 0;
    }
    
    /* Layout adjustments */
    .coaching-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-details {
        grid-template-columns: 1fr;
    }
    
    /* Newsletter form stacks vertically */
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    /* Client stories - carousel style for mobile */
    .stories-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        padding-bottom: 1rem;
    }
    
    .stories-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    
    .stories-grid .product-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 1.5rem;
    }
    
    .client-testimonial {
        font-size: 1.05rem;
        line-height: 1.65;
    }
    
    /* Products grid optimization */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image {
        height: 240px;
    }
    
    .product-image img {
        object-position: center 10%;
    }
    
    /* Emergency section */
    .emergency-price {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .emergency-price .price {
        font-size: 2.5rem;
    }
    
    /* Footer links larger for easier tapping */
    .footer-col a {
        font-size: 1.05rem;
        display: inline-block;
        padding: 0.25rem 0;
    }
    
    /* Make footer more compact on mobile */
    .footer {
        padding: var(--spacing-md) 0 var(--spacing-sm);
    }
    
    .footer-content {
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .footer-brand h3 {
        font-size: 1.4rem;
        margin-bottom: 0.25rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-col a {
        font-size: 0.9rem;
    }
    
    .footer-col li {
        margin-bottom: 0.25rem;
    }
    
    .footer-bottom {
        padding-top: var(--spacing-sm);
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* ========================================
   LARGE PHONES & PHABLETS (600px)
   ======================================== */
@media (max-width: 600px) {
    /* Coaching carousel mobile improvements - wider cards */
    .coaching-carousel {
        padding: 10px 25px 30px;
    }
    
    .coaching-card {
        padding: 1rem 1.25rem;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .coaching-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .coaching-card > p {
        font-size: 0.88rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .features {
        margin-bottom: 12px;
    }
    
    .features li {
        font-size: 0.88rem;
        padding: 5px 0;
        line-height: 1.35;
    }
    
    .features i {
        font-size: 0.8rem;
        margin-right: 6px;
    }
    
    .price {
        margin-bottom: 10px;
    }
    
    /* Tag adjustments for mobile */
    .tag {
        font-size: 0.55rem;
        padding: 3px 10px 3px 8px;
        top: 6px;
    }
    
    /* Products grid - full width earlier */
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   STANDARD MOBILE PHONES (480px)
   ======================================== */
@media (max-width: 480px) {
    /* ========================================
       TYPOGRAPHY SCALE
       ======================================== */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.25;
    }
    
    .hero-description {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* ========================================
       TOUCH TARGETS - MINIMUM 48px
       ======================================== */
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .btn-primary {
        min-height: 48px;
    }
    
    .btn-secondary {
        min-height: 48px;
    }
    
    .btn-emergency {
        min-height: 52px;
        font-size: 1.05rem;
    }
    
    /* ========================================
       SPACING & LAYOUT
       ======================================== */
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .hero {
        padding: 2.5rem 0;
        padding-top: 3rem;
    }
    
    .hero-image {
        width: 160px;
        height: 160px;
        margin-bottom: 1.5rem;
    }
    
    /* ========================================
       COACHING CAROUSEL MOBILE
       ======================================== */
    .coaching-carousel {
        padding: 10px 50px 30px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 44px;
        height: 44px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1rem;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .swiper-pagination-bullet-active {
        width: 14px;
        border-radius: 7px;
    }
    
    .coaching-card .btn-secondary {
        padding: 12px 20px;
        width: 100%;
        margin-top: 12px;
    }
    
    .price {
        font-size: 2rem;
        margin: 12px 0;
    }
    
    /* ========================================
       PRODUCTS SECTION
       ======================================== */
    .products-grid {
        gap: 1.75rem;
    }
    
    .product-content h3 {
        font-size: 1.4rem;
    }
    
    .product-footer .btn {
        width: 100%;
    }
    
    /* Fix spacing between price and button on mobile */
    .product-footer {
        padding-top: var(--spacing-md);
        gap: 1rem;
    }
    
    .product-footer .price {
        margin-bottom: 0.5rem;
    }
    
    /* ========================================
       CLIENT STORIES
       ======================================== */
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stories-grid .product-card {
        padding: 1.5rem 1.25rem;
    }
    
    .client-testimonial {
        font-size: 1.05rem;
        line-height: 1.65;
        margin-bottom: 0.75rem;
    }
    
    .client-initial {
        font-size: 1.15rem;
        padding-top: 0.5rem;
    }
    
    /* ========================================
       EMERGENCY SECTION
       ======================================== */
    .emergency-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .emergency-description {
        font-size: 1.05rem;
    }
    
    .emergency-feature {
        padding: 1.25rem;
    }
    
    .emergency-feature h4 {
        font-size: 1.05rem;
    }
    
    .emergency-cta {
        padding: 1.5rem;
    }
    
    .emergency-price .price {
        font-size: 2.8rem;
    }
    
    .price-label {
        font-size: 1.15rem;
    }
    
    /* ========================================
       FORMS & INPUTS
       ======================================== */
    .newsletter-form input {
        font-size: 16px; /* Prevents iOS zoom */
        height: 52px;
        padding: 14px 18px;
    }
    
    .newsletter-form button {
        height: 52px;
        font-size: 1.05rem;
    }
    
    /* ========================================
       SOCIAL LINKS
       ======================================== */
    .social-link {
        padding: 0.85rem 1.75rem;
        font-size: 1.05rem;
        min-height: 48px;
    }
    
    .social-link i {
        font-size: 1.35rem;
    }
    
    /* ========================================
       ABOUT SECTION
       ======================================== */
    .about-intro {
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.75;
    }
    
    .value-item {
        padding: 1.5rem 1.25rem;
    }
    
    .value-item h4 {
        font-size: 1.2rem;
    }
}

/* ========================================
   SMALL PHONES (iPhone SE, 375px and below)
   ======================================== */
@media (max-width: 375px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .container {
        padding: 0 0.875rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .coaching-carousel {
        padding: 10px 45px 25px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 0.9rem;
    }
    
    .hero-image {
        width: 140px;
        height: 140px;
    }
    
    .coaching-card h3 {
        font-size: 1.1rem;
    }
    
    .emergency-price .price {
        font-size: 2.4rem;
    }
}

/* ========================================
   Accessibility - Focus States
   ======================================== */

/* Better focus states for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.btn:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.nav-menu a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

/* Remove default focus outline (replaced with custom) */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: none;
}

/* Touch feedback for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.97);
    }
    
    .social-link:active {
        transform: scale(0.97);
    }
    
    .nav-menu a:active {
        background: rgba(95, 49, 121, 0.15);
    }
}

/* ========================================
   Utility Classes
   ======================================== */

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

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

/* ========================================
   Mobile-Specific Optimizations
   ======================================== */

/* Smooth scrolling for mobile */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Better tap highlighting */
* {
    -webkit-tap-highlight-color: rgba(95, 49, 121, 0.1);
    -webkit-touch-callout: none;
}

/* Allow text selection only where needed */
p, h1, h2, h3, h4, h5, h6, li, span {
    -webkit-user-select: text;
    user-select: text;
}

/* Disable selection on interactive elements */
button, a, .btn, .nav-menu {
    -webkit-user-select: none;
    user-select: none;
}

/* Optimize font rendering on mobile */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Touch-friendly card interactions */
@media (hover: none) and (pointer: coarse) {
    .coaching-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .product-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Remove hover effects on touch devices */
    .coaching-card:hover {
        transform: none;
    }
    
    .product-card:hover {
        transform: none;
    }
}

/* Optimize images for mobile bandwidth */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Override crisp-edges for hero logo - needs smooth rendering */
.hero-image img,
#heroLogoImg {
    image-rendering: auto;
    image-rendering: -webkit-optimize-quality;
}

/* Prevent layout shift during font loading */
@media (max-width: 768px) {
    body {
        font-display: swap;
    }
}

/* Safe area padding for notched devices (iPhone X and above) */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .navbar {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

/* Faster hardware-accelerated animations on mobile */
@media (max-width: 768px) {
    .btn,
    .coaching-card,
    .product-card,
    .nav-menu,
    .hamburger {
        will-change: transform;
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Optimize carousel performance on mobile */
@media (max-width: 768px) {
    .swiper-slide {
        will-change: transform;
    }
    
    .sparkle-container {
        /* Reduce sparkles on mobile for better performance */
        opacity: 0.6;
    }
}

/* Print styles (bonus optimization) */
@media print {
    .navbar,
    .hamburger,
    .sparkle-container,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
        display: none !important;
    }
}
