/* ===== CSS VARIABLES ===== */
:root {
    --primary: #a61b4a;
    --secondary: #4a9d6f;
    --accent: #f5f1e8;
    --dark: #2c3e50;
    --gold: #d4a574;
    --light-gray: #f8f9fa;
    --distance-teal: #1abc9c;
    --testimonial-bg: #f8f9fa;
}

/* ===== RESETS & BASE STYLES ===== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 70px;
}

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--accent) 0%, #ffffff 100%);
    min-height: 100vh;
}

/* ===== VISUALLY HIDDEN ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== PERSISTENT WHATSAPP CHAT BUTTON ===== */
.persistent-whatsapp-btn {
    position: fixed;
    bottom: 100px; /* Position above back-to-top button */
    right: 30px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.persistent-whatsapp-link {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid white;
}

.persistent-whatsapp-link:hover {
    background: #128C7E;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(18, 140, 126, 0.5);
}

.persistent-whatsapp-icon {
    font-size: 1.8rem;
    margin-right: 10px;
    animation: gentlePulse 2s ease-in-out infinite;
}

.persistent-whatsapp-text {
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

.persistent-whatsapp-badge {
    position: absolute;
    top: -8px;
    right: -5px;
    background: #FF4081;
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* WhatsApp button notification dot */
.persistent-whatsapp-link::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: #FF4081;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

/* ===== ENHANCED NEWSLETTER SECTION WITH FIXED BADGE ===== */

.newsletter-section {
    background: linear-gradient(135deg, rgba(166, 27, 74, 0.08), rgba(74, 157, 111, 0.08));
    border-radius: 20px;
    padding: 3rem 2.5rem 2.5rem;
    margin: 3rem auto;
    max-width: 700px;
    text-align: center;
    border: 2px solid rgba(166, 27, 74, 0.1);
    position: relative;
    overflow: visible;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.newsletter-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(166, 27, 74, 0.1);
    border-color: rgba(166, 27, 74, 0.2);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 20px 20px 0 0;
}

/* FIXED: Centered prominent indicator badge */
.newsletter-prominent-indicator {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(166, 27, 74, 0.3);
    animation: subtleBounce 3s ease-in-out infinite;
    white-space: nowrap;
    z-index: 1;
}

@keyframes subtleBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-3px); }
}

.newsletter-section h4 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.newsletter-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.newsletter-section > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Newsletter Input Group Enhancement */
.newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1.2rem 1.8rem;
    border-radius: 50px;
    border: 2px solid var(--accent);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(166, 27, 74, 0.1);
    transform: translateY(-2px);
}

.newsletter-input-group input::placeholder {
    color: #999;
    font-weight: 500;
}

.newsletter-input-group .cta-button {
    padding: 1.2rem 2.5rem;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary) 0%, #c2185b 100%);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(166, 27, 74, 0.3);
    transition: all 0.3s ease;
    min-width: 160px;
}

.newsletter-input-group .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(166, 27, 74, 0.4);
    background: linear-gradient(135deg, #c2185b 0%, var(--primary) 100%);
}

/* Enhanced Consent Checkbox */
.newsletter-section .consent-checkbox {
    margin-top: 1.5rem;
    justify-content: center;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.newsletter-section .consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    accent-color: var(--primary);
    cursor: pointer;
    border-radius: 4px;
}

.newsletter-section .consent-checkbox label {
    font-size: 0.85rem;
    text-align: left;
    color: #666;
    line-height: 1.5;
    max-width: 500px;
    cursor: pointer;
}

.newsletter-section .consent-checkbox label:hover {
    color: #555;
}

/* Trust Badge for Newsletter */
.newsletter-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    border: 1px solid var(--accent);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-trust-badge span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.newsletter-trust-badge .badge-icon {
    font-size: 1.2rem;
    animation: gentlePulse 2s ease-in-out infinite;
}

