/* ===================================
   MODERN WHITE CARD WEBSITE - CSS
   Eclipse Education
   =================================== */

/* CSS Variables for easy theming */
:root {
    --primary-color: #16a34a;
    --primary-dark: #15803d;
    --primary-light: #22c55e;
    --secondary-color: #0ea5e9;
    --secondary-dark: #0284c7;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --border-dark: #d1d5db;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ===================================
   TOP BANNER
   =================================== */
.top-banner {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border-bottom: 2px solid var(--accent-color);
}

.top-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.banner-text {
    flex: 1;
}

.banner-text a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
}

.banner-text a:hover {
    color: #fbbf24;
}

.banner-divider {
    margin: 0 1rem;
    opacity: 0.5;
}

.banner-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
}

.banner-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.main-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 55px;
    width: auto;
}

.rto-text {
    font-size: 0.75rem;
    color: #fbfbfb;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.nav-btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.nav-btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.nav-btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    box-shadow: var(--shadow-xl);
    padding: 5rem 1.5rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-link {
    display: block;
    color: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color 0.2s ease;
    margin-bottom: 0.5rem;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-primary {
    background-color: var(--primary-color);
    text-align: center;
    margin-top: 1rem;
}

.mobile-nav-primary:hover {
    background-color: var(--primary-dark);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
}

.feature-icon {
    color: var(--primary-light);
    flex-shrink: 0;
}

.hero-price {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.price-box {
    flex: 1;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
    color: var(--primary-light);
    font-weight: 800;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.amount {
    font-size: 3.5rem;
}

.cents {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.trustpilot-box {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.trustpilot-link {
    display: block;
    color: white;
}

.trustpilot-rating {
    color: #fbbf24;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.trustpilot-text {
    font-size: 0.875rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    position: relative;
    display: inline-block;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: var(--shadow-xl);
}



/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1.5;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--bg-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

/* ===================================
   TRUST BAR
   =================================== */
.trust-bar {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.trust-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.trust-item strong {
    color: var(--text-dark);
}

/* ===================================
   LOCATION BANNER
   =================================== */
.location-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 1.5rem;
    text-align: center;
}

.location-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.location-content > svg {
    flex-shrink: 0;
}

.location-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.location-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: white;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    text-decoration: none;
    font-weight: 600;
}

.location-map-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-1px);
}

/* ===================================
   MAIN CONTENT
   =================================== */
.main-content {
    background: var(--bg-light);
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   CALENDAR SECTION
   =================================== */
.calendar-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

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

.calendar-month {
    width: 100%;
}

.calendar-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* CALENDAR TABLE STYLES - Your existing calendar code */
.calendar-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.calendar-table th,
.calendar-table td {
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 0.5rem;
    vertical-align: top;
}

.calendar-table th {
    background-color: var(--bg-gray);
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.75rem 0.5rem;
}

.calendar-table td {
    min-height: 80px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.calendar-table td:hover {
    background-color: var(--bg-light);
}

.calHighlighted {
    background-color: #fef3c7 !important;
    border: 2px solid var(--accent-color) !important;
}

.event {
    margin-top: 0.25rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border: 1px solid var(--primary-dark);
    font-size: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.event a {
    color: white;
    text-decoration: none;
    display: block;
}

.event:hover {
    background-color: var(--primary-dark);
    transform: scale(1.02);
}

.calendar-iframe-container {
    width: 100%;
}

.calendar-iframe-container iframe {
    display: block;
    width: 100%;
    height: clamp(900px, 90vw, 1200px);
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.legend-color {
    width: 30px;
    height: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-dark);
}

.legend-available {
    background-color: var(--primary-color);
}

.legend-limited {
    background-color: #fbbf24;
}

.legend-full {
    background-color: #d1d5db;
}

/* ===================================
   LOCATION & MAP SECTION
   =================================== */
.location-map-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.location-map-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-details-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-details-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.location-address {
    font-style: normal;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.location-address strong {
    color: var(--text-dark);
    display: block;
}

.location-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.location-feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.coverage-panel {
    padding: 3rem;
    background: var(--bg-gray);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coverage-panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.coverage-panel p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

.coverage-note {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.coverage-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.coverage-columns ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--text-medium);
    line-height: 1.75;
    font-size: 0.9375rem;
}

.coverage-columns li {
    padding-left: 1rem;
    position: relative;
}

.coverage-columns li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-choose-section {
    margin-bottom: 4rem;
}

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

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===================================
   TABS SECTION
   =================================== */
.tabs-section {
    margin-bottom: 4rem;
}

.tabs {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.tabs input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tabbar {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-gray);
}

.tabbar label {
    flex: 1;
    text-align: center;
    padding: 1.25rem 1rem;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-medium);
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
}

.tabbar label:hover {
    background: white;
    color: var(--text-dark);
}

#t1:checked ~ .tabbar label[for="t1"],
#t2:checked ~ .tabbar label[for="t2"],
#t3:checked ~ .tabbar label[for="t3"],
#t4:checked ~ .tabbar label[for="t4"] {
    background: white;
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.panels {
    background: white;
}

.panel {
    display: none;
    padding: 3rem;
    animation: fadeIn 0.3s ease;
}

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

#t1:checked ~ .panels #p1,
#t2:checked ~ .panels #p2,
#t3:checked ~ .panels #p3,
#t4:checked ~ .panels #p4 {
    display: block;
}

.panel h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.panel h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.panel p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.panel ul, .panel ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-medium);
}

.panel li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-box-primary {
    border-left-color: var(--primary-color);
}

.info-box-success {
    border-left-color: var(--success-color);
    background: #f0fdf4;
}

.info-box h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.info-box h5 {
    margin: 1rem 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.detail-list {
    list-style: none;
    margin-left: 0;
}

.detail-list li {
    padding-left: 1.5rem;
    position: relative;
}

.detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.checklist {
    list-style: none;
    margin-left: 0;
}

.checklist li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.location-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-gray);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

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

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.cta-box h4 {
    color: white;
    margin-top: 0;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-box .btn {
    margin-top: 1rem;
}

/* Learning Modules */
.learning-modules {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.module-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.module-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.module-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.module-content h4 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.module-content p {
    margin: 0;
    font-size: 0.9375rem;
}

/* FAQ Styles */
.faq-list {
    margin: 2rem 0;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer ol {
    margin-left: 1.5rem;
}

.contact-box {
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
}

.contact-box h4 {
    margin-top: 0;
    text-align: center;
}

.contact-box p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.contact-method:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-method svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-method > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.method-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Reviews Section */
.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trustpilot-badge {
    display: inline-block;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.trustpilot-badge a {
    color: var(--text-dark);
}

.trustpilot-stars {
    color: #fbbf24;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trustpilot-rating {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.trustpilot-count {
    color: var(--text-medium);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

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

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-dark);
    font-weight: 600;
}

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

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

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.final-cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.final-cta-note {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 3rem 1.5rem 1.5rem;
    border-top: 5px solid var(--primary-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-column {
    color: white;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.social-links a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: white;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-address {
    color: white;
    font-style: normal;
    line-height: 1.8;
}

.footer-address a {
    color: #a8d8ff;
}

.footer-address a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: white;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .banner-divider {
        display: none;
    }
    
    .hero-section {
        padding: 3rem 1.5rem;
    }
    
    .hero-price {
        flex-direction: column;
        text-align: center;
    }
    
    .trustpilot-box {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1rem;
    }
    
    .trust-container {
        justify-content: center;
    }
    
    .trust-item {
        flex-basis: calc(50% - 1rem);
        justify-content: center;
    }
    
    .location-content {
        flex-direction: column;
        text-align: center;
    }
    
    .location-text {
        flex-direction: column;
        text-align: center;
    }
    
    .location-map-container {
        grid-template-columns: 1fr;
    }
    
    .location-details-card,
    .coverage-panel {
        padding: 2rem 1.5rem;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-actions .btn {
        width: 100%;
    }
    
    .coverage-columns {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .calendar-section {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }
    
    .calendar-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calendar-table th,
    .calendar-table td {
        padding: 0.25rem;
        font-size: 0.875rem;
    }
    
    .event {
        font-size: 0.625rem;
        padding: 0.25rem;
    }
    
    .calendar-iframe-container iframe {
        height: 900px;
        border-radius: var(--radius-md);
    }
    
    .tabbar label {
        padding: 1rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .panel {
        padding: 2rem 1rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-item {
        flex-basis: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .learning-modules {
        gap: 1rem;
    }
    
    .module-card {
        flex-direction: column;
        text-align: center;
    }
    
    .module-number {
        margin: 0 auto;
    }
    
    .calendar-iframe-container iframe {
        height: 800px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility & Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .top-banner,
    .main-header,
    .mobile-menu-toggle,
    .mobile-nav,
    .hero-cta,
    .final-cta-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .calendar-section {
        box-shadow: none;
        border: 1px solid #000;
    }
}
