/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Premium Spa Theme */
    --primary-color: #1a5f4e;
    --primary-dark: #0f3d2f;
    --primary-light: #2d8a6f;
    --accent-gold: #c9a961;
    --accent-gold-light: #e4d0a0;
    
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #ffffff;
    
    --bg-white: #ffffff;
    --bg-cream: #faf8f5;
    --bg-dark: #1a1a1a;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

/* ===================================
   LOADING SCREEN
   =================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: var(--text-light);
}

.loading-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.loading-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.loading-icon i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.loading-logo h2 {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin: 0;
    color: var(--text-light);
}

.loading-spinner {
    margin: 2rem auto;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

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

.loading-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-subheading {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
    background: linear-gradient(120deg, rgba(26, 95, 78, 0.1) 0%, rgba(45, 138, 111, 0.1) 100%);
    padding: 2px 8px;
    border-radius: 4px;
}

.subsection-heading {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.not-included-note {
    display: block;
    font-size: 0.85rem;
    color: #d32f2f;
    font-weight: 400;
    margin-top: 0.5rem;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(26, 95, 78, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 95, 78, 0.4);
}

.btn-large {
    padding: 22px 55px;
    font-size: 1.25rem;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(26, 95, 78, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(201, 169, 97, 0.5);
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/water-therapy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 61, 47, 0.55) 0%, rgba(26, 95, 78, 0.50) 100%);
    z-index: 2;
}

/* Steam animation */
.hero-overlay::before,
.hero-overlay::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    animation: steam 8s ease-in-out infinite;
    z-index: 1;
}

