/* ========================================
   PORSCHE RIO SUMMIT ITAIPAVA 2026
   Premium Editorial Style
   ======================================== */

@font-face {
    font-family: 'KoratakiExtraBold';
    src: url('fonts/Korataki-ExtraBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Korataki';
    src: url('fonts/Korataki-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --charcoal: #2C3440;
    --gold: #C5A55A;
    --gold-dark: #B8963D;
    --cream: #F5F0E8;
    --cream-light: #FAF6F0;
    --olive: #6B7B5E;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: rgba(255, 255, 255, 0.85);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

a, button, input, select, textarea {
    cursor: none;
}

/* ========================================
   Custom Cursor
   ======================================== */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background 0.3s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(197, 165, 90, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold);
}

/* ========================================
   Preloader
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--white);
    display: block;
    margin-bottom: 32px;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--gold);
    transition: width 0.3s ease;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ========================================
   Buttons
   ======================================== */
.btn-outline-light {
    display: inline-block;
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn-outline-gold {
    display: inline-block;
    padding: 16px 36px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 165, 90, 0.35);
}

/* ========================================
   Section Base
   ======================================== */
.section {
    position: relative;
    overflow: hidden;
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 160px 48px;
    text-align: center;
}

.section-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.section-label-light {
    color: var(--gold);
}

.section-title {
    font-family: 'KoratakiExtraBold', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--charcoal);
    margin-bottom: 28px;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-title em {
    font-style: normal;
    color: var(--gold);
}

.section-title-light {
    color: var(--white);
}

.section-title-light em {
    color: var(--gold);
}

.section-title-large {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-title-italic em {
    font-style: normal;
}

.section-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(44, 52, 64, 0.7);
    line-height: 1.9;
    max-width: 650px;
    margin: 0 auto;
}

.section-desc-light {
    color: var(--text-light);
}

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 52, 64, 0.3) 0%,
        rgba(44, 52, 64, 0.5) 50%,
        rgba(44, 52, 64, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px;
    max-width: 800px;
}

.hero-date {
    display: inline-block;
    font-family: 'KoratakiExtraBold', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    background: var(--gold);
    padding: 10px 28px;
    border-radius: 50px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
    font-family: 'KoratakiExtraBold', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 28px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-title em {
    font-style: normal;
    display: block;
    color: var(--gold);
}

.hero-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.hero-location {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
    letter-spacing: 0.08em;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

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

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

@keyframes scrollLine {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ========================================
   Section Gold
   ======================================== */
.section-gold {
    background: var(--gold);
}

.section-gold .section-title {
    color: var(--white);
}

.section-gold .section-title em {
    color: var(--charcoal);
}

.section-gold .section-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   Section Split
   ======================================== */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.section-split-reverse .split-content {
    order: 1;
}

.section-split-reverse .split-image {
    order: 2;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.split-content {
    background: var(--charcoal);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content .section-title {
    color: var(--white);
}

.split-content .section-title em {
    color: var(--gold);
}

.check-list {
    list-style: none;
    margin-top: 32px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.check-list li:hover {
    padding-left: 8px;
}

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

.check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    color: var(--white);
}

.check-list li span:last-child {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ========================================
   Section Experience
   ======================================== */
.section-experience {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.experience-bg {
    position: absolute;
    inset: 0;
}

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 52, 64, 0.75);
}

.experience-content {
    position: relative;
    z-index: 1;
    padding: 0 48px;
}

/* ========================================
   Timeline
   ======================================== */
.section-possibilities {
    background: var(--cream-light);
}

.timeline {
    max-width: 700px;
    margin: 64px auto 0;
    text-align: center;
}

.timeline-item {
    padding: 0 0 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-title {
    font-family: 'KoratakiExtraBold', sans-serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.timeline-item:hover .timeline-title {
    color: var(--gold);
}

.timeline-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(44, 52, 64, 0.6);
}

/* ========================================
   Section Numbers
   ======================================== */
.section-numbers {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.numbers-bg {
    position: absolute;
    inset: 0;
}

.numbers-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.numbers-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 52, 64, 0.9);
}

.numbers-content {
    position: relative;
    z-index: 1;
    padding: 140px 48px;
    max-width: 1100px;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin: 72px 0 56px;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: rgba(197, 165, 90, 0.3);
}

.stat-number {
    font-family: 'Korataki', sans-serif;
    font-size: 4.5rem;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    order: -1;
}

/* ========================================
   Section Learn
   ======================================== */
.section-learn {
    background: var(--cream);
}

.learn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 56px;
    text-align: left;
}

.learn-col-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 28px;
}

.learn-list {
    list-style: none;
}

.learn-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(44, 52, 64, 0.12);
    font-size: 1rem;
    font-weight: 300;
    color: var(--charcoal);
    transition: var(--transition);
}

.learn-list li:hover {
    padding-left: 8px;
    color: var(--gold);
}

.learn-list li svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

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

/* ========================================
   Gallery
   ======================================== */
.section-gallery {
    background: var(--cream-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 52, 64, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'KoratakiExtraBold', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   Section Music
   ======================================== */
.section-music {
    background: var(--cream);
}

.section-music .section-title {
    color: var(--charcoal);
}

.section-music .section-title em {
    color: var(--gold);
}

.section-music .section-desc {
    color: rgba(44, 52, 64, 0.7);
}

.player-wrap {
    max-width: 660px;
    margin: 48px auto 0;
    border-radius: 12px;
    overflow: visible;
}

.player-wrap iframe {
    display: block;
    border-radius: 12px;
}

/* ========================================
   Section Venue
   ======================================== */
.section-venue {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.venue-bg {
    position: absolute;
    inset: 0;
}

.venue-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-overlay {
    position: absolute;
    inset: 0;
    background: rgba(107, 123, 94, 0.8);
}

.venue-content {
    position: relative;
    z-index: 1;
    padding: 0 48px;
    max-width: 700px;
}

/* ========================================
   FAQ
   ======================================== */
.section-faq {
    background: var(--cream);
}

.faq-list {
    max-width: 700px;
    margin: 56px auto 0;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(44, 52, 64, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--charcoal);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 24px;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(44, 52, 64, 0.7);
    line-height: 1.8;
}

/* ========================================
   Section Tradition
   ======================================== */
.section-tradition {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tradition-bg {
    position: absolute;
    inset: 0;
}

.tradition-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tradition-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 52, 64, 0.85);
}

.tradition-content {
    position: relative;
    z-index: 1;
    padding: 0 48px;
    max-width: 800px;
}

.tradition-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

/* ========================================
   CTA Final
   ======================================== */
.section-cta-final {
    background: var(--charcoal);
    padding: 160px 0;
    text-align: center;
}

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

/* ========================================
   Countdown
   ======================================== */
.countdown {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
}

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

.countdown-number {
    font-family: 'Korataki', sans-serif;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}

/* ========================================
   Contact Form
   ======================================== */
.section-contact {
    background: var(--cream-light);
}

.contact-form {
    max-width: 600px;
    margin: 56px auto 0;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-row .form-group {
    margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid rgba(44, 52, 64, 0.12);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(44, 52, 64, 0.4);
}

.contact-form select {
    appearance: none;
    color: var(--charcoal);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C5A55A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.contact-form select:invalid {
    color: rgba(44, 52, 64, 0.4);
}

.contact-form textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-submit {
    margin-top: 8px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--charcoal);
    color: var(--white);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px 48px;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
}

.footer-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.social-link:hover svg {
    color: var(--white);
}

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

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Scroll Animations
   ======================================== */
.animate-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 992px) {
    body {
        cursor: auto;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
    
    a, button, input, select, textarea {
        cursor: auto;
    }
    
    .section-inner {
        padding: 100px 32px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    }
    
    .section-split {
        grid-template-columns: 1fr;
    }
    
    .split-image {
        height: 50vh;
    }
    
    .split-content {
        padding: 64px 32px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-row {
        flex-wrap: wrap;
        gap: 32px;
    }
    
    .stat-item {
        width: calc(50% - 16px);
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .countdown {
        gap: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .section-inner {
        padding: 80px 24px;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    
    .section-title-large {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }
    
    .hero-date {
        font-size: 0.7rem;
        padding: 10px 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-numbers,
    .section-tradition {
        min-height: auto;
    }
    
    .numbers-content {
        padding: 80px 24px;
    }
    
    .tradition-content {
        padding: 80px 24px;
    }
    
    .section-experience {
        min-height: 50vh;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 32px;
    }
    
    .countdown-item {
        width: calc(50% - 16px);
    }
    
    .tradition-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .partner-item {
        width: 90px;
        height: 45px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 24px;
        left: 24px;
    }
    
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 24px;
        right: 24px;
    }
}

@media (max-width: 480px) {
    .section-inner {
        padding: 64px 20px;
    }
    
    .section-title {
        font-size: clamp(1.1rem, 5.5vw, 1.5rem);
    }
    
    .section-title-large {
        font-size: clamp(1.2rem, 6vw, 1.7rem);
    }
    
    .hero-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .section-desc {
        font-size: 0.95rem;
    }
    
    .check-list li span:last-child {
        font-size: 0.88rem;
    }
    
    .timeline-title {
        font-size: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .learn-list li {
        font-size: 0.9rem;
    }
    
    .btn-solid,
    .btn-outline-gold,
    .btn-outline-light {
        padding: 14px 28px;
        font-size: 0.75rem;
    }
}

/* ========================================
   Partners Section
   ======================================== */
.section-partners {
    background: var(--cream);
    text-align: center;
}

.partners-grid {
    display: flex;
    align-items: center;
    margin-top: 56px;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    flex-shrink: 0;
    padding: 12px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.partner-item:hover {
    opacity: 1;
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

.partners-track {
    display: flex;
    gap: 48px;
    animation: scrollPartners 25s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   WhatsApp Button
   ======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-4px) !important;
}

/* ========================================
   Submit Button
   ======================================== */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 36px;
    background: var(--charcoal);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.btn-submit span,
.btn-submit svg {
    position: relative;
    z-index: 1;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(44, 52, 64, 0.3);
}

.btn-submit:hover::before {
    width: 100%;
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(44, 52, 64, 0.2);
}

/* ========================================
   Improved Button Animations
   ======================================== */
.btn-solid,
.btn-outline-light {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-solid::before,
.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-solid:hover::before,
.btn-outline-light:hover::before {
    left: 100%;
}

.btn-solid {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 165, 90, 0.35);
}

.btn-outline-light {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: var(--charcoal);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}