/* ====================================
   JOY SISTERLOCKS - MAIN STYLESHEET
   Professional Loc Styling & Maintenance
   Berry & Blush Palette | Bold + Feminine + Professional
   Sidebar Mobile Menu (30% width) | Height adapts to content
   Full Page Overlay | FAQ Fixed
   ==================================== */

:root {
    /* Brand Colors - Berry & Blush Palette */
    --raspberry-pink: #D6456F;
    --dusty-rose: #C59B9B;
    --deep-plum: #4A2B42;
    --warm-blush: #F4E3E5;
    --rose-gold: #E4B7B7;
    --soft-charcoal: #5A4A52;
    
    /* UI Elements */
    --card-bg: #FFFFFF;
    --card-hover: #FDF8F9;
    --footer-bg: #FDF8F9;
    --border-light: rgba(74, 43, 66, 0.1);
    --whatsapp: #25D366;
    --whatsapp-hover: #1da15a;
    --instagram: #E4405F;
    --instagram-hover: #c13544;
    --tiktok: #000000;
    --tiktok-hover: #161616;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--warm-blush);
    color: var(--soft-charcoal);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo h1, .section-title, .product-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== IMAGE ACCESSIBILITY & PERFORMANCE ========== */
img {
    display: block;
    max-width: 100%;
}

/* ========== ACCESSIBILITY + FOCUS STATES ========== */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--raspberry-pink);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Hover performance optimization */
.product-card,
.journal-card,
.bundle-card {
    will-change: transform;
}

/* ========== HEADER ========== */
header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-light);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 26px;
    color: var(--raspberry-pink);
    letter-spacing: 1px;
}

.logo p {
    font-size: 10px;
    color: var(--soft-charcoal);
    letter-spacing: 1px;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-plum);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--raspberry-pink);
}

/* Active navigation styling */
.nav-links a.active,
.mobile-menu a.active {
    color: var(--raspberry-pink);
    position: relative;
}

/* ========== MOBILE MENU - 30% WIDTH, HEIGHT ADAPTS TO CONTENT ========== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1002;
    padding: 8px;
    margin: 0;
    position: relative;
    right: 0;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--raspberry-pink);
    margin: 3px 0;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    min-width: 200px;
    max-width: 260px;
    height: auto;
    max-height: 100vh;
    background: var(--warm-blush);
    z-index: 1001;
    padding: 70px 20px 30px 20px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 0 20px;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    text-align: left;
}

.mobile-menu li {
    margin: 15px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--deep-plum);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    display: block;
    padding: 8px 0;
}

.mobile-menu a:hover {
    color: var(--raspberry-pink);
}

/* ========== OVERLAY - FULL PAGE COVERAGE (FIXED - FROM BETTY'S) ========== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Body scroll lock when menu is open */
.no-scroll {
    overflow: hidden;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--whatsapp);
    color: white;
}

.btn-primary:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--raspberry-pink);
    color: var(--raspberry-pink);
}

.btn-outline:hover {
    background: var(--raspberry-pink);
    color: white;
}

.btn-gold {
    background: var(--raspberry-pink);
    color: white;
}

.btn-gold:hover {
    background: var(--dusty-rose);
}

/* Social Media Button Colors */
.btn-instagram {
    background: var(--instagram);
    color: white;
}

.btn-instagram:hover {
    background: var(--instagram-hover);
    transform: translateY(-2px);
}

.btn-tiktok {
    background: var(--tiktok);
    color: white;
}

.btn-tiktok:hover {
    background: var(--tiktok-hover);
    transform: translateY(-2px);
}

/* Full-width button utility */
.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}

/* ========== HERO SECTIONS ========== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7)), url('../images/hero/hero-main.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--warm-blush);
}

.hero-shop {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7)), url('../images/hero/hero-shop.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--warm-blush);
}

.hero-about {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7)), url('../images/hero/hero-about.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--warm-blush);
}

.hero-loyalty {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7)), url('../images/hero/hero-loyalty.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--warm-blush);
}

.hero-content {
    max-width: 750px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--raspberry-pink);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

/* Hero typography */
.hero-title {
    color: #FFFFFF;
    font-size: clamp(42px, 6vw, 56px);
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    font-weight: 700;
}

