:root {
    --primary-color: #00E5FF;
    /* Electric Cyan */
    --secondary-color: #2979FF;
    /* Brilliant Blue */
    --accent-color: #FF2E93;
    /* Neon Pink */
    --magic-purple: #D500F9;
    /* Vivid Purple */
    --dark-bg: #050A14;
    /* Deepest Navy/Black */
    --header-bg: rgba(10, 25, 47, 0.75);
    --text-light: #F0F4F8;
    --text-dim: #94A3B8;
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-light);
    background-image:
        radial-gradient(circle at 10% 10%, rgba(41, 121, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(213, 0, 249, 0.1) 0%, transparent 40%);
}

/* Header Styles - Floating & Centered */
.main-header {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1600px;
    height: 100px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    /* Enhanced Grid for Perfect Center Layout */
    align-items: center;
    padding: 0 40px;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Logo Section */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    height: 80px;
    /* Big Logo */
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.3));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover {
    transform: scale(1.08) rotate(-1deg);
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.6));
}

/* Navigation - Centered */
.nav-menu {
    display: flex;
    justify-content: center;
    width: 100%;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 8px 16px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* Hover Effect for Nav Items */
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(41, 121, 255, 0.1), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 8px;
    z-index: -1;
}

.nav-link:hover::before {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.arrow-icon {
    font-size: 0.8rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.has-submenu:hover .arrow-icon {
    transform: rotate(180deg);
}

/* Mega Menu - The "Never Seen Before" Element */
.mega-menu {
    position: fixed;
    top: 135px;
    /* Below the floating header */
    left: 50%;
    transform: translateX(-50%) perspective(1000px) rotateX(-10deg);
    width: 90%;
    max-width: 1400px;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(41, 121, 255, 0.15);
    padding: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 990;
    transform-origin: top center;
}

.has-submenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) perspective(1000px) rotateX(0deg);
}

/* Decorative Gradient Line for Mega Menu */
.mega-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--magic-purple), transparent);
    box-shadow: 0 0 10px var(--primary-color);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.menu-column h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    /* Slight underline */
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sub-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dim);
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    background: transparent;
    border: 1px solid transparent;
}

.sub-link i {
    width: 25px;
    margin-right: 15px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.sub-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.2);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sub-link:hover i {
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color);
}

/* CTA Container & Button */
.cta-container {
    display: flex;
    justify-content: flex-end;
}

.cta-button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 35px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    white-space: nowrap;
}

/* Multiple layered background for the button */
.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    /* Border thickness */
    background: linear-gradient(135deg, var(--primary-color), var(--magic-purple), var(--accent-color));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.4s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.2), rgba(213, 0, 249, 0.2));
    border-radius: 48px;
    z-index: -1;
    transition: all 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px -10px rgba(213, 0, 249, 0.6);
}

.cta-button:hover::after {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color), var(--secondary-color));
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.cta-button:hover::before {
    background: linear-gradient(135deg, var(--secondary-color), var(--magic-purple));
    opacity: 0.8;
}

.cta-shine {
    /* Optional internal shine reinforcement */
    display: none;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-header {
        width: 100%;
        top: 0;
        border-radius: 0;
        grid-template-columns: auto 1fr auto;
        padding: 0 20px;
    }

    .mega-menu {
        width: 95%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {
    .main-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1000;
        position: relative;
    }

    .mobile-menu-toggle i {
        color: var(--primary-color);
        font-size: 2rem;
        transition: 0.3s;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(3, 6, 12, 0.98);
        backdrop-filter: blur(25px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
        z-index: 990;
        overflow-y: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 50px;
    }

    .nav-item {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.8rem;
        display: block;
    }

    /* Mobile Mega Menu Customization */
    .mega-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none !important;
        width: 100%;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        border: none;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
    }

    .mega-menu::before {
        display: none;
    }

    .has-submenu:hover .mega-menu {
        /* Disable desktop hover effect on mobile */
        opacity: 0;
        visibility: hidden;
        transform: none !important;
    }

    .mega-menu.mobile-active {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 2500px;
        overflow-y: visible;
        padding-top: 15px;
        margin-top: 15px;
        border-top: 1px solid rgba(0, 229, 255, 0.2);
    }

    .mega-menu-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .menu-column {
        text-align: center;
        padding: 0;
        border: none !important;
    }

    .menu-column h3 {
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        justify-content: center;
    }

    .sub-link {
        justify-content: center;
        font-size: 1.1rem;
        padding: 12px 15px;
    }

    .cta-container {
        display: none;
    }
}

/* Hero Section - The Grand Entrance */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-top: 200px;
    /* Crucial padding to clear the 120px header area */
    position: relative;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff 20%, var(--primary-color) 50%, #ffffff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 5s linear infinite;
    text-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-dim);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Enhancing Responsive for Hero */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-section {
        padding-top: 150px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease-in-out, transform 8s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(5, 10, 20, 0.4) 0%,
            rgba(5, 10, 20, 0.6) 50%,
            rgba(5, 10, 20, 0.9) 100%);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
}

