/* ========================================
   Cincinnati's Best Summer Camp - Styles
   Colors: Blue #0066ff, Green #00CC66
   ======================================== */

:root {
    --blue: #0066ff;
    --blue-dark: #0052cc;
    --blue-light: #e6f0ff;
    --green: #00CC66;
    --green-dark: #00a653;
    --green-light: #e6fff0;
    --yellow: #FF9900;
    --yellow-dark: #CA7800;
    --yellow-light: #FFCFB2;
    --coral: #FF3B8A;
    --coral-dark: #CC0066;
    --coral-light: #FFCCD9;
    --pastel-blue: #ABB9FF;
    --pastel-yellow: #FFCFB2;
    --pastel-green: #A8E6C1;
    --pastel-coral: #FF90B1;
    --card-blue-light: #DFE3FF;
    --card-green-light: #C2FFD1;
    --white: #ffffff;
    --off-white: #f8fafb;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ---- Container ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 58px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--blue);
    background: var(--blue-light);
}

.nav-links a.active {
    color: var(--blue);
    background: var(--blue-light);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 204, 102, 0.35);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 204, 102, 0.4);
}

.btn-cta {
    background: var(--blue);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35);
}

.btn-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2.5px solid var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue) 0%, #0052cc 50%, var(--blue) 100%);
    padding: 80px 24px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--green);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--green);
    bottom: -100px;
    left: -50px;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 50%;
    left: 15%;
}

.hero-shape-4 {
    width: 220px;
    height: 220px;
    background: var(--yellow);
    bottom: 10%;
    right: 8%;
}

.hero-dots {
    position: absolute;
    top: 30px;
    right: 60px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 2px, transparent 2px);
    background-size: 16px 16px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Luckiest Guy', 'Segoe UI', cursive;
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.hero-line {
    display: block;
    font-size: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-summer-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 16px 0 6px;
}

.hero-word {
    display: flex;
    gap: 6px;
}

.hero-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0.9em;
    font-size: 58px;
    line-height: 1;
    padding: 10px 12px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    text-shadow: 2px 3px 0 rgba(15,23,42,0.25);
    -webkit-text-stroke: 1.5px rgba(15,23,42,0.5);
}

.hero-letter:nth-child(odd) {
    transform: rotate(-5deg);
}

.hero-letter:nth-child(even) {
    transform: rotate(5deg);
}

.hero-letter:nth-child(4n+1) {
    background: var(--pastel-blue);
}

.hero-letter:nth-child(4n+2) {
    background: var(--pastel-yellow);
}

.hero-letter:nth-child(4n+3) {
    background: var(--pastel-green);
}

.hero-letter:nth-child(4n) {
    background: var(--pastel-coral);
}

.hero h1 .year {
    display: block;
    font-size: 54px;
    color: var(--green);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-top: 26px;
}

.hero-tagline {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-weight: 500;
}

/* ---- CTA Banner ---- */
.cta-banner {
    background: var(--green);
    padding: 24px;
    text-align: center;
}

/* ---- Sections ---- */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--off-white);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ---- Text Block (centered content, no image) ---- */
.text-block {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.text-block .section-icon {
    display: block;
    font-size: 56px;
    margin-bottom: 16px;
}

.text-block h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-block p {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
    text-align: left;
}

.text-block .btn {
    margin-top: 12px;
}

/* ---- Card Grid ---- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.card-grid-centered {
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    justify-content: center;
}

/* ---- Reason Carousel ---- */
.reason-carousel {
    position: relative;
    max-width: 640px;
    margin: 48px auto 0;
    min-height: 150px;
    padding-bottom: 34px;
    text-align: center;
}

.reason-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.reason-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.reason-slide h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
}