/* Newsletter Success State */
.newsletter-success {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.newsletter-error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Newsletter Benefits List */
.newsletter-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.newsletter-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(166, 27, 74, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(166, 27, 74, 0.1);
}

.newsletter-benefit-item .benefit-icon {
    color: var(--primary);
    font-size: 1rem;
}

.newsletter-benefit-item span {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== ANNOUNCEMENT BADGE STYLES (Non-Clickable) ===== */

/* Main Announcement Badge - NON-CLICKABLE */
.announcement-badge {
    background-color: #f8f9fa;
    color: #555;
    border: 1px dashed #bbb;
    border-radius: 8px;
    padding: 12px 20px;
    text-align: center;
    font-weight: bold;
    cursor: default;
    display: block;
    width: fit-content;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
    transition: none;
    box-shadow: none;
}

.announcement-badge:hover {
    transform: none;
    box-shadow: none;
    background-color: #f8f9fa;
    cursor: default;
}

.announcement-badge span {
    font-size: 1rem;
}

/* Information Badge - Also non-clickable */
.info-badge {
    background-color: rgba(255, 182, 193, 0.2);
    color: #a61b4a;
    border: 1px dashed rgba(166, 27, 74, 0.3);
    border-radius: 8px;
    padding: 10px 18px;
    text-align: center;
    font-weight: 600;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    transition: none;
}

.info-badge:hover {
    transform: none;
    background-color: rgba(255, 182, 193, 0.2);
    cursor: default;
}

/* Simple Announcement Box */
.simple-announcement {
    background: rgba(166, 27, 74, 0.03);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px dashed rgba(166, 27, 74, 0.1);
    margin: 1.5rem 0;
    cursor: default;
}

.simple-announcement:hover {
    transform: none;
}

.simple-announcement .announcement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    opacity: 0.7;
}

.simple-announcement h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    opacity: 0.9;
}

.simple-announcement p {
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* ===== CLICKABLE BUTTON STYLES ===== */

/* Standard CTA Button - CLICKABLE */
.cta-button {
    background: linear-gradient(135deg, var(--secondary) 0%, #6db896 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(74, 157, 111, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(74, 157, 111, 0.4);
    background: linear-gradient(135deg, #6db896 0%, var(--secondary) 100%);
}

/* WhatsApp CTA Button */
.whatsapp-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 15px 35px rgba(18, 140, 126, 0.4);
}

/* Secondary Button */
.secondary-button {
    background: linear-gradient(135deg, var(--accent), white);
    color: var(--dark);
    border: 1px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.secondary-button:hover {
    background: linear-gradient(135deg, var(--primary), #c2185b);
    color: white;
    box-shadow: 0 15px 35px rgba(166, 27, 74, 0.3);
}

/* ===== EVENT CTA SECTION ===== */
.event-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px) scale(1.1);
}

/* ===== NAVIGATION - UPDATED FOR PROPER SPACING ===== */
nav { 
    background: rgba(255,255,255,0.98); 
    padding: 0.5rem 2rem;
    position: fixed; 
    top: 0;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px; /* Reduced from 80px */
}

/* Logo Styles - Slightly reduced */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem; /* Reduced from 1.5rem */
    text-decoration: none;
    height: 100%;
    padding: 5px 0;
}

.logo-image {
    height: 60px; /* Reduced from 75px */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 800;
    color: var(--dark);
    font-size: 1.3rem; /* Reduced from 1.5rem */
    line-height: 1.2;
    white-space: nowrap;
}

.logo-text span {
    color: var(--primary);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    gap: 2rem; /* Reduced from 2.5rem */
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
    padding: 0.3rem 0; /* Added padding for better touch area */
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

/* ===== MOBILE MENU BUTTON ENHANCEMENTS ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
    padding: 1rem;
    min-width: 60px;
    min-height: 60px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
    background: rgba(166, 27, 74, 0.1);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

/* ===== MOBILE MENU - FIXED VERSION ===== */
.mobile-menu {
    display: block;
    position: fixed;
    top: 70px; /* Adjusted for smaller nav */
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--accent);
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* ===== HERO SECTION - ADJUSTED FOR BETTER SPACING ===== */
.hero {
    background: linear-gradient(135deg, rgba(166,27,74,0.88) 0%, rgba(120,20,54,0.88) 100%);
    color: white;
    padding: 8rem 2rem 4rem; /* Reduced top padding from 10rem */
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 3.5rem); /* Slightly smaller */
    margin-top: 1.5rem; /* Added top margin */
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #e8f0e0 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    text-align: center;
}

/* About Me Button in Hero */
.about-me-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.about-me-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-btn-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: normal;
}

