/* OUR SERVICES PAGE STYLES - PREMIUM DARK THEME */
.nextai-services-wrapper {
    width: 100%;
    background: #080808;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding: 0 0 100px 0;
    overflow-x: hidden;
}

/* Hero Section */
.services-hero {
    position: relative;
    padding: 150px 20px 100px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    position: relative;
    z-index: 2;
}

.hero-logo-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-logo {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    animation: floating 6s ease-in-out infinite;
    z-index: 1;
    /* Keep below title */
}

.floating-logo img {
    max-width: 70px;
    /* Slightly smaller for cleaner look */
    height: auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* Base Positions (Desktop) - Pushed further to edges */
.floating-logo.l1 {
    top: 12%;
    left: 5%;
    animation-delay: 0s;
}

.floating-logo.l2 {
    top: 8%;
    right: 5%;
    animation-delay: 1s;
}

.floating-logo.l3 {
    bottom: 15%;
    left: 6%;
    animation-delay: 2s;
}

.floating-logo.l4 {
    bottom: 10%;
    right: 6%;
    animation-delay: 3s;
}

.floating-logo.l5 {
    top: 50%;
    right: 2%;
    animation-delay: 4s;
}

.floating-logo.l6 {
    top: 5%;
    left: 45%;
    animation-delay: 1.5s;
    opacity: 0.6;
}

.floating-logo.l7 {
    bottom: 5%;
    left: 40%;
    animation-delay: 2.5s;
    opacity: 0.6;
}

/* Hide floating logos on Tablet and Mobile */
@media (max-width: 1200px) {
    .hero-logo-container {
        display: none;
    }
}

@keyframes floating {

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

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Intro Description */
.services-intro {
    padding: 0 20px 80px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.services-intro p {
    font-size: 20px;
    line-height: 1.6;
    color: #94a3b8;
}

/* Why Choose Us */
.services-why-us {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why-label {
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
    padding: 6px 15px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 13px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    flex-shrink: 0;
}

.why-content {
    max-width: 800px;
}

.why-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.why-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #94a3b8;
}

/* Service Grid */
.services-grid {
    padding: 60px 5% 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.card-image {
    padding: 40px 40px 0;
}

.card-image img {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.card-content p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 16px;
}

/* Global Coverage */
.services-coverage {
    padding: 120px 5%;
    display: flex;
    align-items: center;
    gap: 80px;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
}

.coverage-image {
    flex: 1;
}

.coverage-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.2));
}

.coverage-content {
    flex: 1;
    max-width: 500px;
}

.coverage-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.coverage-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #94a3b8;
}

/* Final CTA */
.services-cta {
    padding: 150px 20px;
    text-align: center;
    background: linear-gradient(180deg, #080808 0%, #000000 100%);
}

.cta-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.cta-desc {
    font-size: 20px;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.cta-button-box {
    margin-top: 40px;
}

.services-cta-btn {
    display: inline-block;
    background: #0066FF;
    color: #ffffff;
    padding: 20px 45px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.services-cta-btn:hover {
    background: #0052cc;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.4);
}

/* MOBILE */
@media (max-width: 1024px) {
    .services-hero-title {
        font-size: 54px;
    }

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

    .services-coverage {
        flex-direction: column;
        text-align: center;
    }

    .coverage-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 42px;
    }

    .services-why-us {
        flex-direction: column;
        gap: 20px;
    }

    .cta-title {
        font-size: 38px;
    }
}