/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Pink/Purple theme for YayaKiller */
    --primary: #ff1b8d;
    --primary-dark: #d41670;
    --secondary: #b026ff;
    --dark: #0a0e27;
    --dark-light: #1a1f3a;
    --accent: #7c3aed;
    --text: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #a0aec0;
    --success: #10b981;
    --danger: #ef4444;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    
    /* Typography */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(255, 27, 141, 0.3);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 27, 141, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(176, 38, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 27, 141, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.25rem;
}

/* ===== SIDE MENU TRIGGER ===== */
.side-menu-trigger {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 20px 0 0 20px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: -4px 0 15px rgba(255, 27, 141, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu-trigger:hover {
    width: 50px;
    box-shadow: -6px 0 20px rgba(255, 27, 141, 0.6);
}

.side-menu-trigger i {
    animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

/* ===== SIDE MENU ===== */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.98) 0%, rgba(10, 14, 39, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-left: 2px solid rgba(255, 27, 141, 0.3);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
}

.side-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 27, 141, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.side-menu-header {
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    border-bottom: 1px solid rgba(255, 27, 141, 0.2);
    margin-bottom: var(--space-lg);
}

.side-menu-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    box-shadow: 0 4px 15px rgba(255, 27, 141, 0.3);
}

.side-menu-header h3 {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0;
}

.side-menu-links {
    list-style: none;
    padding: 0 var(--space-lg);
}

.side-menu-links li {
    margin-bottom: var(--space-sm);
}

.side-menu-links a {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.side-menu-links a:hover {
    background: rgba(255, 27, 141, 0.1);
    border-left-color: var(--primary);
    transform: translateX(5px);
}

.side-menu-links a i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 24px;
}

/* ===== SIDE MENU OVERLAY ===== */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-2xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 27, 141, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-text h1 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    object-fit: contain;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TRUST BADGES ===== */
.trust-section {
    padding: var(--space-2xl) 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
}

.trust-badge i {
    font-size: 2rem;
    color: var(--primary);
}

.trust-badge span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 27, 141, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-glow);
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-card h3 {
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== SHOWCASE SECTION ===== */
.showcase {
    padding: var(--space-3xl) 0;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.showcase-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.showcase-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.showcase-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.showcase-item h4 {
    color: var(--text);
    font-size: 1.125rem;
}

.showcase-item p {
    font-size: 0.938rem;
}

/* ===== SOCIAL MEDIA ICONS ===== */
.social-media-icons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 27, 141, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 27, 141, 0.3);
}

/* ===== DONATION SECTION ===== */
.donation-section {
    margin-top: var(--space-lg);
    display: flex;
    justify-content: center;
}

.btn-donation {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 14px 28px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-donation:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.btn-donation i {
    color: #ff1b8d;
    font-size: 1.1rem;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--space-3xl) 0;
    background: rgba(255, 255, 255, 0.02);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--dark-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    margin: var(--space-md) 0;
    font-style: italic;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stars {
    color: #fbbf24;
    margin-top: var(--space-xs);
}

/* ===== PRICING ===== */
.pricing {
    padding: var(--space-3xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--dark-light);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin: var(--space-md) 0;
}

.pricing-price span {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.pricing-discount {
    font-size: 0.95rem;
    color: var(--primary);
    margin: var(--space-md) 0 var(--space-lg) 0;
    padding: var(--space-sm);
    background: rgba(255, 27, 141, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-sm);
}

.pricing-discount i {
    margin-right: var(--space-xs);
}

.pricing-features {
    text-align: left;
    margin: var(--space-lg) 0;
}

.pricing-features li {
    padding: var(--space-xs) 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
}

.pricing-features i {
    color: var(--success);
}

/* ===== BOOKING FORM ===== */
.booking {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, rgba(255, 27, 141, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    position: relative;
    z-index: 1;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark-light);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
    overflow: visible;
}

.form-group {
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 30;
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
    color: #ffffff;
}

.form-group select option {
    background-color: #1a1f3a;
    color: #ffffff;
    padding: 8px;
}

.form-group select option:hover {
    background: linear-gradient(#ff1b8d, #ff1b8d);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 27, 141, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    position: relative;
    z-index: 20;
}

.required {
    color: var(--danger);
}

.form-info {
    background: rgba(176, 38, 255, 0.1);
    border-left: 4px solid var(--secondary);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
}

.form-info p {
    margin: 0;
    font-size: 0.938rem;
    color: var(--secondary);
}

/* ===== FAQ ===== */
.faq {
    padding: var(--space-3xl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-light);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 var(--space-lg) var(--space-md);
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: white;
    color: var(--primary);
}

.cta .btn:hover {
    background: var(--dark);
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-light);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    gap: var(--space-2xl);
}

.footer-brand {
    flex: 1;
    text-align: left;
}

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.938rem;
}

.footer-links {
    margin-left: auto;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    text-align: right;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
    font-size: 0.938rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
}

.footer-bottom a#msw-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    margin: 0 6px;
}