/* ===== CERTIFIED BADGE - ADJUSTED MARGIN ===== */
.certified-badge {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 1.5rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0; /* Reduced top margin */
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    border: none;
    color: white;
}

.certified-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    75% { transform: translateY(5px) rotate(-1deg); }
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-content {
    text-align: left;
}

.badge-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.badge-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    color: rgba(255,255,255,0.9);
}

/* About trigger container - reduced margin */
.about-trigger-container {
    margin-top: 1rem; /* Reduced from 1.5rem */
}

/* ===== TRUST STATS ===== */
.trust-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-icon {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

/* ===== SECTIONS - ADJUSTED SPACING ===== */
section {
    padding: 5rem 2rem; /* Reduced from 6rem */
    position: relative;
    scroll-margin-top: 70px; /* Adjusted for smaller nav */
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

/* ===== HUMAN CONNECTION SECTION ===== */
.human-connection {
    background: linear-gradient(135deg, white, var(--accent));
    border-radius: 25px;
    padding: 3rem; /* Reduced from 4rem */
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.human-connection h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.human-connection p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.lotus-flower {
    font-size: 4rem; /* Reduced from 5rem */
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    display: inline-block;
    animation: lotusBloom 3s ease-in-out infinite;
}

@keyframes lotusBloom {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1) rotate(5deg);
        opacity: 0.9;
    }
}

.connection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0; /* Reduced from 2rem */
}

.connection-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.connection-icon {
    background: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.5rem;
}

.connection-item h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.connection-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.quote-box {
    background: rgba(166, 27, 74, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0; /* Reduced from 2rem */
    border-left: 4px solid var(--primary);
}

.quote-box p {
    color: var(--dark);
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    background: var(--testimonial-bg);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid var(--accent);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--dark);
    font-size: 1rem;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

/* ===== SERVICES ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(166,27,74,0.15);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(0.98); }
}

.card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.card p {
    color: #666;
    line-height: 1.6;
}

.session-tag {
    background: var(--accent);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-block;
    margin-top: 1.5rem;
}

/* ===== DISTANCE HEALING ===== */
#distance-healing {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 241, 232, 0.7));
}

