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

:root {
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #22c55e;
    --secondary-dark: #16a34a;
    --error: #ef4444;
    --dark: #000;
    --darker: #111;
    --light: #fff;
    --gray: #666;
    --light-gray: #f8fafc;
    --overlay-opacity: 0.15;
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 5px 15px rgba(30, 64, 175, 0.2);
    --shadow-secondary: 0 5px 15px rgba(34, 197, 94, 0.2);
    --border-radius: 15px;
    --border-radius-sm: 10px;
    --max-width: 1000px;
    --nav-height: 70px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--light-gray);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--secondary);
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-text {
    color: var(--light);
    font-size: 1.2rem;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}
.pulse {
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from {
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.8);
    }
}
/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

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

section {
    padding: 80px 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Header */
header {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    color: var(--light);
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: var(--nav-height);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(Images/BG1.4-1-1.jpg) center/cover;
    opacity: var(--overlay-opacity);
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.heroImageLogo {
    width: 300px;
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.logo {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.scroll-indicator span {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--light);
    border-radius: 50%;
    margin: 6px auto;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Navigation */
/* Base Navigation Container */
.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    height: var(--nav-height);
    background: linear-gradient(135deg, var(--dark), var(--primary));
}

/* Base Nav Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 90%;
    margin: 5px auto;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.4s ease;
}

/* Scrolled State - Both Elements */
.nav-container.scrolled {
    background: transparent;
   
    /* Solid background for container */
   
}

.nav-container.scrolled nav {
    background: transparent;
    /* Slightly different color for contrast */
    box-shadow: 1px 1px 20px #89a6ee4d;
    margin-top: 0;
    margin-bottom: 0;
     text-shadow: 
    -1px -1px 0 #0a0c114d,
     1px -1px 0 #0a0c114d, 
    -1px  1px 0 #0a0c114d,
     1px  1px 0 #0a0c114d; 
     border-radius: var(--border-radius);
}

/* Mobile Menu - Adjust for scrolled state */
@media (max-width: 968px) {
    .nav-container.scrolled {
        background: transparent;
    }

    .nav-container.scrolled nav {
        background: transparent;
    }
}

.img-logo {
    width: 100px;
    height: auto;
    transition: var(--transition);
}

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

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--secondary);
    outline: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.cta-nav {
    color: var(--dark);
    padding: 8px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: bold;
    transition: var(--transition);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

/* Buttons */
.cta-button {
    background: var(--secondary);
    color: var(--light);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    margin-top: 20px;
    box-shadow: var(--shadow-secondary);
}

.cta-button:hover,
.cta-button:focus {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    outline: none;
}

/* Welcome Section */
.welcome h1 {
    color: var(--primary);
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

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

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

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

.welcome .subtitle {
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-align: center;
}

.call-reference {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-left: 5px solid var(--primary);
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    font-style: italic;
    font-size: 1.1rem;
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.call-reference::before,
.call-reference::after {
    content: '"';
    position: absolute;
    font-size: 5rem;
    color: rgba(30, 64, 175, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.call-reference::before {
    top: 10px;
    left: 10px;
}

.call-reference::after {
    bottom: -20px;
    right: 20px;
}

/* Cards */


.detail-card,
.theme-card,
.included-card,
.pricing-option {
    background: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.protocol-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.detail-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    text-align: center;
    color: var(--light);
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.protocol-card {
    opacity: 0;
    transform: translateY(20px);
    background: var(--light-gray);
    border: 3px solid transparent;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.protocol-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.protocol-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.theme-card {
    opacity: 0;
    transform: translateY(20px);
    border-top: 5px solid var(--secondary);
    transition: opacity 0.6s ease, transform 0.6s ease;

}

.theme-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.theme-card:hover {
    transform: translateY(-10px);
}

.included-card {
    background: var(--light-gray);
    border-left: 5px solid var(--primary);
    text-align: left;
}

.included-card:hover {
    transform: translateY(-5px);
}





/* Program Overview */
.program-overview {
    background: var(--primary);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.program-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518655048521-f130df041f66?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
    opacity: var(--overlay-opacity);
    z-index: 0;
}

.program-overview .container {
    position: relative;
    z-index: 1;
}

.program-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 968px) {
    .program-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .program-details {
        grid-template-columns: 1fr;
    }
}

.detail-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    color: var(--light);
}

.detail-card h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.detail-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Core Protocols */
.core-protocols h2 {
    color: #333;
}

.protocols-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: var(--gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.protocol-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--primary);
    color: var(--light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.protocol-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    margin-top: 10px;
}

.protocol-card p {
    line-height: 1.7;
    color: #555;
}


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

@media (max-width: 480px) {
    .protocols-grid {
        grid-template-columns: 1fr;
    }
}

/* Monthly Themes */
.monthly-themes h2 {
    color: #333;
}

.themes-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 768px) {
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .themes-grid {
        grid-template-columns: 1fr;
    }
}

.theme-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: var(--secondary);
}

.theme-card h3 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.theme-card p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.theme-examples {
    font-style: italic;
    color: var(--gray);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    background: var(--primary);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518655048521-f130df041f66?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
    opacity: var(--overlay-opacity);
    z-index: 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 0 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
}

.testimonial-content::before {
    top: -20px;
    left: -15px;
}

.testimonial-content::after {
    bottom: -40px;
    right: -15px;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 30px;
    font-size: 1.1rem;
}

.testimonial-role {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.slider-dot:hover,
.slider-dot:focus {
    transform: scale(1.2);
    outline: none;
}

.slider-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* Facilitator Bio */
.bio-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.mainImage {
    filter: grayscale(100%);
    transition: filter 0.5s ease;


    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;

}

.mainImage:hover {
    filter: grayscale(0%);
}

@media (max-width: 968px) {
    .bio-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.bio-photo {
    background: #ddd;
    height: 350px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.1rem;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .bio-photo {
        width: 250px;
        height: 250px;
        margin: 0 auto 30px;
    }
}

.bio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-text h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.credentials {
    background: #f0f9ff;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
}

.credentials h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials li {
    padding: 3px 0;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

@media (max-width: 968px) {
    .credentials li {
        text-align: center;
    }
}

.credentials li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

@media (max-width: 968px) {
    .credentials li::before {
        display: none;
    }
}

.bio-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: left;
}

@media (max-width: 968px) {
    .bio-text p {
        text-align: center;
    }
}

.experience-highlight {
    background: var(--secondary);
    color: var(--light);
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
}

/* Who This Is For */
.who-for {
    background: var(--primary);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.who-for::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518655048521-f130df041f66?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
    opacity: var(--overlay-opacity);
    z-index: 0;
}

.who-for-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.who-for-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 968px) {
    .who-for-content {
        grid-template-columns: 1fr;
    }
}

.for-you,
.not-for-you {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
}

.for-you {
    border: 2px solid var(--secondary);
}

.not-for-you {
    border: 2px solid var(--error);
}

.for-you h3 {
    color: var(--secondary);
}

.not-for-you h3 {
    color: var(--error);
}

.qualification-list {
    list-style: none;
    padding: 0;
}

.qualification-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.for-you li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.not-for-you li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Investment Options */
.investment {
    background: var(--dark);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.investment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1518655048521-f130df041f66?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
    opacity: var(--overlay-opacity);
    z-index: 0;
}

.investment-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.regular-pricing {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    margin-bottom: 40px;
    text-decoration: line-through;
    opacity: 0.7;
}

.call-pricing h3 {
    color: var(--secondary);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.pricing-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(5px);
}

.pricing-option:hover {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.15);
}

.pricing-option.recommended {
    border-color: var(--secondary);
    background: rgba(34, 197, 94, 0.1);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--secondary);
    color: var(--light);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.option-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--secondary);
}

.option-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.option-savings {
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.option-description {
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.9;
}

.enroll-btn {
    background: var(--secondary);
    color: var(--light);
    padding: 18px 30px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    transition: var(--transition);
}

.enroll-btn:hover,
.enroll-btn:focus {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
    outline: none;
}

.urgency-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    background: rgba(239, 68, 68, 0.2);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Countdown Timer */
.countdown-timer {
    background: rgba(239, 68, 68, 0.2);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    margin: 30px auto;
    max-width: 600px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.timer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--error);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-segment {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
    min-width: 70px;
}

.timer-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--light);
}

.timer-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
}

/* What's Included */
.whats-included h2 {
    color: #333;
}

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

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

@media (max-width: 480px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
}

.included-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.included-card ul {
    list-style: none;
    padding: 0;
}

.included-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.included-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Next Steps */
.next-steps h2 {
    color: #333;
}

.steps-timeline {
    max-width: 700px;
    margin: 40px auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    text-align: left;
    background: var(--light);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.timeline-icon {
    background: var(--secondary);
    color: var(--light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .timeline-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

.timeline-content {
    font-size: 1.1rem;
}

.timeline-time {
    color: var(--primary);
    font-weight: bold;
}

/* FAQ Section */
.faq h2 {
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background: var(--light-gray);
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    width: 100%;
    border: none;
    text-align: left;
}

.faq-question:hover,
.faq-question:focus {
    background: #e0f2fe;
    outline: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    background: var(--light);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Contact Form */
.contact {
    background: var(--primary);
    color: var(--light);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#contactForm {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.footer-content {
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    padding: 5px;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--secondary);
    outline: none;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;

}

.social-links a {
    color: var(--light);
    font-size: 1.5rem;
    transition: var(--transition);
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover,
.social-links a:focus {
    color: var(--secondary);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.back-to-top {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: var(--secondary);
    color: var(--light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 768px) {
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.back-to-top:hover,
.back-to-top:focus {
    background: #16a34a;
    transform: translateY(-5px);
    outline: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);

        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        z-index: 1000;

    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links a {
        padding: 10px;
        font-size: 1.1rem;
    }

    .cta-nav {
        display: inline-block;
        margin-top: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Print Styles */
@media print {

    .nav-container,
    .back-to-top,
    .mobile-menu-btn {
        display: none;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    section {
        page-break-inside: avoid;
        padding: 40px 0;
    }

    a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }
}