.reason-slide p {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

.reason-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.reason-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.reason-dot:hover {
    transform: scale(1.15);
}

.reason-dot.active {
    background: var(--blue);
}

@media (prefers-reduced-motion: reduce) {
    .reason-slide {
        transition: none;
    }
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.highlights .card {
    border-color: var(--green);
}

.card-icon {
    height: 72px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ---- Contact Form ---- */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: flex;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.required {
    color: #e53e3e;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease;
    font-family: inherit;
    background: var(--white);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

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

/* ---- Final CTA ---- */
.final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 60px 24px;
    text-align: center;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 32px;
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 84px;
    width: auto;
    display: block;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--green);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ---- Page Banner (inner pages) ---- */
.page-banner {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.1;
    top: -200px;
    right: -100px;
}

.page-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--green);
    border-radius: 50%;
    opacity: 0.08;
    bottom: -80px;
    left: -40px;
}

.page-banner h1 {
    font-size: 44px;
    font-weight: 900;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

/* ---- Offerings Showcase (colorful backdrop) ---- */
.offerings-showcase {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.offerings-intro {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

.offerings-intro p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.offerings-intro p:last-child {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0;
}

/* ---- Offering Cards ---- */
.offering-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 32px;
    margin-bottom: 32px;
    border-left: 6px solid var(--blue);
    transform: rotate(-1deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-card:nth-child(even) {
    transform: rotate(1deg);
}

.offering-card:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.offering-card:nth-child(4n+1) {
    background: var(--card-blue-light);
    border-left-color: var(--blue);
}

.offering-card:nth-child(4n+1) .offering-dates { color: var(--blue-dark); }

.offering-card:nth-child(4n+2) {
    background: var(--yellow-light);
    border-left-color: var(--yellow);
}

.offering-card:nth-child(4n+2) .offering-dates { color: var(--yellow-dark); }

.offering-card:nth-child(4n+3) {
    background: var(--card-green-light);
    border-left-color: var(--green);
}

.offering-card:nth-child(4n+3) .offering-dates { color: var(--green-dark); }

.offering-card:nth-child(4n) {
    background: var(--coral-light);
    border-left-color: var(--coral);
}

.offering-card:nth-child(4n) .offering-dates { color: var(--coral-dark); }

.offering-img {
    flex: 0 0 280px;
}

.offering-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.offering-text h3 {
    font-family: 'Luckiest Guy', 'Segoe UI', cursive;
    font-size: 26px;
    letter-spacing: 0.5px;
    color: var(--blue);
    margin-bottom: 8px;
}

.offering-text .offering-dates {
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.offering-text p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ---- Packages ---- */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    border-color: var(--green);
    position: relative;
    overflow: hidden;
}

.package-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 26px;
    right: -36px;
    background: var(--green-dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.package-header {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 28px 24px;
    color: var(--white);
    border-radius: var(--radius) var(--radius) 0 0;
}

.package-header:not(:has(.price-prefix)) {
    padding-top: 36px;
    padding-bottom: 36px;
}

.package-card.featured .package-header {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

.package-header h3 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 4px;
}

.package-header .price {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
}

.package-header .price-prefix {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.85;
    line-height: 1.2;
    margin-bottom: 2px;
}

.package-header .price-period {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.2;
}

.package-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li::before {
    content: '\2713';
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

/* ---- Contact Page ---- */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.contact-info-card .info-icon {
    height: 40px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card .info-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--gray-600);
}

.contact-page-form {
    max-width: 700px;
    margin: 0 auto;
}

.contact-page-form .contact-form {
    box-shadow: var(--shadow-lg);
}

/* ---- Testimonial ---- */
.testimonials {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--green-light) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 60px;
    color: var(--green);
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
}

.testimonial-card .testimonial-author {
    font-weight: 700;
    color: var(--blue);
    font-style: normal;
    font-size: 14px;
}

/* ---- Registration Page ---- */
.deposit-notice {
    background: var(--green-light);
    border: 2px solid var(--green);
    border-radius: var(--radius);
    padding: 20px 28px;
    text-align: center;
    font-weight: 700;
    color: var(--green-dark);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 48px;
}

.steps-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.reminders-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.reminders-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.reminders-list li::before {
    content: '\2713';
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.early-bird-box {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.early-bird-box p {
    margin-bottom: 16px;
    font-size: 16px;
    opacity: 0.95;
}

.early-bird-box .promo-code {
    display: inline-block;
    background: var(--white);
    color: var(--coral-dark);
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 6px;
    letter-spacing: 1px;
    margin: 0 4px;
}

.early-bird-box .btn {
    margin-top: 8px;
}

/* ---- Sparkles ---- */
.sparkle-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.85);
    animation: sparkle-twinkle 3s ease-in-out infinite;
}

.sparkle svg {
    display: block;
    width: 100%;
    height: 100%;
}

.sparkle-yellow {
    color: var(--yellow);
}

@keyframes sparkle-twinkle {
    0%, 100% { opacity: 0.25; transform: scale(0.75) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.15) rotate(20deg); }
}

@media (prefers-reduced-motion: reduce) {
    .sparkle {
        animation: none;
        opacity: 0.8;
    }
}

/* ---- Wave Divider ---- */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    position: relative;
    left: -30%;
    width: 160%;
    height: 50px;
    animation: wave-sway 5s ease-in-out infinite;
}

@keyframes wave-sway {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(14%); }
}

@media (prefers-reduced-motion: reduce) {
    .wave-divider svg {
        animation: none;
    }
}

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
    }
}

/* ---- Modal ---- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 32px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: var(--gray-600);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    color: var(--blue);
    background: var(--blue-light);
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.modal-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
}

.modal-box p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .offering-card {
        flex-direction: column;
        transform: none;
    }

    .offering-card:hover {
        transform: translateY(-4px);
    }

    .offering-img {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: var(--shadow-md);
        gap: 4px;
    }

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

    .hero-line {
        font-size: 26px;
    }

    .hero-letter {
        font-size: 38px;
        padding: 7px 9px;
    }

    .hero h1 .year {
        font-size: 38px;
        margin-top: 18px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero {
        padding: 60px 24px;
        min-height: 300px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .text-block h2 {
        font-size: 26px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 16px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .early-bird-box {
        padding: 28px 20px;
    }

    .modal-box {
        padding: 40px 24px 24px;
    }
}
