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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-alt: #f3f4f6;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    width: 100%;
    max-width: 100vw;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection in forms and modals */
input, textarea, .modal-content {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-logo-img:hover {
    filter: brightness(0) saturate(100%) invert(35%) sepia(98%) saturate(1000%) hue-rotate(210deg);
    transform: scale(1.05);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Snap Container */
.snap-container {
    scroll-snap-type: y proximity;
}

.section {
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5% 40px;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: transparent;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/background_1.jpeg') center/cover no-repeat;
    filter: blur(4px);
    z-index: -2;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.7) 0%, rgba(224, 239, 255, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.hero-image {
    flex-shrink: 0;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--card-shadow-hover);
}

.profile-image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: var(--card-shadow-hover);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
}

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

/* About Section */
.about-section {
    background: var(--background);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-features li div {
    display: flex;
    flex-direction: column;
}

.about-features li strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.about-features li span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Curriculum Overview */
.curriculum-overview {
    margin-top: 2.5rem;
    width: 100%;
    max-width: 900px;
}

.curriculum-overview h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.curriculum-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.curriculum-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.curriculum-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.curriculum-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.curriculum-quarter {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

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

.curriculum-topics {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.curriculum-topics li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding-left: 1.25rem;
    position: relative;
}

.curriculum-topics li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    background: var(--background);
}

.section-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.reviews-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: white;
    padding: 1.5rem 3rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: #e5e7eb;
}

/* Superprof Card */
.superprof-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.superprof-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.superprof-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.superprof-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.superprof-rating .stars {
    margin-bottom: 0;
}

.superprof-rating .stars .star {
    font-size: 1.5rem;
}

.rating-text {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.review-count {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.9rem;
}

.superprof-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.superprof-cta {
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.15rem;
    margin-bottom: 0.25rem;
}

.star {
    font-size: 1.25rem;
    color: #d1d5db;
}

.star.filled {
    color: var(--secondary-color);
}

/* Packages Section */
.packages-section {
    background: var(--background-alt);
}

.packages-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.package-nav-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: none;
    background: white;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.package-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.packages-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: visible;
    padding: 1.5rem 0 1rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.package-card {
    flex: 0 1 320px;
    background: white;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.package-card::after {
    content: 'ⓘ';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 1.1rem;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.package-card:hover::after {
    color: var(--primary-color);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), #d97706);
    color: white;
    padding: 0.35rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.package-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.package-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.package-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.package-features {
    list-style: none;
    margin-bottom: 1rem;
    text-align: left;
    flex-grow: 1;
}

.package-features li {
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
}

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

.package-features li.highlighted-feature {
    font-weight: 600;
    color: var(--primary-color);
}

.package-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-unit {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.package-details-link {
    display: block;
    text-align: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: var(--background-alt);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.package-details-link:hover {
    background: #e5e7eb;
    color: var(--primary-color);
}

.package-details-link.highlighted-link {
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.package-details-link.highlighted-link:hover {
    background: transparent;
    color: var(--primary-dark);
}

.package-cta {
    display: block;
    width: 100%;
    padding: 0.7rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
    font-size: 0.9rem;
    margin-top: auto;
    cursor: pointer;
    font-family: inherit;
}

.package-cta:hover {
    background: var(--primary-dark);
}

.package-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.package-nav-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: none;
    background: white;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.package-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: calc(100% - 1rem);
    position: relative;
    margin: 1rem auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
    overflow-x: hidden;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.modal-content h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.modal-section p {
    color: var(--text-light);
    line-height: 1.7;
}

.modal-features {
    list-style: none;
    padding: 0;
}

.modal-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.5;
}

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

.modal-highlight {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

/* Steps Styles */
.steps {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    background: #e2e8f0;
    min-width: 70px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    position: relative;
}

.step:hover {
    background: #cbd5e1;
}

/* Main step (Prüfungssimulation) - golden number and bold */
.step.main-step .step-number {
    background: var(--secondary-color);
}

.step.main-step .step-label {
    font-weight: 700;
}

/* Active/selected step */
.step.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.step.active .step-number {
    background: white;
    color: var(--primary-color);
}

.step.active .step-label {
    color: white;
    font-weight: 600;
}

/* Main step when also active */
.step.main-step.active .step-number {
    background: white;
    color: var(--secondary-color);
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    transition: all 0.2s ease;
}

.step-arrow {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

/* Step boxes */
.step-boxes {
    margin-top: 1rem;
}

.step-box {
    display: none;
    animation: fadeIn 0.3s ease;
}

.step-box.active {
    display: block;
}

.modal-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.modal-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
}

.contact-section h2 {
    color: white;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    animation: fadeIn 0.5s ease;
}

.form-success .success-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease 0.2s both;
}

.form-success h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: white;
}

.form-success p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 400px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
    transition: box-shadow 0.3s ease;
    color: var(--text-dark);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

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

.submit-btn {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
}

.call-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.call-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.call-icon {
    font-size: 2.5rem;
}

.call-content {
    display: flex;
    flex-direction: column;
}

.call-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.call-number {
    font-size: 1.4rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-main {
    margin-bottom: 0.5rem;
}

.footer-brand {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .packages-slider {
        gap: 1rem;
    }
    
    .package-card {
        flex: 0 1 280px;
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 968px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .profile-image-placeholder {
        width: 220px;
        height: 220px;
    }
    
    .profile-image {
        width: 260px;
        height: 260px;
    }

    .about-container {
        text-align: center;
    }
    
    .about-features {
        align-items: center;
    }
    
    .about-features li {
        text-align: left;
    }
    
    .curriculum-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .curriculum-card {
        padding: 1rem;
    }

    .reviews-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .profile-image {
        width: 240px;
        height: 240px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: -1;
        align-items: center;
    }

    /* Mobile: Enable horizontal scrolling for packages */
    .packages-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        justify-content: flex-start;
        padding: 1rem 5%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .packages-slider::-webkit-scrollbar {
        display: none;
    }
    
    .package-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
    }
    
    .package-dots {
        display: flex;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .section {
        padding: 80px 4% 30px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-content h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .profile-image-placeholder {
        width: 180px;
        height: 180px;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }

    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-item {
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .superprof-card {
        padding: 1rem 1.25rem;
    }

    .superprof-content {
        gap: 0.75rem;
    }
    
    .superprof-photo {
        width: 45px;
        height: 45px;
    }

    .superprof-rating .stars .star {
        font-size: 1rem;
    }

    .rating-text {
        font-size: 0.85rem;
    }

    .review-count {
        font-size: 0.75rem;
    }

    .superprof-logo {
        height: 28px;
    }

    .superprof-cta {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }

    .package-card {
        flex: 0 0 260px;
    }

    /* Mobile modal styles */
    .modal {
        padding: 0.5rem;
    }

    .modal-content {
        padding: 1.25rem;
        border-radius: 16px;
        margin: 0.5rem auto;
    }

    .modal-close {
        top: 0.5rem;
        right: 0.75rem;
        font-size: 1.75rem;
    }

    .modal-content h2 {
        font-size: 1.25rem;
        padding-right: 1.5rem;
    }

    .modal-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .modal-subtitle {
        font-size: 0.9rem;
    }

    .modal-section {
        margin-top: 1rem;
    }

    .modal-section h3 {
        font-size: 0.95rem;
    }

    .modal-section p {
        font-size: 0.85rem;
    }

    .modal-features li {
        font-size: 0.85rem;
    }

    .modal-highlight {
        padding: 0.75rem;
    }

    .modal-cta {
        padding: 0.875rem;
        margin-top: 1.25rem;
        font-size: 0.95rem;
    }
    
    .steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        max-width: 280px;
        margin: 1rem auto 0;
    }
    
    .step-arrow {
        display: none;
    }
    
    .step {
        min-width: unset;
        padding: 0.5rem 0.6rem;
    }

    .step-number {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    
    .step-label {
        font-size: 0.7rem;
    }

    .step-boxes {
        margin-top: 0.75rem;
    }
    
    .call-card {
        justify-content: center;
    }
    
    .call-number {
        font-size: 1.2rem;
