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

:root {
    --deep-midnight: #0A0E27;
    --rich-navy: #1A1F3A;
    --soft-slate: #2D3250;
    --electric-coral: #FF6B6B;
    --vivid-cyan: #4ECDC4;
    --luminous-gold: #FFD93D;
    --soft-lavender: #A78BFA;
    --pure-white: #FFFFFF;
    --light-gray: #E8E9ED;
    --medium-gray: #9CA3AF;
    --dark-charcoal: #1F2937;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--deep-midnight);
    color: var(--light-gray);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.iti {
    width: 100%;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--electric-coral), var(--vivid-cyan));
    color: var(--pure-white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    color: var(--pure-white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--vivid-cyan);
    color: var(--vivid-cyan);
}

.btn-outline:hover {
    background: var(--vivid-cyan);
    color: var(--deep-midnight);
}

.btn-accent {
    background: var(--luminous-gold);
    color: var(--deep-midnight);
    border: none;
}

.btn-accent:hover {
    background: var(--soft-lavender);
    transform: translateY(-2px);
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header-main {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--light-gray);
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--vivid-cyan);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--vivid-cyan);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: 2px solid var(--vivid-cyan);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(78, 205, 196, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--rich-navy);
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 15px;
        border: 1px solid rgba(78, 205, 196, 0.2);
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
        border-bottom: 1px solid rgba(78, 205, 196, 0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 31, 58, 0.8));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.accent-text {
    background: linear-gradient(135deg, var(--electric-coral), var(--vivid-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
}

.hero-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--vivid-cyan);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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


@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-image-wrapper {
        margin-top: 2rem;
        transform: none;
    }
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(78, 205, 196, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--vivid-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}


@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* ===================================
   ARCHIVES SECTION (MASONRY)
   =================================== */
.archives-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--deep-midnight), var(--rich-navy));
}

.masonry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.masonry-item {
    break-inside: avoid;
}

.archive-card {
    background: var(--soft-slate);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.archive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.archive-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 39, 0.8));
}

.card-content {
    padding: 2rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--electric-coral), var(--vivid-cyan));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--pure-white);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.card-description {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-link {
    color: var(--vivid-cyan);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 1rem;
}


.card-tall .card-image {
    height: 350px;
}

.card-wide .card-image {
    height: 200px;
}


@media (min-width: 768px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-wide {
        grid-column: span 2;
    }
}


@media (min-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .card-wide {
        grid-column: span 2;
    }
}


@media (max-width: 767px) {
    .archives-section {
        padding: 60px 0;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
}

/* ===================================
   STATISTICS SECTION
   =================================== */
.statistics-section {
    padding: 100px 0;
    background: var(--deep-midnight);
}

.stat-card {
    background: var(--soft-slate);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(78, 205, 196, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--soft-lavender), var(--luminous-gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--pure-white);
}

.stat-card h3 {
    font-size: 1.5rem;
    margin: 0;
}

.stat-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.stat-card-body p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stat-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--vivid-cyan);
    font-family: 'Crimson Text', serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
}

.era-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--electric-coral);
}

.timeline-year {
    font-weight: 700;
    color: var(--electric-coral);
    font-size: 1.1rem;
    min-width: 120px;
}

.timeline-desc {
    color: var(--medium-gray);
}


@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stat-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stat-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-year {
        min-width: auto;
    }
}

/* ===================================
   TENNIS SECTION
   =================================== */
.tennis-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--rich-navy), var(--deep-midnight));
}

.tennis-content {
    padding-right: 2rem;
}

.tennis-description {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tennis-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tennis-stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(167, 139, 250, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(167, 139, 250, 0.1);
}

.tennis-stat-item i {
    font-size: 2.5rem;
    color: var(--soft-lavender);
}

.tennis-stat-item h4 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--soft-lavender);
}

.tennis-stat-item p {
    margin: 0;
    color: var(--medium-gray);
}

.tennis-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.3);
}

.tennis-image {
    width: 100%;
    height: auto;
}


@media (max-width: 991px) {
    .tennis-section {
        padding: 60px 0;
    }
    
    .tennis-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

/* ===================================
   CONTRIBUTION SECTION
   =================================== */
.contribution-section {
    padding: 100px 0;
    background: var(--deep-midnight);
}

.contribution-wrapper {
    background: var(--soft-slate);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.contribution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--electric-coral), var(--vivid-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.contribution-icon i {
    font-size: 2.5rem;
    color: var(--pure-white);
}

.contribution-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.contribution-image {
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
}

.contribution-image img {
    width: 100%;
    height: auto;
}

.contribution-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.contribution-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contribution-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 10px;
}

.benefit-item i {
    color: var(--vivid-cyan);
    font-size: 1.5rem;
}

.contribution-form {
    margin-top: 2rem;
}

.form-label {
    color: var(--light-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background: var(--rich-navy);
    border: 1px solid rgba(78, 205, 196, 0.2);
    color: var(--light-gray);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: var(--rich-navy);
    border-color: var(--vivid-cyan);
    color: var(--light-gray);
    box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
}

.form-control::placeholder {
    color: var(--medium-gray);
}

.form-check-input {
    background-color: var(--rich-navy);
    border-color: rgba(78, 205, 196, 0.2);
}

.form-check-input:checked {
    background-color: var(--vivid-cyan);
    border-color: var(--vivid-cyan);
}

.form-check-label {
    color: var(--medium-gray);
}

.form-check-label a {
    color: var(--vivid-cyan);
}


@media (max-width: 768px) {
    .contribution-section {
        padding: 60px 0;
    }
    
    .contribution-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* ===================================
   INFO SECTION
   =================================== */
.info-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--deep-midnight), var(--rich-navy));
}

