/* --- Sticky Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.nav-cta {
    background: var(--color-primary);
    padding: 12px 28px !important;
    border-radius: 50px;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(209, 0, 36, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209, 0, 36, 0.5);
    background: #ff1a1a;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        display: flex;
        /* Override display:none */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        display: inline-block !important;
        width: auto;
    }
}

/* --- Hero Section (Refined) --- */
/* --- Hero Section (Refined for Responsiveness) --- */
.brt-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: auto;
    /* Remove min-height: 100vh to avoid issues on small screens */
    display: flex;
    align-items: center;
}

.brt-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.brt-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.event-title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
    background: linear-gradient(to right, #fff, #d10024);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: #ddd;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 500px;
    line-height: 1.6;
}

.info-icons-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.icon-item-hero {
    text-align: center;
    min-width: 80px;
}

.icon-circle-hero {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-weight: bold;
}

.icon-item-hero p {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logos Positioned at Top Left inside Container */
.logos-container {
    display: flex;
    gap: 20px;
    z-index: 10;
    margin-bottom: 40px;
}

/* Invitation Card */
.invitation-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 4px solid var(--color-primary);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    max-width: 480px;
    margin-left: auto;
    overflow: hidden;
    transition: transform 0.3s;
}

/* For index.html internal usage */
.event-card {
    background: #fff;
    color: #333;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.qr-box {
    border: 2px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.qr-placeholder {
    width: 100px;
    height: 100px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 2rem;
    color: #ccc;
}

.splash-burst {
    background: #d10024;
    color: white;
    padding: 20px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    font-weight: 800;
    text-align: center;
    transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(209, 0, 36, 0.3);
}

.invite-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.invite-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    color: #ccc;
}

.invite-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.invite-detail-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.btn-invite {
    background: var(--color-primary);
    color: white;
    width: 100%;
    padding: 18px;
    border-radius: 10px;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-align: center;
    display: block;
    text-decoration: none;
}

.address-bar {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 40px 0;
    margin-top: 50px;
    border-top: 4px solid var(--color-primary);
}

.logos-header {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin-bottom: 40px;
}

.logo-box {
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #000;
}

/* --- Intro Section: Connect & Network --- */
.intro-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #1a0505, #000);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px -10px rgba(209, 0, 36, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

