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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('wmremove-transformed.jpeg') center center / cover no-repeat fixed;
    opacity: 0.15;
    z-index: 0;
    filter: blur(2px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Logo Section */
.logo-section {
    text-align: center;
    padding: 30px 0 20px;
    margin-bottom: 20px;
    perspective: 1000px;
}

.logo-wrapper {
    display: inline-block;
    transform-style: preserve-3d;
}

.google-maps-logo {
    width: 170px;
    height: 170px;
    filter: drop-shadow(0 10px 30px rgba(255,107,0,.3));
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-title .highlight-orange {
    color: #FF6B35;
    display: inline-block;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}

.separator {
    color: #666;
    font-weight: bold;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    border: none;
    cursor: pointer;
    margin: 15px 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.6);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

/* Notification Card */
.notification-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(30, 30, 30, 0.9);
    border-radius: 16px;
    padding: 20px;
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.notification-icon {
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
    text-align: left;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.notification-header strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.notification-header span {
    color: #888;
    font-size: 14px;
}

.notification-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.notification-content strong {
    color: #10b981;
    font-weight: 700;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 50px;
    color: #ffffff;
}

/* Why Section */
.why-section {
    padding: 60px 20px;
    margin-bottom: 60px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    padding: 35px 25px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-icon.orange {
    filter: grayscale(0) brightness(1.2);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 15px;
}

.feature-card strong {
    color: #10b981;
    font-weight: 600;
}

/* Reviews Carousel Section */
.reviews-section {
    padding: 60px 20px;
    margin-bottom: 60px;
    text-align: center;
}

.carousel-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(30, 30, 30, 0.5);
    padding: 20px;
}

.carousel-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

.review-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #10b981;
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Section */
.whatsapp-section {
    padding: 60px 20px;
    margin-bottom: 60px;
    text-align: center;
}

.whatsapp-phone {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.whatsapp-screenshot {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 8px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.whatsapp-screenshot:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
}

.cta-text {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text strong {
    color: #ffffff;
    font-weight: 700;
}

.cta-section .btn-primary {
    margin: 10px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-subtitle {
        flex-direction: column;
        gap: 5px;
    }

    .separator {
        display: none;
    }

    .btn-primary {
        display: flex;
        justify-content: center;
        margin: 10px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .notification-card {
        margin: 30px 10px 0;
    }

    .whatsapp-phone {
        max-width: 90%;
    }

    .whatsapp-screenshot {
        transform: none;
    }

    .cta-section {
        padding: 40px 20px;
    }
}