.slide-title {
    font-family: 'Outfit', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s;
}

.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
    transform: translateY(-3px);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 20;
    pointer-events: none;
}

.prev-slide,
.next-slide {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 1000px) {
    .slide-title {
        font-size: 4rem;
    }

    .slider-controls {
        display: none;
    }
}

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

    .slide-subtitle {
        font-size: 1.2rem;
    }

    .slide-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* About Us Section - Spectacular Design */
.about-section {
    padding: 120px 40px;
    background: radial-gradient(circle at top right, rgba(41, 121, 255, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(213, 0, 249, 0.05), transparent 40%),
        var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-section.visible .about-content {
    opacity: 1;
    transform: translateX(0);
}

.about-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.about-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.about-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--magic-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 40px;
}

.highlight-text {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.about-list li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.about-list li strong {
    color: var(--primary-color);
    margin-right: 5px;
}

.about-subtitle {
    font-size: 1.8rem;
    color: #fff;
    margin: 30px 0 15px 0;
    font-weight: 700;
}

.trust-text {
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 1.05rem;
    color: var(--text-dim);
}

.trust-text strong {
    color: #fff;
    font-weight: 600;
}

.about-stats {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Visual Side */
.about-visual {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
    /* Delay for staggered effect */
}

.about-section.visible .about-visual {
    opacity: 1;
    transform: translateX(0);
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.img-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(20px);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--accent-color);
}

.floating-card span {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Adjustments */
@media (max-width: 1000px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        order: -1;
        /* Image on top for mobile */
        max-width: 600px;
        margin: 0 auto;
    }

    .about-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 80px 20px;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .img-decoration {
        display: none;
    }

    .floating-card {
        left: 20px;
        bottom: 20px;
        right: auto;
    }
}

/* Partners Section - Features Grid */
.partners-section {
    padding: 120px 40px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Background Effect */
.partners-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.03), transparent 70%);
    transform: translateX(-50%);
    z-index: 0;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partners-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.partners-section.visible .partners-header {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-title .highlight-cyan {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: default;
    opacity: 0;
    transform: translateY(50px);
}

.partners-section.visible .feature-card {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animations */
.feature-card:nth-child(1) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.4s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.6s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.8s;
}

.partners-section.visible .feature-card {
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    transition-delay: 0s;
    /* Remove delay on hover */
}

/* Card Glow Effect on Hover */
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.feature-card:hover .icon-wrapper {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .section-title {
        font-size: 2.5rem;
    }

    .partners-section {
        padding: 80px 20px;
    }
}

/* Reviews Section - Spectacular Testimonials */
.reviews-section {
    padding: 120px 40px;
    background: linear-gradient(to bottom, var(--dark-bg), #000);
    position: relative;
    overflow: hidden;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reviews-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.google-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #4285F4;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(66, 133, 244, 0.3);
}

.highlight-purple {
    background: linear-gradient(135deg, var(--magic-purple), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stars {
    color: #F4B400;
    /* Google Star Color */
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* About Features Grid - Spectacular Upgrade */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(41, 121, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.fb-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-box h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-box p {
    color: var(--text-dim);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Tech Highlight Section */
.tech-highlight {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.8), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.tech-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--magic-purple);
}

.tech-icon-pulse {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.tech-info h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.tech-info p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Trust Indicator */
.trust-indicator {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-line {
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0.3;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 1rem;
}

.trust-badge i {
    color: #FFD700;
    /* Gold */
    font-size: 1.2rem;
}

.gold-text {
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-list {
    display: none;
    /* Hide old styles if present */
}

/* Reviews Marquee (Infinite Scroll) */
.reviews-marquee {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 60px;
    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);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding-left: 20px;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }

    /* Adjust based on track length */
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    width: 400px;
    /* Fixed width for horizontal scroll */
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(66, 133, 244, 0.3);
}

.reviewer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.reviewer-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.review-date {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.google-icon {
    margin-left: auto;
    color: #4285F4;
    font-size: 1.5rem;
    background: #fff;
    padding: 8px;
    border-radius: 50%;
}

.review-stars-small {
    color: #F4B400;
    font-size: 1rem;
    margin-bottom: 15px;
}

.review-text {
    color: #d1d5db;
    /* Light gray text */
    line-height: 1.6;
    font-style: italic;
    font-size: 1.05rem;
}

/* CTA */
.reviews-cta {
    text-align: center;
}

.google-btn {
    background: #4285F4 !important;
    /* Force Google Blue */
    position: relative;
    overflow: hidden;
}

.google-btn::after {
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335) !important;
    opacity: 0.8;
}

.google-btn:hover {
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.5);
}

/* Responsive */
@media (max-width: 600px) {
    .reviews-section {
        padding: 80px 20px;
    }

    .rating-number {
        font-size: 3rem;
    }

    .review-card {
        width: 320px;
    }
}

/* === NEXT-GEN ABOUT US SECTION === */
.about-content-premium {
    padding-right: 40px;
    z-index: 2;
}

.premium-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(41, 121, 255, 0.1);
    border: 1px solid rgba(41, 121, 255, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(41, 121, 255, 0.1);
}

.about-title-large {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing: -2px;
}

.about-lead {
    font-size: 1.25rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
}

/* Premium Features List */
.features-list-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.fl-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fl-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(10px);
}

.fl-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.1), rgba(213, 0, 249, 0.1));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fl-text h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.fl-text p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin: 0;
}

/* Tech Glass Panel */
.tech-glass-panel {
    background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.tech-glass-panel:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px -5px rgba(0, 229, 255, 0.15);
    transform: translateY(-5px);
}

.tg-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #000;
    position: relative;
}

.signal-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    animation: wave-ping 2s infinite;
}