.hero-overlay::before {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.hero-overlay::after {
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes steam {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-50px) scale(1.5);
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.price-crossed {
    text-decoration: line-through;
    color: #ff6b6b;
    font-size: 0.7em;
    margin-right: 10px;
}

.price-current-inline {
    color: var(--accent-gold-light);
    font-weight: 700;
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-small-line {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.5;
    opacity: 0.9;
    font-weight: 500;
    color: var(--accent-gold);
}

.hero-free-license-box {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.25) 0%, rgba(228, 208, 160, 0.3) 100%);
    padding: 25px 35px;
    border-radius: 15px;
    border: 3px solid var(--accent-gold);
    max-width: 700px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }
    50% {
        box-shadow: 0 8px 40px rgba(201, 169, 97, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }
}

.free-license-icon {
    font-size: 3rem;
    color: var(--accent-gold-light);
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.free-license-content {
    text-align: left;
}

.free-license-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--accent-gold-light);
    letter-spacing: 1px;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.free-license-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--accent-gold-light);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.free-license-note {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.hero-free-license {
    background: rgba(201, 169, 97, 0.15);
    padding: 15px 25px;
    border-radius: 8px;
    border: 2px solid var(--accent-gold);
    font-size: clamp(1rem, 2vw, 1.15rem);
    opacity: 1;
}

.hero-free-license strong {
    color: var(--accent-gold-light);
    font-weight: 700;
}

.hero-cta {
    margin-top: 3rem;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.hero-cta .btn {
    margin: 0 auto;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--text-light);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    color: var(--accent-gold);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===================================
   WHAT IS IT SECTION
   =================================== */
.what-is-it {
    padding: 60px 0 var(--section-padding) 0;
    background: var(--bg-cream);
}

/* Mobile Video (hidden on desktop) */
.mobile-video-container {
    display: none;
}

/* ===================================
   COURSE BENEFITS MOBILE SECTION
   =================================== */
.course-benefits-mobile {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .course-benefits-mobile {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        background: var(--bg-cream);
    }
    
    .course-benefits-mobile img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
    }
    
    .mobile-video-container {
        display: block;
        margin: 2rem 0;
        width: 100%;
    }
    
    .mobile-video-wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 133.33%; /* 3:4 aspect ratio - no black bars */
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 237%; /* Make video wider to fill 3:4 container and remove black bars */
        height: 100%;
        transform: translate(-50%, -50%);
        pointer-events: none; /* Makes video non-clickable */
    }
    
    /* Hide the desktop section video on mobile */
    .content-visuals {
        display: none;
    }
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-text {
    animation: fadeInLeft 1s ease-out;
}

.content-text .section-heading {
    text-align: center;
}

.body-copy p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.content-visuals {
    animation: fadeInRight 1s ease-out;
}

.video-container {
    width: 100%;
    position: relative;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for YouTube Shorts */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* 3:4 aspect ratio for section video (no black bars) */
.section-video-wrapper {
    padding-bottom: 133.33%; /* 3:4 aspect ratio */
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.section-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 237%; /* Make video much wider to fill 3:4 container */
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Clean video with no UI elements */
.section-video-clean {
    pointer-events: none;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visual-large {
    grid-column: 1 / -1;
}

.visual-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.visual-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ===================================
   REVENUE CALCULATOR SECTION
   =================================== */
.revenue-calculator-section {
    padding: var(--section-padding) 0 40px 0;
    background: var(--bg-cream);
}

/* ===================================
   EQUIPMENT SECTION
   =================================== */
.equipment-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

/* Equipment Block */
.equipment-block {
    margin-bottom: 0;
}

.equipment-block .subsection-heading {
    text-align: center;
    margin-bottom: 3rem;
}

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

/* Horizontal scroll on mobile only */
@media (max-width: 768px) {
    .equipment-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }
    
    .equipment-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .equipment-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .equipment-grid::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
    
    .equipment-grid::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }
}

.equipment-card {
    background: var(--bg-cream);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

@media (max-width: 768px) {
    .equipment-card {
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 30px 20px;
    }
    
    .equipment-card h4 {
        font-size: 1.2rem;
        word-break: keep-all;
        overflow-wrap: normal;
        white-space: normal;
    }
    
    .equipment-card p {
        font-size: 0.9rem;
        word-break: keep-all;
        overflow-wrap: normal;
        white-space: normal;
    }
}

.equipment-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 15px 40px rgba(26, 95, 78, 0.15);
}

.equipment-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.equipment-image {
    width: 100%;
    height: 260px; /* Increased by 30% from 200px */
    margin-bottom: 1.5rem;
    border-radius: 24px; /* More rounded corners */
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #f5f5f5;
    border-radius: 24px; /* More rounded corners */
}

.equipment-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.equipment-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.equipment-price {
    color: #666666;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 0.8rem;
}

/* ===================================
   ENROLL CTA SECTION
   =================================== */
.enroll-cta-section {
    padding: 40px 0;
    background: var(--bg-cream);
    text-align: center;
}

.enroll-cta-btn {
    font-size: 1.2rem;
    padding: 20px 50px;
    display: inline-block;
}

.enroll-cta-btn .price-strike {
    text-decoration: line-through;
    color: #ff6b6b;
    font-size: 0.85em;
    margin-right: 8px;
}

/* Slide Indicator (Mobile Only) */
.slide-indicator {
    display: none;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: slideHint 2s ease-in-out infinite;
    min-height: 30px; /* Reserve space to prevent jump */
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.slide-indicator.hidden {
    visibility: hidden;
    opacity: 0;
}

.slide-indicator i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .slide-indicator {
        display: flex;
    }
}

@keyframes slideHint {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

.equipment-note {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    color: var(--text-light);
}

.equipment-note p {
    font-size: 1.2rem;
    margin: 0;
}

/* Calculator Block */
.calculator-block {
    margin-bottom: 80px;
}

.calculator-white-box {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.calculator-block .subsection-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-container {
    max-width: 900px; /* Increased from 800px to prevent number wrapping */
    margin: 0 auto;
}

.calculator-input-group {
    margin-bottom: 3rem;
}

.calculator-input-group label {
    display: inline;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-primary);
}

.price-label-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.price-display-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

/* Mobile: Price on new line */
@media (max-width: 768px) {
    .price-label-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .calculator-input-group label {
        display: block;
        margin-bottom: 0.5rem;
    }
}

.value-display {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 80px;
    flex-shrink: 0;
}

.price-recommendation {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
    font-style: italic;
    flex-shrink: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease-in-out;
    display: inline;
}

/* Desktop: Recommendation on new line */
@media (min-width: 769px) {
    .price-display-wrapper {
        flex-wrap: wrap;
    }
    
    .price-recommendation {
        width: 100%;
        margin-left: 0;
    }
}

/* Equipment Toggle */
.equipment-toggle {
    display: flex;
    gap: 15px;
}

.toggle-btn {
    flex: 1;
    padding: 18px 30px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--bg-white);
    color: var(--text-secondary);
    border: 2px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.toggle-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-color);
}

.toggle-btn.active {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

/* Slider */
.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--primary-light) 0%, var(--primary-color) 100%);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26, 95, 78, 0.4);
    transition: var(--transition-smooth);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(26, 95, 78, 0.5);
}

.slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(26, 95, 78, 0.4);
    transition: var(--transition-smooth);
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(26, 95, 78, 0.5);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Calculator Results */
.calculator-results {
    margin-top: 3rem;
}

.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 3rem;
}

.result-item-full {
    grid-column: 1 / -1;
}

.result-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-cream);
    border-radius: 12px;
}

.result-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* Investment Breakdown */
.investment-breakdown {
    border-top: 2px solid #eee;
    padding-top: 2rem;
}

.breakdown-header h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.breakdown-items {
    margin-bottom: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-total {
    font-weight: 700;
    font-size: 1.2rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
}

.breakdown-value {
    font-weight: 600;
    color: var(--primary-color);
}

.not-included {
    color: #d32f2f;
    font-size: 0.85em;
    font-weight: 400;
}

/* Payback Info */
.payback-info {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 30px;
    border-radius: 12px;
    color: var(--text-light);
}

.payback-highlight {
    display: flex;
    gap: 20px;
    align-items: center;
}

.payback-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.payback-main {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.payback-profit {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.testimonials .section-heading {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.testimonials-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Video Testimonial Cards */
.testimonial-video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.testimonial-video-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.testimonial-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    transition: opacity var(--transition-smooth);
    border: none;
}

/* Hide YouTube video title */
.video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

.testimonial-video-card.playing .testimonial-iframe {
    pointer-events: auto;
}

/* Video Overlay with Play Button - Not used with native Vimeo embeds */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 10;
}

.testimonial-video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.testimonial-video-card.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-left: 5px;
}

.testimonial-video-card:hover .play-button {
    transform: scale(1.1);
    background: var(--accent-gold);
}

.testimonial-video-card:hover .play-button i {
    color: var(--bg-dark);
}

.testimonial-video-card.playing .play-button {
    display: none;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
}

/* Old testimonial styles removed */
.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-title {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

.cta-includes {
    margin-bottom: 3rem;
}

.cta-includes p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-price-block {
    margin: 3rem 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.price-old {
    font-size: 3rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: #ff6b6b;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.cta-price-block .cta-urgency {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ff6b6b;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-urgency 2s ease-in-out infinite;
}

@keyframes pulse-urgency {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.price-note {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-button-container {
    margin: 3rem 0;
}

.cta-guarantee {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-style: italic;
}

.cta-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.cta-contact a:hover {
    color: var(--accent-gold-light);
    text-decoration: underline;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    :root {
        --section-padding: 70px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .video-container {
        padding-bottom: 56.25%; /* 16:9 on tablet/mobile for better viewing */
        max-width: 600px;
        margin: 0 auto;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .result-item {
        padding: 20px;
    }
    
    .equipment-toggle {
        flex-direction: column;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }
    
    .hero {
        min-height: 600px;
        align-items: flex-start;
        padding-top: 60px;
    }
    
    .hero-content {
        margin-top: 20px;
    }
    
    .ce-badge {
        padding: 10px 18px;
        gap: 8px;
        margin-bottom: 1.5rem;
    }
    
    .ce-badge i {
        font-size: 1.3rem;
    }
    
    .ce-badge span {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .hero-free-license-box {
        padding: 15px 20px;
        gap: 12px;
        max-width: 90%;
        margin: 0 auto 1.5rem;
    }
    
    .free-license-icon {
        font-size: 2rem;
    }
    
    .free-license-title {
        font-size: 0.95rem;
        margin-bottom: 2px;
        letter-spacing: 0.5px;
    }
    
    .free-license-subtitle {
        font-size: 0.95rem;
        margin-bottom: 5px;
        letter-spacing: 0.5px;
    }
    
    .free-license-note {
        font-size: 0.75rem;
    }
    
    .btn-large {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .calculator-block {
        padding: 40px 25px;
        margin-bottom: 20px;
    }
    
    .calculator-results {
        padding: 25px 0; /* Remove left/right padding on mobile */
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .payback-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .revenue-calculator-section {
        padding: var(--section-padding) 0 20px 0;
    }
    
    .what-is-it {
        padding: 30px 0 10px 0;
    }
    
    .enroll-cta-section {
        padding: 20px 0;
    }
    
    .enroll-cta-btn {
        font-size: 1.1rem;
        padding: 18px 40px;
    }
    
    .price-current {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding-top: 40px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .hero-small-line {
        font-size: 0.9rem;
    }
    
    .hero-free-license-box {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .free-license-icon {
        font-size: 1.5rem;
    }
    
    .free-license-title {
        font-size: 0.85rem;
    }
    
    .free-license-subtitle {
        font-size: 0.85rem;
    }
    
    .free-license-note {
        font-size: 0.7rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .result-value {
        font-size: 2rem;
    }
    
    .price-current {
        font-size: 3rem;
    }
    
    .equipment-card {
        min-width: 260px;
        max-width: 260px;
        padding: 25px 15px;
    }
    
    .equipment-card h4 {
        font-size: 1.1rem;
    }
    
    .equipment-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ===================================
   ANIMATIONS & UTILITIES
   =================================== */

/* Hide elements before scroll animation triggers */
.equipment-card,
.testimonial-card,
.testimonial-video-card,
.calculator-block,
.visual-item {
    opacity: 0;
    transform: translateY(30px);
}

/* On mobile, show equipment cards immediately without animation */
@media (max-width: 768px) {
    .equipment-card {
        opacity: 1;
        transform: translateY(0);
        animation: none !important;
    }
}

/* Fade in animation when element becomes visible */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

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

/* Smooth transitions for dynamic content */
[data-animate] {
    transition: var(--transition-smooth);
}

/* ===================================
   CE BADGE (Hero Section)
   =================================== */
.ce-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.ce-badge i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.ce-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

/* ===================================
   INCLUDES LIST (Final CTA)
   =================================== */
.includes-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.includes-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.includes-list li:last-child {
    border-bottom: none;
}

.includes-list i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===================================
   INSTRUCTOR INFO SECTION
   =================================== */
.instructor-info {
    padding: calc(var(--section-padding) * 0.75) 0;
    background: var(--bg-white);
}

.instructor-box {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.instructor-content {
    color: var(--text-light);
}

.instructor-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.instructor-icon i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.instructor-title {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: var(--text-light);
    font-family: var(--font-heading);
}

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

.instructor-credentials li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.instructor-credentials i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.instructor-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.instructor-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-smooth);
    cursor: pointer;
}

.instructor-image:hover {
    transform: scale(1.05);
}

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

/* Image Modal/Lightbox */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    cursor: pointer;
    animation: fadeIn 0.3s ease-out;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
    animation: zoomIn 0.3s ease-out;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
}

.image-modal-close:hover {
    color: var(--accent-gold);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===================================
   STICKY ENROLL BUTTON
   =================================== */
.sticky-enroll-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 18px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(26, 95, 78, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: slideInRight 0.5s ease-out;
}

.sticky-enroll-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(26, 95, 78, 0.6);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.sticky-enroll-btn i {
    font-size: 1.2rem;
}

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

@media (max-width: 768px) {
    .sticky-enroll-btn {
        top: 15px;
        bottom: auto;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 30px;
    }
    
    .sticky-enroll-btn i {
        font-size: 1rem;
    }
    
    .sticky-enroll-btn span {
        display: inline;
    }
}

@media (max-width: 480px) {
    .sticky-enroll-btn {
        top: 12px;
        bottom: auto;
        right: 12px;
        left: auto;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .sticky-enroll-btn i {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .instructor-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .instructor-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .instructor-credentials li {
        font-size: 0.95rem;
        padding: 8px 0;
    }
    
    .instructor-images {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

/* ===================================
   CURRICULUM SECTION
   =================================== */
.curriculum {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}

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

.curriculum-meta {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.curriculum-list {
    max-width: 900px;
    margin: 0 auto;
}

.curriculum-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.curriculum-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 5px 20px rgba(26, 95, 78, 0.15);
}

.curriculum-header-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.curriculum-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.curriculum-title-main {
    flex: 1;
}

.curriculum-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

.curriculum-lessons {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.curriculum-toggle {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.curriculum-toggle:hover {
    background: var(--primary-color);
    color: white;
}

.curriculum-item.active .curriculum-toggle {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: white;
}

.curriculum-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 30px;
}

.curriculum-item.active .curriculum-content {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.lesson-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 80px;
}

.lesson-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid #f0f0f0;
}

.lesson-list li:last-child {
    border-bottom: none;
}

.lesson-list i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===================================
   FOOTER UPDATES
   =================================== */
.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-company {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: 1rem;
    opacity: 1 !important;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer-contact i {
    color: var(--accent-gold);
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
    opacity: 0.9;
}

.footer-contact a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.footer-address {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.footer-logo-img {
    max-width: 280px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.footer-certification {
    text-align: center;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.certification-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 0 10px 0;
    font-weight: 600;
}

.certification-license,
.certification-course {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--accent-gold);
    margin: 5px 0;
    font-weight: 500;
}

/* ===================================
   RESPONSIVE UPDATES
   =================================== */
@media (max-width: 768px) {
    .ce-badge {
        padding: 12px 20px;
        gap: 10px;
    }
    
    .ce-badge i {
        font-size: 1.5rem;
    }
    
    .ce-badge span {
        font-size: 0.8rem;
    }
    
    .calculator-white-box {
        padding: 30px 20px;
    }
    
    .equipment-image {
        height: 234px; /* Increased by 20% from 195px (which was already 30% from original) = total 56% increase from 150px */
        border-radius: 24px; /* More rounded corners to match desktop */
    }
    
    .equipment-image img {
        border-radius: 24px; /* More rounded corners to match desktop */
    }
    
    .equipment-card {
        padding: 25px 20px;
    }
    
    .price-recommendation {
        font-size: 0.75rem;
        display: block;
        margin-top: 0.25rem;
    }
    
    .loading-icon {
        width: 70px;
        height: 70px;
    }
    
    .loading-icon i {
        font-size: 2rem;
    }
    
    .loading-logo h2 {
        font-size: 1.6rem;
    }
    
    .spinner {
        width: 40px;
        height: 40px;
    }
    
    .loading-text {
        font-size: 0.9rem;
    }
    
    .curriculum-item {
        padding: 0;
    }
    
    .curriculum-header-row {
        padding: 20px;
        gap: 15px;
    }
    
    .curriculum-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .curriculum-title {
        font-size: 1rem;
    }
    
    .curriculum-lessons {
        font-size: 0.85rem;
    }
    
    .curriculum-toggle {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .lesson-list {
        padding-left: 0;
    }
    
    .lesson-list li {
        font-size: 0.95rem;
    }
    
    .curriculum-item.active .curriculum-content {
        padding: 0 20px 20px 20px;
    }
    
    .includes-list li {
        font-size: 1rem;
    }
    
    .certification-text {
        font-size: 1rem;
    }
    
    .certification-license,
    .certification-course {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .curriculum-header-row {
        padding: 15px;
        gap: 10px;
    }
    
    .curriculum-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .curriculum-title {
        font-size: 0.95rem;
    }
    
    .curriculum-lessons {
        font-size: 0.8rem;
    }
    
    .curriculum-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .lesson-list li {
        font-size: 0.9rem;
    }
    
    .curriculum-item.active .curriculum-content {
        padding: 0 15px 15px 15px;
    }
    
    .equipment-image {
        height: 187px; /* Increased by 20% from 156px (which was already 30% from original) = total 56% increase from 120px */
        border-radius: 24px; /* More rounded corners to match desktop */
    }
    
    .equipment-image img {
        border-radius: 24px; /* More rounded corners to match desktop */
    }
    
    .equipment-card h4 {
        font-size: 1.1rem;
    }
    
    .equipment-card p {
        font-size: 0.9rem;
    }
    
    .certification-text {
        font-size: 0.95rem;
    }
    
    .certification-license,
    .certification-course {
        font-size: 0.85rem;
    }
}