.distance-healing-section {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.05), rgba(255, 255, 255, 0.95));
    border-radius: 25px;
    padding: 3rem; /* Reduced from 4rem */
    box-shadow: 0 20px 60px rgba(26, 188, 156, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 188, 156, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.distance-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    display: inline-block;
    animation: gentleGlow 3s ease-in-out infinite;
    background: linear-gradient(135deg, var(--distance-teal), #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gentleGlow {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.distance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; /* Reduced from 3rem */
    margin-bottom: 2rem; /* Reduced from 2.5rem */
}

.distance-content {
    text-align: left;
}

.distance-content h3 {
    color: var(--distance-teal);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.distance-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.benefits-box {
    background: rgba(26, 188, 156, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(26, 188, 156, 0.1);
}

.benefits-box h4 {
    color: var(--distance-teal);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.benefit-icon {
    background: rgba(26, 188, 156, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--distance-teal);
    font-size: 1.2rem;
}

.benefit-item h5 {
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.distance-quote {
    background: rgba(26, 188, 156, 0.08);
    border-left: 4px solid var(--distance-teal);
    margin: 1.5rem 0; /* Reduced from 2rem */
}

.small-text {
    color: #666;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* ===== EVENT ANNOUNCEMENT SECTION - SIMPLIFIED ===== */
.event-section {
    padding: 5rem 2rem; /* Reduced from 6rem */
    position: relative;
    overflow: hidden;
}

.event-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.event-content {
    margin-top: 1.5rem; /* Reduced from 2rem */
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Reduced from 2rem */
}

.greeting {
    font-size: 1.1rem; /* Reduced from 1.2rem */
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(166,27,74,0.05), rgba(74,157,111,0.05));
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
}

.highlight-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.highlight-icon {
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

/* Important Info */
.important-info {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255,182,193,0.1), rgba(255,255,255,0.9));
    border-radius: 15px;
    border: 2px solid rgba(255,182,193,0.3);
}

.deadline {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.contact-promo {
    text-align: center;
    padding: 1.5rem;
    background: rgba(166,27,74,0.03);
    border-radius: 15px;
    border: 1px solid var(--accent);
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.person-icon {
    font-size: 2rem;
}

.contact-person strong {
    color: var(--dark);
    display: block;
}

.contact-person a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-person a:hover {
    text-decoration: underline;
}

/* ===== ENHANCED PRODUCT STYLES ===== */

/* Product Filters (matching blog filters) */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem; /* Reduced from 3rem */
    flex-wrap: wrap;
}

.product-filters .filter-btn {
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-filters .filter-btn.active {
    background: var(--primary);
    color: white;
}

.product-filters .filter-btn:hover:not(.active) {
    background: rgba(166, 27, 74, 0.1);
}

/* Product Grid Layouts */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Card Enhancements */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(166,27,74,0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.product-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.product-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.product-badge {
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-badge.best-seller {
    background: var(--secondary);
}

.product-badge.new {
    background: #ff6b6b;
}

.product-badge.certified {
    background: #4a9d6f;
}

.product-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3rem;
    margin: 0.5rem 0 1rem;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.product-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-tag {
    background: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--primary);
}

.product-card-actions {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--accent);
}

/* Product Stats */
.product-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #f39c12;
}

.product-stock {
    color: var(--secondary);
    font-weight: 600;
}

/* Product Load More Button */
.product-load-more {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto;
}

.product-load-more:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(166, 27, 74, 0.2);
}

.product-load-more:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Product Count */
.products-count {
    color: var(--dark);
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

/* Product Modal Specific Styles */
.product-modal .modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.product-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-main-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.product-features-list li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features-list li:before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
}

.product-buy-options {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ===== FAQ ===== */
#faq {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--accent);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--accent);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* ===== BLOG ===== */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem; /* Reduced from 3rem */
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--primary);
    color: white;
}

.filter-btn:hover:not(.active) {
    background: rgba(166, 27, 74, 0.1);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(166,27,74,0.15);
}

.blog-image {
    height: 250px;
    background: linear-gradient(135deg, var(--accent), #f8f4e9);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    z-index: 1;
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--accent);
    color: #888;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
}

.read-more:hover {
    color: var(--secondary);
}

.blog-actions {
    text-align: center;
    margin-top: 2.5rem; /* Reduced from 3rem */
}

.load-more-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(166, 27, 74, 0.2);
}

.pagination {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: white;
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.posts-count {
    color: var(--dark);
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
}

/* ===== CONTACT ===== */
#contact {
    background: linear-gradient(135deg, #3a506b, #5a718c);
    color: white;
}

#contact .section-title {
    color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    background: rgba(255,255,255,0.15);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 1.8rem;
    color: white;
}

.contact-item h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.email-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.opening-hours {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    color: white;
    font-weight: 600;
}

.contact-form {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(166, 27, 74, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field-note {
    font-size: 0.9rem;
    color: #666;
    margin-left: 0.5rem;
    font-weight: normal;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.consent-checkbox input {
    width: auto;
    margin-top: 0.3rem;
}

.consent-checkbox label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--dark);
}

.form-status {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
    display: block;
}

.form-status.error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
    display: block;
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.hidden {
    display: none;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #0f1820, #1a252f);
    color: white;
    padding: 3rem 2rem 2rem; /* Reduced from 4rem */
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.footer-tagline {
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== PRIVACY BADGE ===== */
.privacy-badge {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1000;
    max-width: 300px;
    cursor: pointer;
    animation: gentlePulse 4s ease-in-out infinite;
}

.privacy-badge:hover {
    transform: translateY(-3px);
}

.badge-inner {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 2px solid var(--accent);
}

.badge-inner h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-features > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.8rem 0;
    color: #666;
    font-size: 0.9rem;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 25px;
    padding: 2.5rem; /* Reduced from 3rem */
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    width: 100%;
}

.close-modal-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal-btn:hover {
    background: var(--secondary);
}

/* ===== SIDEBAR STYLES ===== */
.sidebar-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2001;
    display: none;
    transition: all 0.3s ease;
    opacity: 0;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.sidebar-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: white;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.sidebar-overlay.active .sidebar-content {
    transform: translateX(0);
}

.sidebar-header {
    background: linear-gradient(135deg, var(--primary) 0%, #c2185b 100%);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
}

.close-sidebar-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-sidebar-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.sidebar-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.sidebar-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.sidebar-body {
    padding: 2rem 1.5rem;
    flex-grow: 1;
}

/* Profile Image */
.sidebar-profile-image {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-profile-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.profile-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Lead Paragraph */
.lead-paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Experience Stats */
.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(166, 27, 74, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(166, 27, 74, 0.1);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* Section Styles */
.sidebar-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--accent);
}

.sidebar-section:last-child {
    border-bottom: none;
}

.section-heading {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.heading-icon {
    font-size: 1.2rem;
}

.highlight-quote {
    background: rgba(166, 27, 74, 0.05);
    border-left: 3px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
}

.highlight-quote p {
    color: var(--dark);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Modality List */
.modality-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.modality-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.modality-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.modality-content h4 {
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.modality-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Growth Badge */
.growth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #6db896 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Invitation */
.invitation {
    background: linear-gradient(135deg, rgba(166, 27, 74, 0.03), rgba(74, 157, 111, 0.03));
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(166, 27, 74, 0.1);
}

.invitation-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.invitation-icon {
    font-size: 2rem;
    color: var(--primary);
}

.invitation-text p {
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 2rem 1.5rem;
    background: var(--accent);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.sidebar-cta {
    width: 100%;
    margin-bottom: 1rem;
}

.sidebar-note {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    /* Navigation adjustments */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-image {
        height: 55px; /* Adjusted for tablet */
    }
    
    .logo-text {
        font-size: 1.2rem; /* Adjusted for tablet */
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
        height: 65px;
    }
    
    .mobile-menu {
        top: 75px; /* Adjusted for larger nav */
        padding: 2rem 1.5rem;
    }
    
    .mobile-menu a {
        padding: 1rem 0;
        font-size: 1.2rem;
        min-height: 50px;
        display: flex;
        align-items: center;
    }
    
    .mobile-menu ul {
        gap: 1rem;
    }
    
    .distance-grid {
        gap: 2rem;
    }
    
    .event-container {
        max-width: 700px;
    }
    
    /* Sidebar adjustments */
    .sidebar-content {
        max-width: 450px;
    }
    
    /* Newsletter adjustments for tablet */
    .newsletter-section {
        padding: 2.5rem 2rem;
        margin: 2.5rem auto;
    }
    
    .newsletter-benefits {
        gap: 0.8rem;
    }
    
    .newsletter-benefit-item {
        padding: 0.7rem 1rem;
    }
    
    .newsletter-prominent-indicator {
        padding: 0.5rem 1.3rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero { 
        padding: 6rem 1rem 2.5rem; 
    }
    
    .hero-title { 
        font-size: 2.2rem; 
        margin-top: 1rem;
    }
    
    .section-title { 
        font-size: 2.2rem; 
    }
    
    .grid-3, .testimonials-container, .blog-grid { 
        grid-template-columns: 1fr; 
    }
    
    section { 
        padding: 4rem 1rem; 
    }
    
    .privacy-badge { 
        display: none; 
    }
    
    .human-connection, .distance-healing-section { 
        padding: 2rem; 
    }
    
    .connection-grid, .distance-grid { 
        grid-template-columns: 1fr; 
    }
    
    .contact-grid { 
        grid-template-columns: 1fr; 
    }
    
    /* Navigation adjustments for mobile */
    .mobile-menu-btn {
        font-size: 2rem;
        min-width: 55px;
        min-height: 55px;
    }
    
    .mobile-menu {
        padding: 1.5rem;
        top: 70px;
    }
    
    .mobile-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
    
    /* Adjust logo size for mobile */
    .logo-image {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.1rem;
        white-space: normal;
        max-width: 140px;
        line-height: 1.1;
    }
    
    .nav-container {
        height: 60px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .lotus-flower, .distance-icon {
        font-size: 3.5rem; /* Reduced from 4rem */
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .modal-content {
        padding: 2rem;
    }
    
    .event-section {
        padding: 4rem 1rem;
    }
    
    .event-cta {
        flex-direction: column;
    }
    
    .event-cta .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .simple-announcement {
        padding: 1.5rem;
    }
    
    .announcement-icon {
        font-size: 2.5rem;
    }
    
    .grid-4 {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .product-filters {
        gap: 0.5rem;
    }
    
    .product-filters .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .product-gallery {
        grid-template-columns: 1fr;
    }
    
    /* Sidebar adjustments for mobile */
    .sidebar-content {
        max-width: 100%;
    }
    
    .experience-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.8rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .sidebar-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .sidebar-body {
        padding: 1.5rem 1rem;
    }
    
    .sidebar-footer {
        padding: 1.5rem 1rem;
    }
    
    /* Newsletter adjustments for mobile */
    .newsletter-section {
        padding: 2.2rem 1.5rem;
        margin: 2rem auto;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input-group input,
    .newsletter-input-group .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .newsletter-input-group .cta-button {
        padding: 1.2rem 2rem;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-benefit-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .newsletter-trust-badge {
        padding: 0.8rem 1rem;
    }
    
    .newsletter-section h4 {
        font-size: 1.3rem;
    }
    
    .newsletter-section > p {
        font-size: 0.95rem;
    }
    
    .newsletter-prominent-indicator {
        padding: 0.5rem 1.2rem;
        font-size: 0.7rem;
    }
    
    /* WhatsApp button responsive adjustments */
    .persistent-whatsapp-btn {
        bottom: 90px;
        right: 20px;
    }
    
    .persistent-whatsapp-link {
        padding: 12px 16px;
    }
    
    .persistent-whatsapp-icon {
        font-size: 1.5rem;
        margin-right: 8px;
    }
    
    .persistent-whatsapp-text {
        font-size: 0.9rem;
    }
    
    .persistent-whatsapp-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .mobile-menu-btn {
        font-size: 1.8rem;
        min-width: 50px;
        min-height: 50px;
        padding: 0.8rem;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1rem;
        max-width: 120px;
    }
    
    .nav-container {
        height: 55px;
    }
    
    .mobile-menu {
        top: 65px;
    }
    
    .hero { 
        padding: 5.5rem 1rem 2rem; 
    }
    
    .hero-title { 
        font-size: 1.9rem; 
        margin-top: 0.8rem;
    }
    
    .section-title { 
        font-size: 1.8rem; 
    }
    
    .certified-badge {
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .badge-icon {
        font-size: 2rem;
    }
    
    .badge-title {
        font-size: 1rem;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .lotus-flower, .distance-icon {
        font-size: 3rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .highlight-box {
        padding: 1rem;
    }
    
    .simple-announcement {
        padding: 1rem;
    }
    
    .announcement-icon {
        font-size: 2rem;
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-buy-options {
        flex-direction: column;
    }
    
    .product-buy-options .cta-button {
        width: 100%;
        text-align: center;
    }
    
    /* Sidebar adjustments for extra small screens */
    .experience-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-item {
        padding: 0.7rem 0.3rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    /* Newsletter adjustments for extra small screens */
    .newsletter-section {
        padding: 2rem 1rem 1.8rem;
        margin: 1.5rem auto;
    }
    
    .newsletter-section h4 {
        font-size: 1.2rem;
    }
    
    .newsletter-section > p {
        font-size: 0.9rem;
    }
    
    .newsletter-input-group input {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .newsletter-input-group .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .newsletter-prominent-indicator {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
    
    .newsletter-benefit-item {
        padding: 0.7rem 1rem;
    }
    
    .newsletter-benefit-item span {
        font-size: 0.8rem;
    }
    
    /* WhatsApp button adjustments for extra small screens */
    .persistent-whatsapp-btn {
        bottom: 80px;
        right: 15px;
    }
    
    .persistent-whatsapp-link {
        padding: 10px 15px;
    }
    
    /* Hide text on very small screens, show only icon */
    .persistent-whatsapp-text {
        display: none;
    }
    
    .persistent-whatsapp-icon {
        margin-right: 0;
        font-size: 1.8rem;
    }
    
    /* Extra small screen adjustments for announcement badges */
    .announcement-badge {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .info-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .simple-announcement {
        padding: 1rem;
    }
    
    .simple-announcement h4 {
        font-size: 1.1rem;
    }
    
    .simple-announcement p {
        font-size: 0.9rem;
    }
}