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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #000000;
    overflow-x: hidden;
    /* Safe area for devices with notch/home indicator */
    padding-bottom: env(safe-area-inset-bottom);
}

/* Root variables for consistent theming */
:root {
    --primary-neon: #d63384;
    --secondary-neon: #9333ea;
    --accent-pink: #ff006e;
    --accent-gold: #fbbf24;
    --dark-bg: #000000;
    --card-bg: #0f0f0f;
    --border-color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(214, 51, 132, 0.2);
    box-shadow: 0 4px 30px rgba(214, 51, 132, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 20px rgba(214, 51, 132, 0.6);
    transform: scale(1.05);
}

.logo:hover img {
    filter: drop-shadow(0 0 10px rgba(214, 51, 132, 0.5));
}

.nav-back {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-back:hover {
    color: #d63384;
    text-shadow: 0 0 10px rgba(214, 51, 132, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 50px;
    /* Fallback background in case video doesn't load */
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

#hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 aspect ratio */
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d63384, #9333ea);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(214, 51, 132, 0.5),
        0 0 40px rgba(147, 51, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(214, 51, 132, 0.7),
        0 0 60px rgba(147, 51, 234, 0.5);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #d63384, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(214, 51, 132, 0.6));
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    opacity: 0.8;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d63384, #9333ea, #d63384);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.9s both, gradientShift 3s ease infinite;
    box-shadow: 0 8px 30px rgba(214, 51, 132, 0.4),
        0 0 40px rgba(147, 51, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(214, 51, 132, 0.6),
        0 0 60px rgba(147, 51, 234, 0.5);
}

/* Info Sections (3 main sections) */
.info-section {
    padding: 80px 0;
    background: #f5f5dc;
    color: #333;
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.02), rgba(147, 51, 234, 0.02));
    pointer-events: none;
}

.info-section:nth-child(odd) {
    background: #f5f5dc;
}

.info-section:nth-child(even) {
    background: #e8e8d0;
}

.info-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-content.reverse {
    flex-direction: row-reverse;
}

.info-image {
    flex: 1;
    max-width: 500px;
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-video {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.info-video iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(214, 51, 132, 0.2);
    border: 2px solid rgba(214, 51, 132, 0.1);
    transition: all 0.3s ease;
}

.info-video iframe:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(214, 51, 132, 0.3);
    transform: scale(1.02);
}

.info-video video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-text {
    flex: 1;
    max-width: 600px;
}

.info-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.info-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: justify;
}

.info-text .section-intro {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
    padding: 0;
}

.feature-list li {
    font-size: 1.05rem;
    line-height: 2;
    color: #333;
    padding-left: 0;
}

.feature-list li strong {
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    padding: 15px 60px;
    background: transparent;
    color: #8b0000;
    text-decoration: none;
    border: 3px solid #8b0000;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #8b0000;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    width: 300%;
    height: 300%;
}

.cta-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: #f5f5dc;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 80px;
    background: transparent;
    color: #8b0000;
    text-decoration: none;
    border: 3px solid #8b0000;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #8b0000;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.cta-button-large:hover::before {
    width: 300%;
    height: 300%;
}

.cta-button-large:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
}

/* Guides Section */
.guides-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    color: #e0e0e0;
    position: relative;
}

.guides-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(214, 51, 132, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.guides-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #e0e0e0;
    text-shadow: 0 0 30px rgba(214, 51, 132, 0.5);
    position: relative;
    z-index: 1;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(214, 51, 132, 0.1);
    height: 450px;
}

.guide-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(214, 51, 132, 0.4),
        0 0 0 2px rgba(214, 51, 132, 0.3);
}

.guide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.guide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.guide-overlay h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: white;
    text-align: left;
}

.guide-overlay p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    color: white;
    text-align: left;
    opacity: 0.95;
}

.guide-button {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.guide-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: white;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.guide-button:hover::before {
    width: 300%;
    height: 300%;
}

.guide-button:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.5);
}

/* Social Proof Section */
.social-proof {
    padding: 20px 0 40px; /* Reduced padding on mobile */
    background: linear-gradient(135deg, #0a0a0a, #000000);
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(147, 51, 234, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 51, 132, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 51, 132, 0.4);
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.2);
}

.testimonial-rating {
    font-size: 1.2rem;
    color: #d63384;
    margin-bottom: 1rem;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: #d63384;
    opacity: 0.1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.testimonial-author {
    color: #d63384;
    font-weight: 700;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    text-align: center;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(214, 51, 132, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.08), rgba(147, 51, 234, 0.05));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(214, 51, 132, 0.5);
    border-radius: 20px;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(214, 51, 132, 0.3);
    z-index: 1;
}

.price-container {
    margin: 0.5rem 0 0.5rem;
}