.footer-bottom a#msw-link:hover {
    text-decoration: underline;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 2rem;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== RESPONSIVE ===== */

/* Tablet Landscape and Small Desktop (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-content,
    .showcase-content {
        grid-template-columns: 1fr !important;
        gap: var(--space-xl);
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .social-media-icons {
        justify-content: center;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    /* Root Variables for Mobile */
    :root {
        --space-xs: 6px;
        --space-sm: 12px;
        --space-md: 16px;
        --space-lg: 20px;
        --space-xl: 28px;
        --space-2xl: 40px;
        --space-3xl: 52px;
    }
    
    html {
        font-size: 14px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 var(--space-md);
        max-width: 100%;
    }
    
    /* Typography Mobile */
    h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: var(--space-2xl) 0 var(--space-2xl);
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: var(--space-xl);
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 var(--space-xl);
        margin-bottom: var(--space-lg);
    }
    
    .hero-image img {
        max-width: 220px !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 20px !important;
        box-shadow: 0 15px 40px rgba(255, 27, 141, 0.3) !important;
        object-fit: contain !important;
        object-position: center !important;
    }
    
    .hero-text {
        order: 1;
        width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text .subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* Social Media & Donation Mobile */
    .social-media-icons {
        justify-content: center;
        margin-top: var(--space-lg);
    }
    
    .donation-section {
        margin-top: var(--space-lg);
        width: 100%;
    }
    
    .btn-donation {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    /* Stats Mobile */
    .stats {
        grid-template-columns: 1fr !important;
        gap: var(--space-md);
    }
    
    .stat-item {
        padding: var(--space-lg);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Trust Badges Mobile */
    .trust-badges {
        grid-template-columns: 1fr !important;
        gap: var(--space-md);
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
        padding: var(--space-md);
        background: rgba(255, 27, 141, 0.05);
        border-radius: var(--radius-md);
    }
    
    /* Features Mobile */
    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: var(--space-lg);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    /* Showcase Mobile */
    .showcase-list {
        gap: var(--space-md);
    }
    
    .showcase-item {
        padding: var(--space-md);
    }
    
    /* Form Mobile */
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .booking-container {
        padding: var(--space-lg);
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-links {
        margin-left: 0;
        width: 100%;
    }
    
    .footer-links ul {
        text-align: center;
        align-items: center;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 1.75rem;
    }
    
    /* FAQ Mobile */
    .faq {
        padding: var(--space-2xl) 0;
        display: block;
        width: 100%;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 var(--space-md);
    }
    
    .faq-item {
        margin-bottom: var(--space-md);
    }
    
    .faq-question {
        padding: var(--space-md);
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        padding: 0 var(--space-md) var(--space-md);
    }
    
    /* CTA Mobile Specific */
    .cta {
        padding: var(--space-3xl) 0;
        display: block;
        width: 100%;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    }
    
    .cta-content {
        padding: 0 var(--space-md);
    }
    
    .cta h2 {
        font-size: 1.75rem;
        color: white;
        margin-bottom: var(--space-lg);
        line-height: 1.3;
    }
    
    .cta p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: var(--space-xl);
        line-height: 1.6;
    }
    
    .cta .btn {
        width: 100%;
        justify-content: center;
        background: white;
        color: var(--primary);
        font-size: 1.1rem;
        padding: 16px 32px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    /* Section Spacing Mobile */
    .hero,
    .features,
    .showcase,
    .testimonials,
    .pricing,
    .booking {
        padding: var(--space-2xl) 0;
    }
}

/* Very Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
}