:root {
    /* New Deep Purple Theme Variables */
    --primary-color: #BBE03A;
    /* Neon green text/accents */
    --primary-dark: #9BC422;
    --secondary-color: #559BDB;
    /* Soft blue text */
    --accent-color: #BBE03A;
    --whatsapp-color: #25d366;
    --bg-color: #3b2a75;
    /* Deep purple background */
    --card-bg: #4c3b93;
    /* Darker purple for cards */
    --card-border: #6d5ab5;
    --text-main: #ffffff;
    /* White Text */
    --text-muted: #CBD5E1;
    --nav-bg: rgba(59, 42, 117, 0.95);
    /* Deep purple nav */

    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-bg: var(--bg-color);
    --gradient-bg-reverse: var(--card-bg);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background-color: var(--bg-color);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Buttons */
.btn-primary {
    color: #111B34 !important;
    background: var(--gradient-primary);
    color: #3b2a75;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: #3b2a75;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #1eb354;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.w-100 {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: var(--nav-bg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.logo-xello {
    color: #ffffff;
}

.logo-tuition {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: #E2E8F0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-bg);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #E2E8F0;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats-mini {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--card-border);
    padding-top: 1.5rem;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.stat-mini i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.stat-icon-3d {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-bg {
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(248, 125, 132, 0.1) 0%, rgba(47, 187, 159, 0.05) 50%, transparent 70%);
    z-index: 0;
    animation: pulseBlob 8s infinite alternate;
}

.hero-img {
    position: relative;
    z-index: 1;
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--card-border);
}

.floating-card {
    position: absolute;
    background: rgba(50, 37, 110, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    animation: float 4s ease-in-out infinite;
}

.floating-card .icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #3b2a75;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.top-left {
    top: 5%;
    left: -5%;
    animation-delay: 0s;
}

.bottom-right {
    bottom: 5%;
    right: -5%;
    animation-delay: 2s;
}

.floating-card strong {
    color: #ffffff;
}

.floating-card p {
    font-size: 0.8rem;
    color: #E2E8F0;
    margin-top: 0.2rem;
}

/* Problem & Solution */
.problem-section {
    padding: 6rem 5%;
    background: var(--gradient-bg-reverse);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.problem-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.problem-content h2 span {
    color: #ef4444;
}

.problem-list li {
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.problem-list li i {
    color: #ef4444;
}

.solution-content {
    background: var(--bg-color);
    border: 1px solid var(--card-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.solution-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.solution-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.solution-content h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Why Choose Us */
.why-choose-section {
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--secondary-color);
}

.section-header p {
    color: #E2E8F0;
    font-size: 1.1rem;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.benefit-card p {
    color: #E2E8F0;
    font-size: 0.95rem;
}

/* Classes Offered */
.classes-section {
    padding: 6rem 5%;
    background: var(--gradient-bg);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

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

.class-card {
    background: var(--bg-color);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.class-range {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Poppins';
}

.class-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.class-card p {
    color: #E2E8F0;
    font-size: 0.9rem;
}

.subjects-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.subjects-pills span {
    font-weight: 500;
    font-size: 1.1rem;
}

.pill {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pill.optional {
    border-color: rgba(15, 23, 42, 0.2);
    border-style: dashed;
}

/* How It Works */
.how-it-works-section {
    padding: 6rem 5%;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 auto 1.5rem;
    color: #3b2a75;
    border: 4px solid var(--bg-color);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.step-card p {
    color: #E2E8F0;
    font-size: 0.9rem;
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--card-border);
    margin-top: 25px;
    position: relative;
    z-index: 1;
    min-width: 20px;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 5%;
    background: var(--gradient-bg-reverse);
    border-top: 1px solid var(--card-border);
}

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

.testi-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.quote-icon {
    font-size: 2rem;
    color: rgba(14, 165, 233, 0.3);
    margin-bottom: 1rem;
}

.testi-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.testi-author {
    border-top: 1px solid var(--card-border);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
}

.testi-author strong {
    color: var(--primary-color);
    font-family: 'Poppins';
}

.testi-author span {
    font-size: 0.85rem;
    color: #E2E8F0;
}

/* Booking Section */
.booking-section {
    padding: 6rem 5%;
}

.booking-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.booking-info {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(0, 0, 0, 0));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.booking-info p {
    color: #E2E8F0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.booking-perks li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    color: #ffffff;
}

.booking-perks li i {
    color: var(--accent-color);
}

.booking-form-wrapper {
    padding: 4rem 3rem;
    background: var(--card-bg);
    /* Dark theme update */
}

.booking-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: #ffffff;
    /* Solid white input */
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: #111B34;
    /* Dark text inside input */
    font-family: 'Poppins';
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(187, 224, 58, 0.2);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    color: #ffffff;
}

.faq-question:hover {
    background: var(--bg-color);
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #E2E8F0;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 300px;
}

/* Footer */
.footer {
    background: var(--card-bg);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--card-border);
}

.footer .logo-xello {
    color: #ffffff;
}

.footer .logo-tuition {
    color: var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.brand-col p {
    color: #E2E8F0;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E2E8F0;
    border: 1px solid var(--card-border);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: #3b2a75;
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.footer-col a {
    display: block;
    color: #E2E8F0;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-col p {
    color: #E2E8F0;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.footer-col p i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: #E2E8F0;
    font-size: 0.85rem;
}

/* Sticky Elements */
.sticky-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
}

.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--card-border);
    z-index: 999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
    display: block;
}

.sticky-mobile-cta .btn-primary {
    color: #111B34 !important;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulseBlob {
    0% {
        transform: scale(1);
        filter: hue-rotate(0deg);
    }

    100% {
        transform: scale(1.1);
        filter: hue-rotate(20deg);
    }
}

/* Custom Responsive Sections */
.trust-strip {
    background: var(--card-bg);
    padding: 2rem 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    border-bottom: 1px solid var(--card-border);
}

.trust-strip p {
    font-weight: 500;
    color: #E2E8F0;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

.trust-icons {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-icons img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--card-border);
    transition: var(--transition);
}

.trust-icons img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.wall-of-fame-section {
    padding: 6rem 5%;
    background: var(--bg-color);
}

.wall-of-fame-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-section {
    padding: 6rem 5%;
    background: var(--card-bg);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.expert-tutors-section {
    padding: 6rem 5%;
    background: var(--bg-color);
    border-top: 1px solid var(--card-border);
}

.expert-tutors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

    .hero-section,
    .problem-container,
    .booking-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .step-line {
        width: 2px;
        height: 50px;
        min-width: 2px;
        margin-top: 0;
    }

    .floating-card.top-left {
        left: 5%;
        top: 5%;
    }

    .floating-card.bottom-right {
        right: 5%;
        bottom: 5%;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        padding: 10px;
        /* Thicker tap target */
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-section {
        padding-top: 6rem;
    }

    /* Hide floating decorative cards on small screens to save space */
    .floating-card {
        display: none !important;
    }

    .hero-image-wrapper {
        min-height: 250px;
    }

    .blob-bg {
        width: 100%;
        height: 100%;
        background-position: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    input,
    select,
    textarea {
        font-size: 16px !important;
        /* Prevents auto-zoom on iOS */
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-whatsapp {
        width: 100%;
        padding: 1rem;
    }

    .booking-info {
        padding: 3rem 1.5rem;
    }

    .booking-form-wrapper {
        padding: 3rem 1.5rem;
    }

    .sticky-whatsapp {
        bottom: 85px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    /* Show mobile sticky CTA */
    .sticky-mobile-cta {
        display: block;
    }

    /* Mobile specific tweaks for new sections */
    section {
        padding: 4rem 5% !important;
    }

    .trust-strip {
        gap: 1.5rem;
        padding: 2rem 5%;
    }

    .trust-icons {
        gap: 2rem;
    }

    .trust-icons img {
        height: 50px;
        width: 50px;
    }

    .section-header h2 {
        font-size: 2rem !important;
    }

    .wall-of-fame-grid>div {
        min-width: 100%;
        padding: 1.5rem;
    }

    .comparison-section table th,
    .comparison-section table td {
        padding: 1rem;
        font-size: 0.95rem !important;
    }

    .testi-container {
        grid-template-columns: 1fr !important;
    }
}

strong,
b {
    font-weight: 500;
}