/* --- stats strip --- */
.stats-strip {
    background: linear-gradient(90deg, #d10024, #800000);
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stats-grid h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

/* --- How It Works (Process) --- */
.process-section {
    padding: 120px 0;
    background: #080808;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 80px 40px;
    /* larger vertical gap for zig-zag effect */
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

/* Step Colors & Icons */
.step-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    top: 20px;
    right: 20px;
}

.step-number-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Step 1: Red */
.step-1 .step-number-circle {
    background: #e63946;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
}

.step-1 .step-icon-box {
    background: rgba(230, 57, 70, 0.1);
    color: #e63946;
}

/* Step 2: Blue */
.step-2 .step-number-circle {
    background: #4361ee;
    box-shadow: 0 0 15px rgba(67, 97, 238, 0.4);
}

.step-2 .step-icon-box {
    background: rgba(67, 97, 238, 0.1);
    color: #4361ee;
}

/* Step 3: Green */
.step-3 .step-number-circle {
    background: #2a9d8f;
    box-shadow: 0 0 15px rgba(42, 157, 143, 0.4);
}

.step-3 .step-icon-box {
    background: rgba(42, 157, 143, 0.1);
    color: #2a9d8f;
}

/* Step 4: Purple */
.step-4 .step-number-circle {
    background: #7209b7;
    box-shadow: 0 0 15px rgba(114, 9, 183, 0.4);
}

.step-4 .step-icon-box {
    background: rgba(114, 9, 183, 0.1);
    color: #7209b7;
}

/* Step 5: Orange */
.step-5 .step-number-circle {
    background: #f77f00;
    box-shadow: 0 0 15px rgba(247, 127, 0, 0.4);
}

.step-5 .step-icon-box {
    background: rgba(247, 127, 0, 0.1);
    color: #f77f00;
}

/* Center piece (BRT Circle) styling if we want it, or just use grid */
/* Using simple grid flow is cleaner for responsive than the orbit layout */


/* --- Benefits Section --- */
.benefits-section {
    padding: 100px 0;
    background: #050505;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d10024 0%, #800000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(209, 0, 36, 0.3);
}

.benefit-card p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Events Section --- */
.events-section {
    padding: 100px 0;
    background: #000;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.event-listing-card {
    background: #fff;
    color: #333;
    border-radius: 20px;
    overflow: hidden;
}

.event-img {
    height: 200px;
    background-color: #333;
    background-size: cover;
    background-position: center;
    position: relative;
}

.seats-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d10024;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.event-details {
    padding: 25px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    color: #666;
    font-size: 0.9rem;
}

/* Specific override for Event buttons */
.event-listing-card .btn-primary {
    color: white !important;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    height: 250px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
    cursor: pointer;
}

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

/* --- Footer CTA Strip --- */
.footer-cta {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 50px;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 1200px;
}

/* Tablet and Small Desktop Tweaks */
@media (max-width: 1100px) {
    .brt-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
        justify-items: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .event-title {
        font-size: 3rem;
    }

    .hero-description {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 600px;
    }

    .info-icons-row {
        justify-content: center !important;
        width: 100%;
    }

    .invitation-card {
        margin: 0 auto !important;
        max-width: 440px;
        grid-column: 1 / -1;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-stats-row {
        justify-content: center !important;
        flex-wrap: wrap;
    }

    .intro-text .btn {
        margin: 0 auto;
        display: inline-block;
    }

    .event-card {
        margin: 0 auto;
    }

    .process-grid {
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background: #050505;
    /* Slightly lighter than pure black */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    /* Hide default arrow */
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 25px 25px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    display: block;
    animation: fadeIn 0.4s ease;
}

.faq-item[open] .faq-answer {
    padding-top: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Carousel Gallery --- */
.gallery-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-track-container {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-slide {
    min-width: 33.33%;
    /* Show 3 images at a time */
    padding: 10px;
    box-sizing: border-box;
}

.gallery-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(209, 0, 36, 0.4);
    border-color: var(--color-primary);
}

/* Navigation Buttons */
.carousel-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: zoomIn 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-lightbox:hover {
    color: var(--color-primary);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .gallery-slide {
        min-width: 100%;
        /* Show 1 image on mobile */
    }
}

@media (max-width: 600px) {
    .event-title {
        font-size: 2.5rem;
    }

    .invite-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .intro-text h2,
    .process-header h2,
    .benefits-section h2,
    .events-section h2 {
        font-size: 2.2rem !important;
    }

    .intro-section,
    .benefits-section,
    .process-section,
    .faq-section {
        padding: 60px 0;
    }

    .info-icons-row {
        justify-content: center;
        gap: 20px;
    }

    .icon-circle-hero {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .process-card {
        padding: 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 10px;
    }

    .stats-strip {
        padding: 40px 0;
    }

    .event-listing-card {
        padding: 40px 20px !important;
    }
}

/* --- Card Countdown (Premium Redesign) --- */
.card-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 30px 0;
    padding: 5px;
    background: transparent;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.countdown-unit:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.countdown-unit span {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(to bottom, #ffffff 30%, #ff3b3b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
}

.countdown-unit label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    font-weight: 600;
}

/* Subtle separator dots between units */
.countdown-unit:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 8px 0 rgba(255, 255, 255, 0.1);
    display: none;
    /* Hide dots for grid layout */
}

@media (max-width: 480px) {
    .card-countdown {
        gap: 8px;
        margin: 20px 0;
    }

    .countdown-unit {
        padding: 12px 5px;
        border-radius: 10px;
    }

    .countdown-unit span {
        font-size: 1.4rem;
    }

    .countdown-unit label {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }
}

/* --- Floating CTA Button --- */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #b30000 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(230, 0, 0, 0.6);
    color: white;
}

.floating-cta i {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        width: auto;
        height: auto;
        padding: 12px 24px;
        border-radius: 50px;
        font-size: 0.85rem;
        box-shadow: 0 8px 25px rgba(230, 0, 0, 0.5);
    }

    .floating-cta span {
        max-width: none;
        opacity: 1;
        margin-left: 10px;
        display: block;
        text-transform: uppercase;
    }

    .floating-cta i {
        font-size: 0.9rem;
    }
}