/* ===== GLOSSY AGENCY DESIGN SYSTEM - LIGHT MODERN THEME ===== */
:root {
    --glossy-primary: #3b82f6;
    --glossy-secondary: #8b5cf6;
    --glossy-accent: #ec4899;
    --glossy-dark: #ffffff;
    --glossy-darker: #f8fafc;
    --glossy-light: #ffffff;
    --glossy-white: #ffffff;
    --glossy-text: #1e293b;
    --glossy-text-muted: #64748b;
    --glossy-glow: rgba(59, 130, 246, 0.1);
    --glossy-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --glossy-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --glossy-bg-gradient: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--glossy-bg-gradient);
    color: var(--glossy-text);
}

/* Fix text visibility for light theme */
.local-seo,
.local-card,
.process,
.process-step,
.industries,
.industry-card,
.coverage,
.coverage-card,
.portfolio-preview,
.blog-preview,
.testimonials,
.faq {
    background: transparent !important;
    color: var(--glossy-text) !important;
}

.local-card h3,
.process-step h3,
.industry-card h3,
.coverage-card h3,
.portfolio-preview h2,
.blog-preview h2,
.testimonials h2,
.faq h2 {
    color: #1e293b !important;
}

.local-card p,
.process-step p,
.industry-card p,
.coverage-card p {
    color: #64748b !important;
}

.section-subtitle {
    color: #64748b !important;
}

.section-note {
    color: #64748b !important;
}

/* Portfolio and Blog items */
.portfolio-item,
.blog-card {
    background: #ffffff !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(59, 130, 246, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

.portfolio-overlay h3,
.portfolio-overlay p {
    color: white !important;
}

.blog-card h3 {
    color: #1e293b !important;
}

.blog-card p {
    color: #64748b !important;
}

/* Glossy Section Base */
.glossy-section {
    position: relative;
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    overflow: hidden;
}

.glossy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.glossy-section > * {
    position: relative;
    z-index: 1;
}

/* Glossy Container */
.glossy-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 2.5rem);
}

/* Glossy Typography */
.glossy-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.glossy-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--glossy-text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
}

.glossy-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

/* Glossy Cards - Light Theme */
.glossy-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.glossy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--glossy-primary), var(--glossy-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glossy-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.15),
        0 0 40px rgba(59, 130, 246, 0.1);
}

.glossy-card:hover::before {
    opacity: 1;
}

/* Glossy Buttons */
.glossy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.glossy-btn-primary {
    background: linear-gradient(135deg, var(--glossy-primary), var(--glossy-secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.glossy-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.glossy-btn-primary:hover::before {
    left: 100%;
}

.glossy-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.glossy-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glossy-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Proof Widgets */
.proof-widget {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.proof-widget:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.proof-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--glossy-primary), var(--glossy-secondary));
    border-radius: 16px;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.proof-content {
    flex: 1;
}

.proof-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.proof-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Parallax Elements */
.parallax-element {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Glossy Grid */
.glossy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Glossy Service Card */
.glossy-service-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.glossy-service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glossy-service-card:hover::after {
    opacity: 1;
}

.glossy-service-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(59, 130, 246, 0.3);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--glossy-primary), var(--glossy-secondary));
    border-radius: 20px;
    position: relative;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--glossy-primary), var(--glossy-secondary));
    border-radius: 24px;
    opacity: 0.2;
    filter: blur(12px);
    z-index: -1;
}

.service-icon-wrapper img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
}

.glossy-service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.glossy-service-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--glossy-primary), var(--glossy-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--glossy-text-muted);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .glossy-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-widget {
        flex-direction: column;
        text-align: center;
    }
}