.hero-subtitle {
    color: #FFFFFF;
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.hero-text {
    color: #FFFFFF;
    font-size: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 400;
}

.hero .hero-badge,
.hero-shop .hero-badge,
.hero-about .hero-badge,
.hero-loyalty .hero-badge {
    background: var(--raspberry-pink);
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0 20px;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: var(--warm-blush);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.trust-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    font-size: 13px;
    color: var(--soft-charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    color: var(--raspberry-pink);
}

/* ========== SECTIONS ========== */
section {
    padding: 70px 0;
}

.section-light {
    background: var(--warm-blush);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--deep-plum);
}

.section-subtitle {
    text-align: center;
    color: var(--soft-charcoal);
    margin-bottom: 48px;
    font-size: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== PRODUCT GRID (Used for Services) ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    box-shadow: 0 0 0 1px rgba(214, 69, 111, 0.2), 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--raspberry-pink);
    background: var(--card-bg);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #F5EDEF;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--raspberry-pink);
    color: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.new {
    background: var(--rose-gold);
    color: var(--deep-plum);
}

.product-badge.limited {
    background: var(--dusty-rose);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--deep-plum);
}

.product-slogan {
    font-size: 11px;
    color: var(--raspberry-pink);
    font-style: italic;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 12px;
    color: var(--soft-charcoal);
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-price {
    font-size: 22px;
    color: var(--raspberry-pink);
    font-weight: 700;
    margin-bottom: 4px;
}

.product-detail {
    font-size: 11px;
    color: var(--soft-charcoal);
}

/* ========== OCCASION BADGES ========== */
.occasion-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.occasion-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 500;
    background: var(--warm-blush);
    color: var(--deep-plum);
}

.occasion-badge.anniversary { background: rgba(214, 69, 111, 0.15); color: #B83B5E; }
.occasion-badge.wedding { background: rgba(197, 155, 155, 0.2); color: #8B5E5E; }
.occasion-badge.housewarming { background: rgba(74, 43, 66, 0.1); color: #4A2B42; }
.occasion-badge.baby { background: rgba(228, 183, 183, 0.3); color: #9B6B6B; }
.occasion-badge.spa { background: rgba(90, 74, 82, 0.1); color: #5A4A52; }

/* ========== FILTERS ========== */
.filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--soft-charcoal);
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--raspberry-pink);
    border-color: var(--raspberry-pink);
    color: white;
}

/* ========== BUNDLES ========== */
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.bundle-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--warm-blush) 100%);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(214, 69, 111, 0.2);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.bundle-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--raspberry-pink);
}

.bundle-icon {
    font-size: 40px;
    color: var(--raspberry-pink);
    margin-bottom: 16px;
}

.bundle-price {
    font-size: 28px;
    color: var(--raspberry-pink);
    font-weight: 700;
    margin: 16px 0;
}

.bundle-original {
    font-size: 14px;
    color: var(--soft-charcoal);
    text-decoration: line-through;
}

.bundle-save {
    background: var(--rose-gold);
    color: var(--deep-plum);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    margin-left: 8px;
}

/* ========== REVIEWS ========== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--raspberry-pink);
}

.stars {
    color: var(--raspberry-pink);
    margin-bottom: 14px;
    font-size: 13px;
}

.review-text {
    font-style: italic;
    margin-bottom: 16px;
    color: var(--soft-charcoal);
    font-size: 14px;
}

.review-author {
    color: var(--raspberry-pink);
    font-weight: 600;
    font-size: 13px;
}

.review-date {
    font-size: 10px;
    color: var(--soft-charcoal);
    margin-top: 8px;
}

/* ========== FEATURES ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature i {
    font-size: 36px;
    color: var(--raspberry-pink);
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--deep-plum);
}

.feature p {
    color: var(--soft-charcoal);
    font-size: 13px;
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery img {
    width: 100%;
    border-radius: 24px;
}

/* ========== JOURNAL / GALLERY ========== */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.journal-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.journal-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--raspberry-pink);
}