.price-original {
    font-size: 1.8rem;
    font-weight: 600;
    color: #888;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.3rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d63384, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    filter: drop-shadow(0 0 20px rgba(214, 51, 132, 0.5));
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 0;
    font-weight: 300;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.countdown-timer {
    background: rgba(214, 51, 132, 0.1);
    border: 1px solid rgba(214, 51, 132, 0.4);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #e0e0e0;
    text-align: center;
}

.countdown-timer span {
    font-size: 1.5rem;
    color: #d63384;
    font-weight: 800;
}

/* Footer */
footer {
    background: url('../images/footer-background.png') center center / cover no-repeat;
    position: relative;
    padding: 80px 0 30px;
    text-align: center;
    color: white;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-rating {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.footer-contact-btn {
    display: inline-block;
    padding: 15px 50px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 3px solid white;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.footer-contact-btn:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.footer-tagline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.social-icons a {
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.social-icons svg {
    width: 40px;
    height: 40px;
}

.footer-copyright {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(214, 51, 132, 0.5),
            0 0 40px rgba(147, 51, 234, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(214, 51, 132, 0.7),
            0 0 60px rgba(147, 51, 234, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Improve touch targets for mobile */
    nav {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    /* Hide video on mobile for performance - show fallback background */
    #hero-video-wrapper {
        display: none;
    }

    .hero {
        padding: 100px 15px 60px; /* Reduced padding to move content up */
        background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
        background-size: cover;
        background-position: center;
        min-height: auto; /* Remove min-height on mobile */
    }

    .hero h1 {
        font-size: 2.2rem; /* Slightly smaller */
        line-height: 1.15;
        margin-bottom: 1rem; /* Reduced margin */
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem; /* Reduced margin */
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem; /* Reduced margin */
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
        margin-bottom: 1rem; /* Reduced margin */
    }

    /* Larger touch targets for CTA buttons */
    .cta-primary {
        padding: 20px 50px;
        font-size: 1.05rem;
        min-height: 60px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px; /* Space from bottom to avoid Safari toolbar */
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial {
        padding: 2rem 1.5rem;
    }

    .pricing-section {
        padding: 20px 0 20px; /* Reduced bottom padding */
    }

    .pricing-card {
        margin: 0 15px;
        padding: 1.5rem 1.2rem 1rem; /* Reduced bottom padding */
    }

    .price-container {
        margin: 0.3rem 0 0.5rem;
    }

    .price-original {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

    .price {
        font-size: 2.8rem;
        margin: 0;
    }

    .price-period {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .pricing-features {
        margin-bottom: 1.2rem;
    }

    .pricing-features li {
        padding: 0.6rem 0;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .countdown-timer {
        padding: 0.7rem;
        font-size: 0.9rem;
        margin: 0.8rem 0;
        border-radius: 8px;
    }

    .countdown-timer span {
        font-size: 1.1rem;
        display: block;
        margin-top: 0.2rem;
    }

    .pricing-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }

    /* Improve CTA button sizes for mobile */
    #cta-secure-spot {
        width: 100%;
        padding: 10px 40px;
        font-size: 1.1rem;
        min-height: 60px;
    }

    /* Info sections responsive */
    .info-section {
        padding: 60px 0;
    }

    .info-content,
    .info-content.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .info-image,
    .info-video,
    .info-text {
        max-width: 100%;
    }

    .info-video iframe {
        height: 280px;
        border-radius: 12px;
    }

    .info-text h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
        line-height: 1.2;
    }

    .info-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .feature-list {
        margin: 1.2rem 0 1.8rem 0;
    }

    .feature-list li {
        font-size: 1rem;
        line-height: 1.8;
        padding: 0.3rem 0;
    }

    .cta-button {
        padding: 16px 50px;
        font-size: 1.1rem;
        min-height: 56px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* CTA section responsive */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .cta-content p {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .cta-button-large {
        padding: 18px 60px;
        font-size: 1.15rem;
        min-height: 60px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Guides section responsive */
    .guides-section {
        padding: 60px 0;
    }

    .guides-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .guides-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guide-card {
        height: 420px;
        border-radius: 12px;
    }

    .guide-overlay {
        padding: 1.5rem;
    }

    .guide-overlay h3 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .guide-overlay p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .guide-button {
        padding: 14px 40px;
        font-size: 1.05rem;
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Footer responsive */
    footer {
        padding: 60px 0 30px;
    }

    .footer-rating {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .footer-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .footer-contact-btn {
        padding: 16px 50px;
        font-size: 1.1rem;
        min-height: 56px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .footer-tagline {
        font-size: 1.15rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .social-icons {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .social-icons svg {
        width: 44px;
        height: 44px;
    }

    .footer-copyright {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    /* Logo responsive */
    .logo {
        font-size: 1.5rem;
    }

    /* Reduce animations on mobile for better performance */
    .cta-primary,
    .cta-button,
    .cta-button-large,
    .guide-button {
        animation: none;
    }

    .cta-primary::before,
    .cta-button::before,
    .cta-button-large::before,
    .guide-button::before {
        display: none;
    }

    /* Simplify hover effects on mobile (touch devices) */
    .guide-card:hover {
        transform: none;
    }

    .testimonial:hover {
        transform: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

