:root {
    /* Color Palette */
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --secondary-color: #0288d1;
    --accent-color: #ff7043;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* Spacing & Layout */
    --container-width: 1400px;
    --section-padding: 80px 0;
    --border-radius: 24px;

    /* Transitions */
    --transition-fast: 0.3s ease;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-desc {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.btn-submit {
    background-color: var(--accent-color);
    color: white;
    width: 100%;
}

.btn-submit:hover {
    background-color: #f4511e;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/background.webp') no-repeat center center/cover;
    padding: 40px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-glass-card {
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
    padding: 30px 40px 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Navigation */
.hero-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hero Content */
.hero-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* CTA Section */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 18px 30px;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-ticket:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-ticket .arrow {
    font-size: 2rem;
    transition: var(--transition-fast);
}

.btn-ticket:hover .arrow {
    transform: translateX(5px);
}

/* Hero Right - Background Window */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiny-home-window {
    width: 100%;
    max-width: 550px;
    height: 400px;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.tiny-home-window::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: url('../images/background.webp') no-repeat center center/cover;
    filter: none;
    z-index: -1;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 0;
    min-height: 500px;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 500px;
}

/* Left Side - Countdown */
.countdown-side {
    background: #e8e4d9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.countdown-side::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: #7a8a7e;
    border-radius: 100% 0 0 0;
}

.countdown-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 10px 30px;
    align-items: center;
    justify-items: center;
    z-index: 1;
}

.countdown-item {
    display: contents;
}

.countdown-label {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2a2a2a;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.countdown-card {
    background: #2a2a2a;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.countdown-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: #f5f3ed;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.countdown-separator {
    font-size: 4rem;
    font-weight: 800;
    color: #2a2a2a;
    grid-column: 2;
    grid-row: 2;
    margin-top: -10px;
}

/* Explicit Grid Placement */
.countdown-item:nth-child(1) .countdown-label {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 10px;
}

.countdown-item:nth-child(1) .countdown-card {
    grid-column: 1;
    grid-row: 2;
}

.countdown-item:nth-child(3) .countdown-label {
    grid-column: 3;
    grid-row: 1;
    margin-bottom: 10px;
}

.countdown-item:nth-child(3) .countdown-card {
    grid-column: 3;
    grid-row: 2;
}

/* Right Side - Tickets */
.tickets-side {
    background: #9ca896;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.tickets-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: #6b7a6b;
    border-radius: 0 0 100% 0;
}

.tickets-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #f5f3ed;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 40px;
    z-index: 1;
    font-family: 'Outfit', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tickets-display {
    background: #f5f3ed;
    border-radius: 25px;
    padding: 40px 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.tickets-number {
    font-size: 5rem;
    font-weight: 800;
    color: #2a2a2a;
}

/* Carousel - Bootstrap Overrides */
.catalogo-section {
    background-color: #f5f3ed;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.catalogo-header {
    position: absolute;
    top: 40px;
    left: 0;
    background: #2a2a2a;
    color: white;
    padding: 15px 40px 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    border-radius: 0 5px 5px 0;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.catalogo-icon {
    width: 30px;
    height: 30px;
    stroke: white;
}

.catalogo-header h2 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.carousel-item {
    height: 700px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

/* ===== PARTICIPA SECTION REDESIGN ===== */

.participa-section {
    background-color: #8d998b;
    padding: 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.participa-container-split {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.participa-left {
    flex: 1;
    background-color: #7a8a7e;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.participa-left .section-title {
    text-align: left;
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.participa-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 400px;
    margin-bottom: 40px;
}

.cart-widget {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    color: white;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cart-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.cart-icon {
    font-size: 1.5rem;
}

.cart-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.cart-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f3ed;
    border-radius: 30px;
    padding: 8px 15px;
    margin-bottom: 20px;
}

.btn-minus,
.btn-plus {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: #2a2a2a;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-minus:hover,
.btn-plus:hover {
    transform: scale(1.1);
    background: #1a1a1a;
}

#ticket-count {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2a2a2a;
    min-width: 40px;
    text-align: center;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

#total-amount {
    font-weight: 700;
    font-size: 1.4rem;
}

.btn-pay {
    width: 100%;
    background: #f5f3ed;
    color: #2a2a2a;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.participa-right {
    flex: 1.5;
    background-color: #8d998b;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tickets-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    width: 100%;
}

.ticket-card-new {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.ticket-card-new:hover {
    transform: scale(1.05);
    z-index: 10;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.ticket-card-new img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.ticket-card-new:hover img {
    transform: scale(1.1);
}

.ticket-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ticket-card-new:hover .ticket-overlay {
    opacity: 1;
}

.btn-add-overlay {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    color: #2a2a2a;
    border: none;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    line-height: 1;
}

.btn-add-overlay:hover {
    transform: scale(1.1);
    background: #f5f3ed;
}

/* Nosotros Section */
.nosotros-section {
    padding: 80px 0;
    background-color: white;
}

.nosotros-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.nosotros-text {
    flex: 1;
}

.nosotros-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.text-left {
    text-align: left;
}

.features-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.feature-icon {
    font-size: 2rem;
    background: #e8f5e9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.nosotros-image {
    flex: 1;
}

.nosotros-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    background-color: #e8f5e9;
    padding: 80px 0;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
    background: transparent;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 14px;
    color: #999;
    pointer-events: none;
    transition: var(--transition-fast);
    background: white;
    padding: 0 5px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #333;
    padding-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #888;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: white;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .participa-container-split {
        flex-direction: column;
    }

    .participa-left,
    .participa-right {
        flex: 1;
        width: 100%;
    }

    .tickets-grid-new {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .nosotros-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        /* Reduce container padding */
    }

    .hero {
        padding: 0;
        min-height: auto;
        height: auto;
        display: block;
        /* Changed from flex to block for normal flow */
    }

    .hero-glass-card {
        width: 100%;
        margin: 0;
        border-radius: 0;
        border: none;
        background: rgba(0, 0, 0, 0.4);
        /* Darker background for legibility */
        padding: 20px;
    }

    .hero-card-content {
        flex-direction: column;
        gap: 2rem;
        padding-top: 80px;
        /* Space for navbar/hamburger */
        text-align: center;
    }

    .hero-left {
        gap: 2rem;
        align-items: center;
    }

    .hero-right {
        display: none;
        /* Hide the window illustration on mobile */
    }

    .brand-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .cta-heading {
        font-size: 2.2rem;
        text-align: center;
    }

    .btn-ticket {
        font-size: 1.5rem;
        padding: 15px 40px;
        width: 100%;
        justify-content: center;
    }

    .hero-nav {
        margin-bottom: 0;
        position: absolute;
        top: 20px;
        right: 20px;
        width: auto;
        z-index: 100;
    }

    .nav-links {
        display: none;
        /* Handled by JS toggling usually, but default hidden */
    }

    .hamburger {
        display: flex;
    }

    /* Stats Section Mobile */
    .stats-container {
        grid-template-columns: 1fr;
        height: auto;
        /* Allow auto height */
    }

    .countdown-side {
        padding: 40px 20px;
    }

    .countdown-side::after {
        display: none;
        /* Remove decorative shape on mobile */
    }

    .countdown-grid {
        gap: 15px;
    }

    .countdown-label {
        font-size: 1.5rem;
    }

    .countdown-number {
        font-size: 3rem;
    }

    .countdown-separator {
        font-size: 2.5rem;
    }

    .tickets-side {
        padding: 60px 20px;
    }

    .tickets-side::before {
        display: none;
    }

    .tickets-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .tickets-display {
        padding: 20px 40px;
        width: 100%;
        text-align: center;
    }

    .tickets-number {
        font-size: 3.5rem;
    }

    /* Catalogo Mobile */
    .catalogo-header {
        top: 10px;
        left: 0;
        right: 0;
        margin: auto;
        width: fit-content;
        border-radius: 50px;
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .carousel-item {
        height: 400px;
        /* Smaller height for mobile */
    }

    /* Participa Section Mobile */
    .participa-container-split {
        flex-direction: column;
    }

    .participa-left {
        padding: 40px 20px;
        align-items: center;
        /* Center content */
        text-align: center;
    }

    .participa-left .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .participa-description {
        margin: 0 auto 30px;
    }

    .participa-right {
        padding: 40px 20px;
    }

    .tickets-grid-new {
        grid-template-columns: 1fr;
        /* Single column */
        gap: 20px;
        max-width: 100%;
    }

    /* Contact Section Mobile */
    .contact-container-split {
        flex-direction: column;
        min-height: auto;
    }

    .contact-left,
    .contact-right {
        padding: 40px 20px;
    }

    .contact-logo-container {
        justify-content: center;
    }

    .contact-description {
        text-align: center;
    }

    .contact-title {
        text-align: center;
        font-size: 2.2rem;
    }

    /* Footer Mobile */
    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-logo-container {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== CONTACT SECTION REDESIGN ===== */
.contact-section-new {
    background-color: #e8e4d9;
    padding: 0;
    min-height: 600px;
}

.contact-container-split {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.contact-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-logo {
    width: 80px;
    height: 80px;
}

.contact-brand {
    font-size: 2rem;
    font-weight: 700;
    color: #7a7a7a;
    line-height: 1.2;
    margin: 0;
}

.contact-description {
    color: #7a7a7a;
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-description p {
    margin-bottom: 20px;
}

.contact-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #7a7a7a;
    margin-bottom: 30px;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-new label {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-weight: 400;
}

.form-group-new input,
.form-group-new textarea {
    padding: 15px;
    border: none;
    background: #7a7a7a;
    border-radius: 8px;
    font-size: 1rem;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group-new textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-enviar {
    align-self: flex-end;
    padding: 12px 40px;
    background: #7a7a7a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.btn-enviar:hover {
    background: #6a6a6a;
    transform: translateY(-2px);
}

/* ===== FOOTER REDESIGN ===== */
.footer-new {
    background-color: #2a2a2a;
    padding: 40px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: white;
    transition: transform 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-cute {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.footer-tiny {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.footer-rk-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rk-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2a2a2a;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container-split {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        padding: 60px 40px;
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    /* Light background to separate sections */
    text-align: center;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #000;
    /* Black background while loading or if no video */
}

.video-container video,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    z-index: 1;
    pointer-events: none;
}