.journal-image {
    height: 200px;
    background: #F5EDEF;
}

.journal-image img,
.journal-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-content {
    padding: 24px;
}

.journal-category {
    font-size: 10px;
    color: var(--raspberry-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== FAQ ACCORDION ========== */
.faq-section {
    position: relative;
    z-index: 5;
    overflow: visible;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    overflow: visible;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: visible;
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 5;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
    color: var(--deep-plum);
    background: var(--card-bg);
    border-radius: 16px;
    position: relative;
    z-index: 6;
}

.faq-question:hover {
    background: rgba(214, 69, 111, 0.05);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--soft-charcoal);
    font-size: 14px;
    display: none;
    border-top: 1px solid var(--border-light);
    background: var(--card-bg);
    border-radius: 0 0 16px 16px;
    position: relative;
    z-index: 5;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ========== LOYALTY PAGE ========== */
.loyalty-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--warm-blush) 100%);
    border-radius: 32px;
    padding: 48px;
    text-align: center;
    border: 1px solid rgba(214, 69, 111, 0.2);
}

.points-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.point-box {
    background: rgba(214, 69, 111, 0.08);
    border-radius: 60px;
    padding: 20px 32px;
}

.point-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--raspberry-pink);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.tier-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.tier-card.gold {
    border-color: var(--raspberry-pink);
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item i {
    font-size: 32px;
    color: var(--raspberry-pink);
    margin-bottom: 16px;
}

/* ========== ABOUT PAGE ========== */
.about-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--raspberry-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

/* ========== FOOTER ========== */
footer {
    background: var(--footer-bg);
    padding: 50px 0 30px;
    border-top: 1px solid var(--border-light);
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--raspberry-pink);
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-col a {
    display: block;
    color: var(--soft-charcoal);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--raspberry-pink);
}

/* Social Media Icon Colors in Footer */
.footer-col a[href*="instagram"]:hover i,
.footer-col a[href*="instagram"]:hover {
    color: var(--instagram) !important;
}

.footer-col a[href*="tiktok"]:hover i,
.footer-col a[href*="tiktok"]:hover {
    color: var(--tiktok) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    font-size: 11px;
    color: var(--soft-charcoal);
}

.delivery-text {
    margin-top: 8px;
    font-size: 10px;
    color: var(--raspberry-pink);
}

.powered-by {
    margin-top: 12px;
    font-size: 10px;
    text-align: center;
}

.powered-by a {
    color: var(--raspberry-pink);
    text-decoration: none;
}

.powered-by a:hover {
    text-decoration: underline;
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.float-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--whatsapp);
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.float-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.05);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(36px, 8vw, 48px);
    }
    
    .hero-subtitle {
        font-size: clamp(18px, 5vw, 24px);
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .about-story {
        grid-template-columns: 1fr;
    }
    
    .loyalty-card {
        padding: 32px 20px;
    }

    .trust-container {
        justify-content: center;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* FOOTER MOBILE - Stack vertically */
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }
    
    .footer-col {
        width: 100%;
        text-align: left;
    }
    
    .footer-col h4 {
        margin-bottom: 15px;
        font-size: 18px;
        border-bottom: 2px solid var(--raspberry-pink);
        padding-bottom: 8px;
        display: inline-block;
    }
    
    .footer-col a {
        display: block;
        margin: 8px 0;
        padding: 5px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: clamp(32px, 7vw, 40px);
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .points-grid {
        gap: 20px;
    }
    
    .point-box {
        padding: 15px 20px;
    }
    
    .point-number {
        font-size: 32px;
    }
    
    .container {
        padding: 0 12px;
    }
}