.info-card {
    background: var(--soft-slate);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--luminous-gold), var(--soft-lavender));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon i {
    font-size: 2.5rem;
    color: var(--pure-white);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}


@media (max-width: 768px) {
    .info-section {
        padding: 60px 0;
    }
    
    .info-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: 100px 0;
    background: var(--deep-midnight);
}

.contact-info {
    padding-right: 2rem;
}

.contact-description {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--electric-coral), var(--vivid-cyan));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--pure-white);
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--medium-gray);
    margin: 0;
}

.contact-text a {
    color: var(--vivid-cyan);
}

.vintage-equipment {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
}

.vintage-equipment img {
    width: 100%;
    height: auto;
}

.contact-form-wrapper {
    background: var(--soft-slate);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}


@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* ===================================
   POLICY SECTION
   =================================== */
.policy-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--rich-navy), var(--deep-midnight));
}

.policy-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.policy-content p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.policy-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.policy-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: var(--soft-slate);
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.1);
    transition: all 0.3s ease;
    min-width: 150px;
}

.policy-link:hover {
    transform: translateY(-5px);
    border-color: var(--vivid-cyan);
}

.policy-link i {
    font-size: 2rem;
    color: var(--vivid-cyan);
}

.policy-link span {
    color: var(--light-gray);
    font-weight: 600;
}


@media (max-width: 768px) {
    .policy-section {
        padding: 60px 0;
    }
    
    .policy-links {
        flex-direction: column;
    }
    
    .policy-link {
        width: 100%;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--rich-navy);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(78, 205, 196, 0.2);
}

.footer-brand {
    margin-bottom: 2rem;
}

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

.footer-brand p {
    color: var(--medium-gray);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--vivid-cyan);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--vivid-cyan);
}

.footer-contact p {
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--vivid-cyan);
}

.footer-contact a {
    color: var(--vivid-cyan);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(78, 205, 196, 0.1);
    text-align: center;
    color: var(--medium-gray);
}

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

.footer-legal a {
    color: var(--medium-gray);
    margin: 0 0.5rem;
}

.footer-legal a:hover {
    color: var(--vivid-cyan);
}

.footer-legal span {
    color: var(--medium-gray);
}


@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-brand,
    .footer-links,
    .footer-contact {
        margin-bottom: 2rem;
    }
}

/* ===================================
   COOKIE CONSENT
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--soft-slate);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--vivid-cyan);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.95);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: var(--soft-slate);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

.cookie-modal-header h4 {
    margin: 0;
    font-size: 1.5rem;
}

.cookie-close {
    background: none;
    border: none;
    color: var(--light-gray);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-close:hover {
    color: var(--vivid-cyan);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 10px;
}

.cookie-category-header {
    margin-bottom: 0.5rem;
}

.cookie-category-header label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-category-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-label {
    font-weight: 600;
    color: var(--pure-white);
    font-size: 1.1rem;
}

.cookie-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
    padding-left: 2rem;
}

.cookie-modal-footer {
    padding: 2rem;
    border-top: 1px solid rgba(78, 205, 196, 0.1);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}


@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
    
    .cookie-modal-content {
        margin: 10px;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
    }
}

/* ===================================
   POLICY PAGES
   =================================== */
.policy-page {
    padding: 100px 0;
    background: var(--deep-midnight);
}

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

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.update-date {
    color: var(--medium-gray);
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--soft-slate);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--vivid-cyan);
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--soft-lavender);
}

.policy-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content strong {
    color: var(--light-gray);
}

.contact-box {
    background: rgba(78, 205, 196, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--vivid-cyan);
    margin: 1.5rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

.cookie-table th {
    background: rgba(78, 205, 196, 0.1);
    color: var(--vivid-cyan);
    font-weight: 600;
}

.cookie-table td {
    color: var(--medium-gray);
}


@media (max-width: 768px) {
    .policy-page {
        padding: 60px 0;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
}

/* ===================================
   THANKS PAGE
   =================================== */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-midnight), var(--rich-navy));
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--electric-coral), var(--vivid-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon i {
    font-size: 4rem;
    color: var(--pure-white);
}

.thanks-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.thanks-submessage {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


@media (max-width: 768px) {
    .thanks-section {
        padding: 60px 0;
    }
    
    .thanks-title {
        font-size: 2rem;
    }
    
    .thanks-message {
        font-size: 1rem;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
    
    .thanks-actions .btn {
        width: 100%;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@media (prefers-reduced-motion: no-preference) {
    .wow {
        visibility: hidden;
    }
}