/* ============================================
   SIMA - Psychic & Tarot Reader Website
   Magic Theme CSS Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Deep Purple & Gold Theme */
    --primary-dark: #0a0a15;
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d03f;
    --accent-purple: #7c3aed;
    --accent-purple-light: #a78bfa;
    --accent-pink: #ec4899;
    
    /* Text Colors */
    --text-light: #ffffff;
    --text-muted: #c8d1dc;
    --text-gold: #d4af37;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4af37, #f4d03f);
    --gradient-purple: linear-gradient(135deg, #7c3aed, #a78bfa);
    --gradient-magic: linear-gradient(135deg, #1a1a2e 0%, #0a0a15 50%, #16213e 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    
    /* Shadows */
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-purple: 0 0 30px rgba(124, 58, 237, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    --card-radius: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    background: var(--primary-dark);
    overflow-x: hidden;
}

/* Magical Background */
.magic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--gradient-magic);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 230px 80px, #fff, transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 370px 50px, #fff, transparent),
        radial-gradient(2px 2px at 440px 180px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 510px 100px, #fff, transparent),
        radial-gradient(2px 2px at 580px 200px, rgba(255,255,255,0.8), transparent);
    background-size: 600px 250px;
    animation: twinkle 8s infinite;
}

.twinkling {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.3)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

.mystic-fog {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(124, 58, 237, 0.1), transparent);
    pointer-events: none;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-light {
    background: var(--text-light);
    color: var(--primary-dark);
}

.btn-light:hover {
    background: var(--accent-gold-light);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

.btn-full {
    width: 100%;
}

.btn-icon {
    font-size: 20px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 10, 21, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-light);
}

.logo-icon {
    color: var(--accent-gold);
    font-size: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-normal);
}

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 600;
}

.phone-icon {
    font-size: 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.hero-badge .star {
    color: var(--accent-gold-light);
}

.hero-title {
    margin-bottom: 20px;
}

.title-accent {
    display: block;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.title-main {
    display: block;
    font-size: clamp(52px, 8vw, 90px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-light), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 25px;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hero-description {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 500px;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.feature-icon {
    font-size: 20px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 400px;
    height: 480px;
}

.frame-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-gold);
    border-radius: 20px;
    opacity: 0.2;
    filter: blur(30px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}

.portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    border: 3px solid var(--accent-gold);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-gold);
}

.magic-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: rotate-slow 20s linear infinite;
    z-index: 1;
}

.magic-circle::before,
.magic-circle::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
}

.magic-circle::before {
    inset: 30px;
}

.magic-circle::after {
    inset: 60px;
}

@keyframes rotate-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating Tarot Cards */
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tarot-card {
    position: absolute;
    width: 60px;
    height: 90px;
    background: linear-gradient(145deg, var(--accent-purple), var(--primary));
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    box-shadow: var(--shadow-purple);
}

.tarot-card::after {
    content: '✧';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-gold);
    font-size: 24px;
}

.card-1 {
    top: 10%;
    right: -30px;
    transform: rotate(15deg);
    animation: float-card 6s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    right: -50px;
    transform: rotate(-10deg);
    animation: float-card 6s ease-in-out infinite 1s;
}

.card-3 {
    top: 30%;
    left: -40px;
    transform: rotate(-20deg);
    animation: float-card 6s ease-in-out infinite 2s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(var(--rotation, 15deg)); }
    50% { transform: translateY(-20px) rotate(var(--rotation, 15deg)); }
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    animation: scroll-indicator 2s ease-in-out infinite;
}

@keyframes scroll-indicator {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */
.problems {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.05));
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.problem-card p {
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.8;
}

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

.problems-cta p {
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 25px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.about-frame {
    position: relative;
}

.about-photo {
    width: 100%;
    border-radius: 20px;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-gold);
    transition: var(--transition-normal);
}

.about-photo:hover {
    transform: scale(1.02);
}

.about-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    z-index: -1;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    flex: 1;
    padding: 25px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    opacity: 0.8;
}