@keyframes wave-ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.tg-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tg-content strong {
    color: #fff;
    font-size: 1.1rem;
}

.tg-content span {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.tg-arrow i {
    color: #fff;
    transition: transform 0.3s ease;
}

.tech-glass-panel:hover .tg-arrow i {
    transform: translateX(5px);
}

/* Prestige Partner */
.prestige-partner {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.partner-logo-text {
    font-family: 'Outfit', sans-serif;
    /* Industrial looking font */
    font-weight: 900;
    font-size: 1.4rem;
    color: #367C2B;
    /* John Deere Green */
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(54, 124, 43, 0.4);
    position: relative;
}

.partner-logo-text::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFDE00;
    /* John Deere Yellow */
}

/* === VISUAL STACK (RIGHT SIDE) === */
.about-visual-premium {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.stack-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.visual-stack:hover .stack-img {
    transform: perspective(1000px) rotateY(0deg);
}

.stack-backdrop {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--magic-purple));
    border-radius: 30px;
    z-index: 1;
    opacity: 0.2;
    transform: perspective(1000px) rotateY(-5deg) translateZ(-50px);
}

.stack-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(41, 121, 255, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* Floating Stat Cards */
.floating-stat-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    animation: float-premium 6s ease-in-out infinite;
}

.floating-stat-card.secondary {
    top: 40px;
    right: -40px;
    bottom: auto;
    left: auto;
    animation-delay: -3s;
    /* desync animation */
}

