/* --- CSS VARIABLES --- */
:root {
    --primary-blue: #0f172a;
    /* Dark Slate Blue */
    --royal-blue: #3b82f6;
    /* Bright Royal Blue */
    --accent-blue: #f1f5f9;
    /* Very Light Blue/Grey */
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --gold: #eab308;
    /* Vibrant Gold */
    --gold-hover: #ca8a04;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Poppins', sans-serif;
    --font-arabic: 'Amiri', serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 15px rgba(59, 130, 246, 0.2);
}

/* --- GLOBAL RESET & TYPOGRAPHY --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-arabic {
    font-family: var(--font-arabic);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-blue) 0%, #2563eb 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--primary-blue);
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 0;
    font-size: 0.9rem;
    position: relative;
    /* Scrolls away */
    left: 0;
    width: 100%;
    z-index: 1001;
    /* Above header */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 25px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.top-socials {
    display: flex;
    gap: 15px;
}

.top-socials a {
    color: var(--white);
    transition: var(--transition);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.top-socials a:hover {
    background: var(--gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* --- HEADER --- */
header {
    position: absolute;
    top: 48px;
    /* Starts after top-bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

header.scrolled,
header.solid-bg {
    position: fixed;
    /* Becomes sticky */
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo img {
    height: 70px;
    /* Standardized height */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 70px;
}

/* --- NAVIGATION LINKS --- */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold);
    font-weight: 600;
}

/* Nav color change on scroll */
header.scrolled .nav-links a,
header.solid-bg .nav-links a {
    color: var(--primary-blue);
}

header.scrolled .nav-links a:hover,
header.solid-bg .nav-links a:hover {
    color: var(--royal-blue);
}

/* --- ENROLL BUTTON ITEM --- */
.nav-btn .btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
}

/* Ensure button text color remains white on scroll if it's primary */
header.scrolled .nav-links .nav-btn a,
header.solid-bg .nav-links .nav-btn a {
    color: var(--white) !important;
}

/* Except the hover state if needed, but primary btn usually keeps white text */


/* --- MOBILE MENU BTN --- */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
    z-index: 1100;
    /* Highest priority */
    transition: color 0.3s;
}

.mobile-menu-btn.active {
    color: var(--white);
}

header.scrolled .mobile-menu-btn,
header.solid-bg .mobile-menu-btn {
    color: var(--primary-blue);
}

/* --- MOBILE RESPONSIVE --- */
@media screen and (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--primary-blue);
        color: black;
        flex-direction: column;
        /* justify-content: center; */
        /* align-items: center; */
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1005;
        /* Higher than header and hamburger */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        right: 0;
        color: black;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(black) !important;
    }

    /* Adjust Enroll Button for mobile */
    .nav-links .nav-btn {
        margin-top: 20px;
    }
}


/* --- SUBPAGE HERO SECTION --- */
.page-hero {
    height: 50vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    /* Offset for header */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax feel */
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.page-title {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 1rem;
}

.breadcrumb a:hover {
    color: var(--gold);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Backgrounds for specific pages */
.course-hero-bg {
    background-image: url('./images/slider1.jpg');
}

/* Reuse existing or placeholder */
.blog-hero-bg {
    background-image: url('./images/slider2.jpg');
}

.contact-hero-bg {
    background-image: url('./images/slider3.jpg');
}

.about-hero-bg {
    background-image: url('./images/about-bg.jpg');
}

/* --- LOADER --- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-text {
    font-family: var(--font-arabic);
    font-size: 3.5rem;
    color: var(--white);
    animation: glow 2s infinite alternate;
    margin-bottom: 15px;
    text-align: center;
}

.loader-sub {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--accent-blue);
    opacity: 0.8;
    text-align: center;
    max-width: 80%;
    letter-spacing: 1px;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        opacity: 0.7;
    }

    to {
        text-shadow: 0 0 25px rgba(234, 179, 8, 0.6), 0 0 40px rgba(234, 179, 8, 0.4);
        opacity: 1;
    }
}

/* --- HERO SLIDER (Index Only) --- */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
    /* Adjusted for new header */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.1);
    transition: transform 6s ease-out;
    /* Slight zoom effect on active */
}