.about-text .section-label,
.about-text .section-title {
    text-align: left;
}

.about-description p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 18px;
    opacity: 0.9;
}

.about-description strong {
    color: var(--text-light);
}

.about-abilities {
    margin: 30px 0;
    padding: 25px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    border-left: 3px solid var(--accent-purple);
}

.about-abilities h4 {
    color: var(--accent-purple-light);
    margin-bottom: 15px;
}

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

.about-abilities li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 17px;
    opacity: 0.85;
}

.about-abilities li::before {
    content: '✧';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.about-guarantee {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.guarantee-icon {
    font-size: 32px;
}

.guarantee-text strong {
    display: block;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.guarantee-text p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* About Gallery */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    border-color: var(--accent-gold);
    transform: scale(1.02);
    box-shadow: var(--shadow-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.05), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 40px;
    transition: var(--transition-normal);
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 32px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-list li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: var(--text-light);
    font-size: 17px;
    opacity: 0.85;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-purple-light);
}

.service-link {
    color: var(--accent-gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    color: var(--accent-gold-light);
    gap: 10px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: var(--section-padding) 0;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 30px;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.step-content p {
    font-size: 17px;
    color: var(--text-light);
    opacity: 0.85;
}

.step-icon {
    font-size: 40px;
    margin-top: 20px;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin-top: 60px;
}

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

/* ============================================
   VIDEO REVIEWS
   ============================================ */
.video-reviews {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.08));
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-normal);
}

.video-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--primary);
    cursor: pointer;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.video-card:hover .video-placeholder img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-dark);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-light);
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 5px;
}

.video-info p {
    font-size: 16px;
    color: var(--text-light);
    opacity: 0.8;
}

/* ============================================
   REVIEWS SECTION - WhatsApp Screenshots
   ============================================ */
.reviews {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.05));
}

.whatsapp-reviews {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    align-items: start;
}

.whatsapp-review-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-normal);
    height: fit-content;
}

.whatsapp-review-card:hover {
    border-color: #25D366;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2);
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.wa-icon {
    font-size: 18px;
}

.whatsapp-review-card img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: var(--transition-normal);
}

.whatsapp-review-card:hover img {
    transform: scale(1.02);
}

.wa-caption {
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
}

.wa-caption strong {
    display: block;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 5px;
}

.wa-caption span {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.7;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

.reviews-note {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* WhatsApp Review Modal */
.wa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    cursor: pointer;
}

.wa-modal img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .whatsapp-reviews {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .whatsapp-reviews {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto 40px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.05), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-label,
.contact-info .section-title {
    text-align: left;
}

.contact-description {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.contact-method:hover {
    border-color: var(--accent-gold);
    transform: translateX(10px);
}

.method-icon {
    font-size: 32px;
}

.method-label {
    display: block;
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 3px;
    opacity: 0.7;
}

.method-info strong {
    color: var(--accent-gold);
    font-size: 20px;
}

.contact-schedule h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.contact-schedule p {
    color: var(--text-light);
    font-size: 17px;
    opacity: 0.85;
}

.schedule-note {
    font-size: 15px;
    margin-top: 10px;
}

/* Contact Form */
.contact-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 40px;
}

.contact-card h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 80px 0;
    background: var(--gradient-gold);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 30px;
    background: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: var(--text-light);
    font-size: 16px;
    opacity: 0.8;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.footer-phone {
    display: block;
    color: var(--accent-gold);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-whatsapp {
    display: inline-block;
    color: var(--accent-purple-light);
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-schedule {
    color: var(--text-light);
    font-size: 15px;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 15px;
    opacity: 0.7;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.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;
    color: white;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6); }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .image-frame {
        width: 300px;
        height: 380px;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-connector {
        width: 2px;
        height: 50px;
        margin: 0 auto;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 21, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .header-phone {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        flex: 0 0 100%;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .image-frame {
        width: 260px;
        height: 330px;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* Intersection Observer animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