.fsc-icon {
    width: 50px;
    height: 50px;
    background: rgba(41, 121, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.secondary .fsc-icon {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.fsc-data {
    display: flex;
    flex-direction: column;
}

.fsc-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.fsc-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float-premium {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 1000px) {
    .about-title-large {
        font-size: 3.5rem;
    }

    .visual-stack {
        margin-top: 50px;
    }

    .floating-stat-card {
        left: 0;
        bottom: 20px;
    }

    .floating-stat-card.secondary {
        right: 0;
        top: 20px;
    }
}

@media (max-width: 600px) {
    .about-title-large {
        font-size: 2.8rem;
    }

    .about-content-premium {
        padding-right: 0;
    }

    .floating-stat-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        width: 100%;
    }

    .stack-img {
        transform: none;
    }

    .stack-backdrop {
        display: none;
    }
}

/* Services Glamour Section - World Class Design */
.services-glamour-section {
    padding: 120px 40px;
    background: radial-gradient(circle at bottom right, rgba(0, 229, 255, 0.05), transparent 40%),
        radial-gradient(circle at top left, rgba(213, 0, 249, 0.05), transparent 40%),
        var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Background Pattern/Mesh */
.services-glamour-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(213, 0, 249, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
    animation: panGrid 20s linear infinite;
}

@keyframes panGrid {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(60px);
    }
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
}

.services-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

.services-header .section-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.services-header .highlight-cyan {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--magic-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.services-header .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    line-height: 1.6;
}

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

/* Premium Card Design - ULTIMATE EDITION */
.service-card-premium {
    background: rgba(10, 15, 30, 0.7);
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(60px);
    opacity: 0;
    z-index: 1;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card-premium::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(45deg, var(--primary-color), transparent 40%, var(--magic-purple), transparent 60%);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.6s ease;
    animation: moveGradient 5s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.service-card-premium.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card-premium.visible:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(41, 121, 255, 0.15);
    z-index: 10;
}

.service-card-premium.visible:hover::before {
    opacity: 1;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.card-image-wrapper {
    height: 260px;
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(20px);
}

.service-card-premium:hover .card-image-wrapper {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1.05);
}

.service-card-premium:hover .card-image-wrapper img {
    transform: scale(1.2) rotate(2deg);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 10, 20, 0.1) 0%, rgba(5, 10, 20, 0.95) 100%);
    opacity: 1;
    transition: opacity 0.6s ease;
}

.service-card-premium:hover .card-overlay {
    opacity: 0.6;
    background: linear-gradient(to bottom, rgba(0, 229, 255, 0.3) 0%, rgba(5, 10, 20, 0.9) 100%);
}

.card-content {
    padding: 20px 30px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateZ(30px);
    transition: transform 0.6s ease;
}

.service-card-premium:hover .card-content {
    transform: translateZ(50px);
}

.card-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a0a5b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.service-card-premium:hover .card-content h3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.card-content p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 1.05rem;
    transition: color 0.4s ease;
}

.service-card-premium:hover .card-content p {
    color: #fff;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.5), transparent);
    transition: left 0.6s ease;
}

.service-card-premium:hover .read-more-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.4);
    transform: translateY(-3px);
}

.service-card-premium:hover .read-more-btn::before {
    left: 100%;
}

.read-more-btn i {
    margin-left: 10px;
    transition: transform 0.4s ease;
}

.service-card-premium:hover .read-more-btn i {
    transform: translateX(5px);
}

/* Service Toggle Button & Animations */
.hidden-service {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.hidden-service.visible-toggled {
    display: flex;
    animation: fadeUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.glow-button {
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 16px 40px;
    border-radius: 50px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
    opacity: 0.2;
}

.glow-button:hover {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
    transform: translateY(-3px);
}

.glow-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
}

.glow-button i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.glow-button.open-state i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .services-header .section-title {
        font-size: 2.5rem;
    }

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

/* =========================================================================
   RESTROOM CLEANING PAGE - SPECTACULAR DESIGN
   ========================================================================= */

body {
    background-color: var(--dark-bg);
}

.container-1400 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media(max-width: 768px) {
    .container-1400 {
        padding: 0 20px;
    }
}

/* Hero Section */
.page-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    transform: scale(1.1);
    animation: slowZoom 20s linear infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 10, 20, 0.8) 0%, rgba(5, 10, 20, 0.4) 50%, rgba(5, 10, 20, 1) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 20px;
    transform: translateY(30px);
    opacity: 0;
    animation: cinematicSlideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.3s;
}

@keyframes cinematicSlideUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.badge-glow {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    text-transform: uppercase;
    animation: pulseBadge 3s infinite alternate;
}

@keyframes pulseBadge {
    0% {
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
    }
}

.page-hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.highlight-neon {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight-neon::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    color: var(--primary-color);
    overflow: hidden;
    -webkit-text-stroke: 0px transparent;
    animation: fillText 4s cubic-bezier(0.23, 1, 0.32, 1) forwards 1s;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.8);
}

