/* PREMIUM Services Page Styles - Dark Theme (Restored) */

body {
    background-color: var(--bg-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

/* Background Layers */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-dark);
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #3b82f6, transparent 70%);
    top: -100px;
    left: -100px;
}

.sphere-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #8b5cf6, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.noise-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* --- Hero Section --- */
.premium-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 180px 0 50px;
    position: relative;
}

.hero-text-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.animated-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    color: #22d3ee;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.dot {
    width: 6px;
    height: 6px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 10px #22d3ee;
}

.display-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
}

.hero-desc {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-glow {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.btn-glow.primary {
    background: white;
    color: black;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-glow.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.btn-glow.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-glow.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- Services Grid --- */
.services-wrapper {
    padding: 4rem 0 8rem;
    position: relative;
    z-index: 1;
}

.section-head {
    text-align: center;
    margin-bottom: 5rem;
}

.sub-label {
    color: #a855f7;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.section-head h2 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

.highlight {
    color: #3b82f6;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px; /* Highlighting bar */
    background: rgba(59, 130, 246, 0.3);
    z-index: -1;
    transform: skewX(-15deg);
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Internals */
.card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1.5rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Specific Accent Colors for Icons */
.accent-blue .icon-circle { color: #3b82f6; box-shadow: 0 0 10px rgba(59, 130, 246, 0.2); }
.accent-purple .icon-circle { color: #8b5cf6; box-shadow: 0 0 10px rgba(139, 92, 246, 0.2); }
.accent-pink .icon-circle { color: #ec4899; }
.accent-cyan .icon-circle { color: #06b6d4; }
.accent-emerald .icon-circle { color: #10b981; }
.accent-orange .icon-circle { color: #f97316; }

.service-card:hover .icon-circle {
    background: white;
    transform: scale(1.1) rotate(-5deg);
    border-color: white;
}
.service-card:hover .icon-circle i {
    color: black !important;
}

.card-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.card-text p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.pill {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-weight: 500;
}

/* Service Card Visibility */
.service-card {
    background: rgba(20, 25, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(20, 25, 40, 0.8);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

/* Icon Sizing for FontAwesome */
.icon-circle i {
    font-size: 28px;
    transition: color 0.3s ease;
}

/* Trust Item Visibility */
.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 1; /* Visible by default */
    transform: translateY(0);
}

.trust-item i {
    font-size: 32px;
    color: #22d3ee;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}

.trust-item h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #fff;
}

.trust-item p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* --- Final CTA --- */
.final-cta {
    padding: 8rem 0;
}

.cta-card-glass {
    text-align: center;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem 2rem;
    border-radius: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.cta-card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    box-shadow: 0 0 10px #3b82f6;
}

.cta-card-glass h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.cta-card-glass p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-glow.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-text {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3b82f6;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    box-shadow: 0 0 8px #3b82f6;
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile */
@media (max-width: 768px) {
    .trust-grid { flex-direction: column; align-items: flex-start; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .btn-glow { width: 100%; text-align: center; }
}