.slide.active .slide-bg {
    transform: scale(1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 76, 140, 0.8) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
    max-width: 900px;
    width: 90%;
    padding: 0;
}

.ayah-arabic {
    font-family: var(--font-arabic);
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s;
    direction: rtl;
    line-height: 1.6;
    word-wrap: break-word;
}

.ayah-english {
    font-family: var(--font-main);
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 30px;
    color: var(--accent-blue);
    font-style: italic;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s;
    font-weight: 300;
}

.hero-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1.1s;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 40px;
    color: #cbd5e1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1.4s;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1.7s;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.slide.active .ayah-arabic,
.slide.active .ayah-english,
.slide.active .hero-heading,
.slide.active .hero-desc,
.slide.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* --- ABOUT SECTION --- */
#about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--royal-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.02);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.feature-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1.05rem;
}

.feature-list li i {
    color: var(--white);
    background-color: var(--royal-blue);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* --- COURSES SECTION --- */
#courses {
    background-color: var(--accent-blue);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.course-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.course-card:hover .course-img {
    transform: scale(1.05);
}

.course-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--white);
}

.course-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.course-desc {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.7;
    flex: 1;
}

.course-link {
    color: var(--royal-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.course-link:hover {
    gap: 12px;
}

/* --- PRICING SECTION --- */
#pricing {
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 35px;
    box-shadow: var(--shadow-md);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.pricing-card.popular {
    border: 2px solid var(--royal-blue);
    transform: scale(1.05);
    z-index: 2;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-hover) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(234, 179, 8, 0.3);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 25px 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.plan-features {
    margin: 35px 0;
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li i {
    color: #10b981;
    /* Green Check */
    font-size: 1.1rem;
}

/* --- MOVING TESTIMONIALS --- */
#testimonials {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f172a 100%);
    padding: 100px 0;
    overflow: hidden;
    color: var(--white);
    position: relative;
}

.testimonials-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
}

/* Pause on hover */
.testimonials-wrapper:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 400px;
    margin: 0 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #e2e8f0;
}

.student-info h4 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.student-info span {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* --- CTA SECTION --- */
#cta {
    background-color: var(--white);
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #e2e8f0 100%);
    padding: 80px 40px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.cta-box p {
    max-width: 650px;
    margin: 0 auto 40px;
    color: var(--text-dark);
    font-size: 1.15rem;
}

/* --- FOOTER --- */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
    color: var(--white);
}

.footer-logo span {
    color: var(--gold);
}

.footer-text {
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 8px;
}

.footer-quote {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.footer-quote p {
    font-family: var(--font-arabic);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.footer-quote .translation {
    font-family: var(--font-main);
    font-size: 1rem;
    color: #cbd5e1;
    font-style: italic;
}

.copyright {
    text-align: center;
    opacity: 0.5;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        margin-bottom: 40px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    header {
        top: 0;
        background-color: var(--white);
        box-shadow: var(--shadow-sm);
        padding: 15px 0;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        clip-path: circle(0% at 100% 0);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 20px;
        align-items: flex-start;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 1.1rem;
        width: 100%;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #f1f5f9;
        opacity: 1;
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }

    .mobile-menu-btn {
        display: block;
        color: var(--primary-blue);
    }

    .logo,
    header.scrolled .logo,
    header.solid-bg .logo {
        color: var(--primary-blue);
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
    }

    .loader-text {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    #hero,
    .slide {
        padding-top: 100px;
        /* Slightly less on mobile as header is smaller */
        align-items: center;
    }

    .page-hero {
        padding-top: 80px;
    }
}

/* --- WHATSAPP BOUNCE ANIMATION --- */
@keyframes bounce-vertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    animation: bounce-vertical 2s infinite ease-in-out;
}

.hero-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Pricing Grid - 4 in a row on large screens */
@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}