@keyframes fillText {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.page-hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-dim);
    font-weight: 400;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-5px);
    }

    20% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateX(-50%) translateY(15px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Details Section */
.premium-content-section {
    padding: 150px 0;
    position: relative;
    background: linear-gradient(to bottom, #050a14 0%, #0a1120 100%);
    overflow: hidden;
}

.content-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-block-spectacular {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.visual-block-spectacular {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.2s;
}

.text-block-spectacular.in-view,
.visual-block-spectacular.in-view {
    opacity: 1;
    transform: translateX(0);
}

.cinematic-heading {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cinematic-subheading {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
}

.glowing-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin-bottom: 40px;
    box-shadow: 0 0 20px var(--primary-color);
    border-radius: 2px;
}

.advanced-paragraph {
    color: #b0b5c0;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.trust-banner {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 30px;
    border-radius: 20px;
    margin-top: 50px;
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.tb-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 25px;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.4));
}

.tb-text strong {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.tb-text span {
    color: var(--text-dim);
}

/* Visual Block hologram */
.hologram-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    box-shadow:
        -20px 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 229, 255, 0.1);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hologram-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow:
        0px 30px 80px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(0, 229, 255, 0.3);
}

.hc-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, transparent, var(--primary-color), transparent);
    z-index: 0;
    opacity: 0.5;
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hc-image {
    position: relative;
    z-index: 1;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    margin: 2px;
    border-radius: 28px;
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
    filter: brightness(0.8) contrast(1.1);
}

.hc-overlay-glass {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    background: rgba(10, 20, 35, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateZ(50px);
}

.hc-overlay-glass i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Solutions Section (Bento Grid) */
.solutions-section {
    padding: 120px 0;
    position: relative;
    background: #0a1120;
    z-index: 1;
}

.solutions-bg-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

.solutions-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.solutions-header.in-view {
    opacity: 1;
    transform: translateY(0);
}

.solutions-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
}

.solutions-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
}

.solutions-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
    margin-bottom: 80px;
}

.bento-box {
    background: rgba(15, 25, 45, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.bento-box.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations automatically */
.bento-box:nth-child(1) {
    transition-delay: 0.1s;
    grid-column: 1 / -1;
}

.bento-box:nth-child(2) {
    transition-delay: 0.2s;
    grid-column: span 1;
}

.bento-box:nth-child(3) {
    transition-delay: 0.3s;
    grid-column: span 2;
}

.bento-box:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.bx-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.bx-accent .bx-icon {
    background: rgba(213, 0, 249, 0.1);
    color: #d500f9;
}

.box-inner h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.box-inner p {
    color: #a0a5b0;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.bx-large .box-inner h3 {
    font-size: 2.2rem;
}

.bx-glow-layer {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    transition: all 0.6s ease;
}

.bx-accent .bx-glow-layer {
    background: radial-gradient(circle, rgba(213, 0, 249, 0.15) 0%, transparent 70%);
}

.bento-box:hover .bx-glow-layer {
    transform: scale(1.5);
}

.cta-bottom {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.4s;
}

.cta-bottom.in-view {
    opacity: 1;
    transform: translateY(0);
}

.glow-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--primary-color), #00b0ff);
    color: #000;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4);
}

.glow-button-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.glow-button-large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.6);
}

.glow-button-large:hover::after {
    left: 100%;
}

@media (max-width: 992px) {
    .content-split-layout {
        grid-template-columns: 1fr;
    }

    .solutions-bento {
        grid-template-columns: 1fr;
    }

    .bento-box:nth-child(3) {
        grid-column: span 1;
    }

    .cinematic-subheading {
        font-size: 2.8rem;
    }
}

/* FAQ Spectacular Styles */
.faq-spectacular {
    padding: 120px 0;
    background: linear-gradient(180deg, #03060c 0%, #050a14 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.faq-mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(213, 0, 249, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CiAgPGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiLz4KPC9zdmc+');
    background-size: 100% 100%, 100% 100%, 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 10;
}

.faq-header {
    margin-bottom: 60px;
    text-align: center;
}

.faq-subtitle {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-top: 10px;
}

.faq-accordion-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(10, 15, 25, 0.4);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--magic-purple));
    opacity: 0;
    transition: 0.5s;
}

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-5px) translateX(5px);
    box-shadow:
        -5px 10px 30px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 229, 255, 0.15);
}

.faq-item.active {
    border-color: var(--primary-color);
    background: rgba(20, 30, 50, 0.8);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.9),
        inset 0 0 30px rgba(0, 229, 255, 0.1);
    transform: scale(1.02);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-q-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 229, 255, 0.05);
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    margin-right: 25px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 229, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.faq-q-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    top: -100%;
    left: -100%;
    transition: 0.5s;
}

.faq-item:hover .faq-q-icon::after {
    top: 100%;
    left: 100%;
}

