/*
Theme Name: OVE Digital
Theme URI: https://ovedigital.com
Description: A modern one-page WordPress theme for OVE Digital - SEO & AI Search Optimization experts. Features fully customizable sections via WordPress Customizer.
Author: OVE Digital
Author URI: https://ovedigital.com
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ove-digital
Tags: one-page, custom-header, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/        :root {
            --primary: #0066FF;
            --primary-dark: #0052CC;
            --secondary: #00D4AA;
            --accent: #7C3AED;
            --dark: #0A0F1C;
            --dark-2: #141925;
            --dark-3: #1E2533;
            --light: #F8FAFC;
            --light-2: #EFF3F9;
            --text: #0F172A;
            --text-light: #475569;
            --text-muted: #64748B;
            --border: #E2E8F0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Manrope', sans-serif;
            background: #fff;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Animated background elements */
        .bg-decoration {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        
        .bg-decoration::before,
        .bg-decoration::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.15;
            animation: float 20s ease-in-out infinite;
        }
        
        .bg-decoration::before {
            width: 600px;
            height: 600px;
            background: var(--primary);
            top: -200px;
            right: -200px;
            animation-delay: -5s;
        }
        
        .bg-decoration::after {
            width: 500px;
            height: 500px;
            background: var(--accent);
            bottom: -100px;
            left: -150px;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }
        
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* Header */
        header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
        }
        
        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 32px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -2px;
        }
        
        nav {
            display: flex;
            gap: 48px;
            align-items: center;
        }
        
        nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.2s;
            position: relative;
        }
        
        nav a:hover {
            color: var(--primary);
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            padding: 14px 32px;
            background: var(--primary);
            color: white;
            border-radius: 12px;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
        }
        
        .nav-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
        }
        
        .nav-cta::after {
            display: none;
        }
        
        /* Hero */
        .hero {
            padding: 120px 0 100px;
            position: relative;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 80px;
            align-items: center;
            max-width: 900px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            background: linear-gradient(135deg, #EFF6FF, #F5F3FF);
            border: 1px solid #DBEAFE;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 32px;
            letter-spacing: 0.5px;
        }
        
        .pulse-dot {
            width: 10px;
            height: 10px;
            background: var(--secondary);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4);
        }
        
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(0, 212, 170, 0);
            }
        }
        
        h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(48px, 7vw, 76px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 28px;
            letter-spacing: -2px;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-description {
            font-size: 20px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 580px;
        }
        
        .cta-group {
            display: flex;
            gap: 16px;
            margin-bottom: 56px;
        }
        
        .btn-primary {
            padding: 20px 40px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 14px;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
        }
        
        .btn-secondary {
            padding: 20px 40px;
            background: white;
            color: var(--text);
            text-decoration: none;
            border-radius: 14px;
            font-weight: 700;
            font-size: 16px;
            border: 2px solid var(--border);
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        .trust-row {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 600;
        }
        
        .check-icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            min-height: 24px;
            background: linear-gradient(135deg, var(--secondary), #10B981);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            font-weight: 900;
            flex-shrink: 0;
        }
        
        /* Services */
        .services {
            padding: 120px 0;
            background: var(--light);
        }
        
        .section-header {
            max-width: 800px;
            margin: 0 auto 80px;
            text-align: center;
        }
        
        .section-label {
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 16px;
        }
        
        h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .section-description {
            font-size: 19px;
            color: var(--text-light);
            line-height: 1.7;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 48px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 2px solid transparent;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 20px 20px 0 0;
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
            border-color: #F0F4FF;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #EFF6FF, #F5F3FF);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            margin-bottom: 28px;
            transition: all 0.4s;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
        }
        
        .service-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            margin-bottom: 16px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        .service-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        
        .service-features {
            list-style: none;
        }
        
        .service-features li {
            padding: 10px 0;
            color: var(--text-light);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }
        
        .service-features li::before {
            content: '✓';
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--secondary), #10B981);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            font-weight: 900;
            flex-shrink: 0;
        }
        
        /* Why Choose */
        .why-choose {
            padding: 120px 0;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 80px;
        }
        
        .feature-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            border: 2px solid var(--border);
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
        }
        
        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
        }
        
        .feature-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 800;
        }
        
        .feature-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.7;
        }
        
        /* Why Choose */
        .why-choose {
            padding: 120px 0;
        }
        
        .why-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 80px;
            align-items: center;
        }
        
        .why-content .section-label {
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 16px;
        }
        
        .why-content h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(40px, 5vw, 52px);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .why-intro {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 40px;
        }
        
        .why-list {
            display: grid;
            gap: 28px;
        }
        
        .why-item {
            display: flex;
            gap: 20px;
            align-items: start;
        }
        
        .why-item-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #EFF6FF, #F5F3FF);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            flex-shrink: 0;
        }
        
        .why-item-content h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 19px;
            font-weight: 800;
            margin-bottom: 8px;
        }
        
        .why-item-content p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
        }
        
        .why-visual {
            position: relative;
        }
        
        .stats-stack {
            display: grid;
            gap: 24px;
        }
        
        .stat-card {
            background: linear-gradient(135deg, var(--dark), var(--dark-2));
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
        }
        
        .stat-card:hover {
            transform: translateX(8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
        }
        
        .stat-card-number {
            font-family: 'Outfit', sans-serif;
            font-size: 56px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            line-height: 1;
        }
        
        .stat-card-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            font-weight: 600;
        }
        
        /* Process */
        .process {
            padding: 120px 0;
            background: var(--dark);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        }
        
        .process .section-header {
            color: white;
        }
        
        .process .section-label {
            color: var(--secondary);
        }
        
        .process .section-description {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 80px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 32px;
            font-weight: 900;
            margin: 0 auto 24px;
            box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
        }
        
        .process-step h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 12px;
        }
        
        .process-step p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.7;
        }
        
        /* Locations */
        .locations {
            padding: 100px 0;
            background: var(--light);
            text-align: center;
        }
        
        .locations-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .locations-content .section-label {
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 16px;
        }
        
        .locations-content h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(40px, 5vw, 52px);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .locations-description {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 48px;
        }
        
        .location-badges {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .location-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: white;
            border: 2px solid var(--border);
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            color: var(--text);
            transition: all 0.3s;
            box-shadow: var(--shadow-sm);
        }
        
        .location-badge:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        
        .badge-icon {
            font-size: 24px;
            line-height: 1;
        }
        
        .badge-text {
            font-family: 'Outfit', sans-serif;
        }
        
        /* Contact */
        .contact {
            padding: 120px 0;
        }
        
        .contact-container {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--dark), var(--dark-2));
            border-radius: 32px;
            padding: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .contact-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 56px;
        }
        
        .contact-header h2 {
            color: white;
            margin-bottom: 16px;
        }
        
        .contact-header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 18px;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }
        
        .form-group {
            margin-bottom: 24px;
        }
        
        label {
            display: block;
            margin-bottom: 10px;
            font-size: 14px;
            font-weight: 700;
            color: white;
        }
        
        input, textarea, select {
            width: 100%;
            padding: 18px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
            transition: all 0.3s;
        }
        
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
        }
        
        input::placeholder, textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        textarea {
            resize: vertical;
            min-height: 140px;
        }
        
        select {
            cursor: pointer;
        }
        
        .submit-btn {
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            font-weight: 800;
            font-size: 16px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Manrope', sans-serif;
            box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 48px rgba(0, 102, 255, 0.4);
        }
        
        /* Footer */
        footer {
            padding: 80px 0 40px;
            background: var(--dark);
            color: white;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }
        
        .footer-brand .logo {
            margin-bottom: 20px;
            font-size: 36px;
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        
        .footer-section h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid,
            .why-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }
            
            nav {
                display: none;
            }
            
            .hero {
                padding: 80px 0 60px;
            }
            
            .services-grid,
            .process-grid {
                grid-template-columns: 1fr;
            }
            
            .location-badges {
                flex-direction: column;
                align-items: stretch;
            }
            
            .location-badge {
                justify-content: center;
            }
            
            .cta-group {
                flex-direction: column;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-container {
                padding: 48px 32px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .trust-row {
                gap: 20px;
                flex-wrap: wrap;
            }
        }