.faq-item.active .faq-q-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--magic-purple));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
    transform: rotate(360deg) scale(1.1);
}

.faq-q-text {
    flex-grow: 1;
    padding-right: 20px;
    color: #f0f4f8;
}

.faq-toggle-icon {
    color: var(--text-dim);
    font-size: 1.5rem;
    transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(255, 255, 255, 0.05);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-item:hover .faq-toggle-icon {
    color: #fff;
    background: rgba(0, 229, 255, 0.2);
}

.faq-item.active .faq-toggle-icon {
    color: #fff;
    background: var(--accent-color);
    transform: rotate(135deg);
    box-shadow: 0 0 15px var(--accent-color);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.8s ease-in-out;
}

.faq-answer p {
    padding: 0 30px 30px 100px;
    margin: 0;
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1.15rem;
    position: relative;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer p {
    animation: fade-in-up 0.7s 0.1s both cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-footer {
    margin-top: 60px;
}

.faq-footer p {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.glow-btn-alt {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: #fff;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    text-decoration: none;
}

.glow-btn-alt:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 25px var(--primary-color);
}

@media(max-width: 768px) {
    .faq-spectacular {
        padding: 60px 0;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 1rem;
    }

    .faq-question {
        padding: 20px;
        flex-direction: row;
        font-size: 1.05rem;
    }

    .faq-q-icon {
        width: 30px;
        height: 30px;
        margin-right: 15px;
        font-size: 1rem;
    }
}

/* Footer V3 - Supreme Spectacle */
.footer-v3 {
    position: relative;
    background: #03060c;
    padding: 120px 0 0 0;
    overflow: hidden;
    color: #a0aec0;
    font-family: 'Outfit', sans-serif;
    border-top: 1px solid rgba(0, 229, 255, 0.05);
}

.footer-v3::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
}

.footer-v3-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.footer-v3-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-v3-brand {
    padding-right: 20px;
}

.footer-v3-logo {
    width: 250px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.2));
}

.footer-v3-slogan {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #8b9bb4;
    margin-bottom: 35px;
}

.footer-v3-socials {
    display: flex;
    gap: 18px;
}

.f-social-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.f-social-btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--magic-purple));
    transition: 0.4s;
    z-index: -1;
}

.f-social-btn:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.3);
}

.f-social-btn:hover::before {
    top: 0;
}

.footer-v3-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 35px;
    letter-spacing: 1px;
    position: relative;
}

.footer-v3-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.f-contact-card {
    display: flex;
    align-items: center;
    background: rgba(10, 15, 25, 0.5);
    border: 1px solid rgba(0, 229, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.f-contact-card:hover {
    background: rgba(0, 229, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateX(10px);
}

.f-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), transparent);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 18px;
    flex-shrink: 0;
}

.f-info h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.f-info p,
.f-info a {
    color: #8b9bb4;
    font-size: 0.95rem;
    line-height: 1.4;
    text-decoration: none;
    transition: 0.3s;
}

.f-info a:hover {
    color: var(--primary-color);
}

.f-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-nav-links li {
    margin-bottom: 15px;
}

.f-nav-links a {
    color: #8b9bb4;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: 0.4s;
}

.f-nav-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary-color);
    margin-right: 0;
    transition: 0.4s;
    display: inline-block;
}

.f-nav-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.f-nav-links a:hover::before {
    width: 15px;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--primary-color);
}

.f-glass-hours {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.f-glass-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: 0.6s;
}

.f-glass-hours:hover::before {
    left: 100%;
}

.f-hour-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.f-hour-line:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.f-day {
    color: #fff;
    font-weight: 500;
}

.f-time {
    color: var(--primary-color);
}

.f-closed {
    color: #FF1744;
    font-weight: 700;
    letter-spacing: 1px;
}

.f-glow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(90deg, var(--primary-color), #00B0FF);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: 12px;
    letter-spacing: 1px;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
}

.f-glow-btn i {
    margin-left: 10px;
    transition: 0.3s;
}

.f-glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.5);
    background: #fff;
}

.f-glow-btn:hover i {
    transform: translateX(5px);
}

.footer-v3-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
}

.f-copy {
    color: #64748b;
    font-size: 1rem;
}

.f-dev {
    color: #64748b;
    font-size: 1rem;
}

@media(max-width: 1100px) {
    .footer-v3-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .footer-v3 {
        padding: 80px 0 0 0;
    }

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

    .footer-v3-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}