/*
Theme Name: DigitalPro v1
Description: Premium dijital ajans teması - Otomatik dönüştürülmüş v2.0
Author: DigitalPro Team
Version: 2.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: digitalpro
Tags: business, portfolio, responsive, custom-header, custom-menu, blog-ready
*/

/* WordPress Core Styles */
.alignleft { float: left; margin-right: 1rem; }
.alignright { float: right; margin-left: 1rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { text-align: center; font-style: italic; }

/* WordPress Blocks Support */
.wp-block-group { margin: 2rem 0; }
.wp-block-columns { display: flex; gap: 2rem; }
.wp-block-column { flex: 1; }


        :root {
            --primary-gold: #FFD700;
            --primary-amber: #FFA500;
            --dark-primary: #0A0A0A;
            --dark-secondary: #1A1A1A;
            --dark-tertiary: #2A2A2A;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #808080;
            --accent-blue: #00D4FF;
            --accent-purple: #8B5CF6;
            --accent-green: #10B981;
            --accent-pink: #F472B6;
            --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
            --gradient-secondary: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
            --gradient-tertiary: linear-gradient(135deg, #10B981 0%, #F472B6 100%);
            --shadow-primary: 0 20px 60px rgba(255, 215, 0, 0.15);
            --shadow-secondary: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--dark-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-primary);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 80px;
            height: 80px;
            border: 3px solid rgba(255, 215, 0, 0.1);
            border-top: 3px solid var(--primary-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 2rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            font-size: 1.2rem;
            font-weight: 600;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .loading-progress {
            width: 200px;
            height: 4px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 2px;
            overflow: hidden;
        }

        .loading-bar {
            height: 100%;
            background: var(--gradient-primary);
            width: 0%;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        /* Theme Toggle */
        .theme-toggle {
            position: fixed;
            top: 50%;
            right: 2rem;
            z-index: 1001;
            width: 60px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 50px;
            cursor: pointer;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .theme-toggle::before {
            content: '🌙';
            position: absolute;
            top: 50%;
            left: 5px;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background: var(--gradient-primary);
            border-radius: 50%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        body.light-mode .theme-toggle::before {
            content: '☀️';
            left: 35px;
        }

        body.light-mode {
            --dark-primary: #FFFFFF;
            --dark-secondary: #F8F9FA;
            --dark-tertiary: #E9ECEF;
            --text-primary: #212529;
            --text-secondary: #6C757D;
            --text-muted: #ADB5BD;
        }

        /* Particles Background */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary-gold);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 0;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 1rem 0;
            background: rgba(10, 10, 10, 0.95);
            box-shadow: var(--shadow-secondary);
        }

        .nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        .cta-nav {
            padding: 0.8rem 1.5rem;
            background: var(--gradient-primary);
            color: var(--dark-primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-primary);
        }

        .cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 25px 70px rgba(255, 215, 0, 0.25);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: left 0.3s ease;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu .nav-links {
            flex-direction: column;
            gap: 2rem;
            text-align: center;
        }

        .mobile-menu .nav-links a {
            font-size: 1.5rem;
            font-weight: 600;
        }

        .mobile-menu .cta-nav {
            margin-top: 2rem;
            font-size: 1.1rem;
            padding: 1rem 2rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.1) 0%, transparent 50%), 
                        radial-gradient(ellipse at top right, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                        var(--dark-primary);
            overflow: hidden;
        }

        #heroCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            pointer-events: none;
            opacity: 0.8;
            z-index: 3;
        }

        .floating-icon-container {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        .floating-icon-container i {
            font-size: 2.5rem;
            z-index: 2;
            position: relative;
        }

        .floating-1 {
            top: 20%;
            left: 10%;
            animation: floatRotate 8s ease-in-out infinite;
        }

        .floating-1 .floating-icon-container i { color: var(--primary-gold); }

        .floating-2 {
            top: 60%;
            right: 15%;
            animation: floatRotate 6s ease-in-out infinite reverse;
        }

        .floating-2 .floating-icon-container i { color: var(--accent-blue); }

        .floating-3 {
            bottom: 20%;
            left: 20%;
            animation: floatRotate 10s ease-in-out infinite;
        }

        .floating-3 .floating-icon-container i { color: var(--accent-purple); }

        @keyframes floatRotate {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        .hero-content {
            max-width: 900px;
            padding: 0 2rem;
            position: relative;
            z-index: 4;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 2rem;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 50px;
            color: var(--primary-gold);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 3rem;
            backdrop-filter: blur(10px);
            animation: pulse 2s ease-in-out infinite;
            position: relative;
            z-index: 10;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -3px;
        }

        .typewriter {
            border-right: 3px solid var(--primary-gold);
            animation: blink 1s infinite;
            display: inline-block;
            min-width: auto;
            width: auto;
            text-align: left;
            white-space: nowrap;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
        }

        @keyframes blink {
            0%, 50% { border-color: transparent; }
            51%, 100% { border-color: var(--primary-gold); }
        }

        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

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

        .btn-primary {
            padding: 1.2rem 2.5rem;
            background: var(--gradient-primary);
            color: var(--dark-primary);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-primary);
            position: relative;
            overflow: hidden;
        }

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

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 30px 80px rgba(255, 215, 0, 0.3);
        }

        .btn-secondary {
            padding: 1.2rem 2.5rem;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            text-decoration: none;
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 215, 0, 0.1);
            border-color: var(--primary-gold);
            transform: translateY(-3px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
            animation: bounce 2s infinite;
            z-index: 4;
        }

        .scroll-mouse {
            width: 24px;
            height: 40px;
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            position: relative;
        }

        .scroll-wheel {
            width: 4px;
            height: 8px;
            background: var(--primary-gold);
            border-radius: 2px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s infinite;
        }

        @keyframes scrollWheel {
            0%, 100% { top: 6px; opacity: 1; }
            50% { top: 20px; opacity: 0; }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Full Screen Section Control */
        html {
            scroll-behavior: smooth;
        }

        section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            scroll-snap-align: start;
        }

        body {
            scroll-snap-type: y mandatory;
        }

        /* Services Section */
        .services {
            padding: 5rem 0;
            position: relative;
            background: var(--dark-secondary);
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .section-subtitle {
            color: var(--primary-gold);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
            line-height: 1.2;
        }

        .section-description {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

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

        .service-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(255, 215, 0, 0.2);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: var(--dark-primary);
            font-size: 2rem;
            box-shadow: var(--shadow-primary);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .service-card p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .service-link {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .service-link:hover {
            gap: 1rem;
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: var(--dark-primary);
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: flex-start;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .about-content h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 2rem;
            letter-spacing: -2px;
            line-height: 1.2;
        }

        .about-content p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-weight: 500;
        }

        .about-visual {
            position: relative;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 24px;
            padding: 3rem;
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-secondary);
        }

        /* Portfolio Section */
        .portfolio {
            padding: 5rem 0;
            background: var(--dark-secondary);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .portfolio-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.15);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
            backdrop-filter: blur(15px);
            position: relative;
            height: 280px;
            display: flex;
            flex-direction: column;
        }

        .portfolio-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
            border-color: rgba(255, 215, 0, 0.4);
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .portfolio-item:hover::before {
            opacity: 1;
        }

        .portfolio-image {
            height: 120px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--dark-primary);
            position: relative;
            z-index: 2;
        }

        .portfolio-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2;
        }

        .portfolio-category {
            color: var(--primary-gold);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.8rem;
            opacity: 0.9;
        }

        .portfolio-content h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .portfolio-content p {
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            flex: 1;
        }

        .portfolio-link {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            font-size: 0.85rem;
            align-self: flex-start;
        }

        .portfolio-link:hover {
            gap: 0.8rem;
            color: var(--text-primary);
        }

        /* Contact Section */
        .contact {
            padding: 5rem 0;
            background: var(--dark-primary);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            margin-top: 4rem;
        }

        .contact-info h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        .contact-info p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 3rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            border-color: rgba(255, 215, 0, 0.3);
            transform: translateX(10px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-primary);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: var(--text-secondary);
            margin: 0;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 24px;
            padding: 3rem;
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-secondary);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: var(--text-primary);
            margin-bottom: 0.8rem;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1.2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group textarea {
            height: 140px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--gradient-primary);
            color: var(--dark-primary);
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-primary);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 25px 70px rgba(255, 215, 0, 0.25);
        }

        /* Footer */
        .footer {
            background: var(--dark-secondary);
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            padding: 6rem 0 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand h3 {
            font-size: 2rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .footer-brand p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-links a:hover {
            background: var(--gradient-primary);
            color: var(--dark-primary);
            border-color: transparent;
            transform: translateY(-3px);
        }

        .footer-section h4 {
            color: var(--text-primary);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .footer-section a:hover {
            color: var(--primary-gold);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            color: var(--text-muted);
            font-size: 1rem;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Chat Widgets */
        .chat-widgets {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .chat-widget {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-primary);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            position: relative;
        }

        .chat-widget:hover {
            transform: scale(1.1);
        }

        .whatsapp-widget {
            background: #25D366;
            color: white;
        }

        .live-chat-widget {
            background: var(--gradient-primary);
            color: var(--dark-primary);
        }

        .chat-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .chat-widget:hover .chat-tooltip {
            opacity: 1;
        }

        .chat-tooltip::after {
            content: '';
            position: absolute;
            right: -5px;
            top: 50%;
            transform: translateY(-50%);
            border: 5px solid transparent;
            border-left-color: rgba(0, 0, 0, 0.9);
        }

        /* Live Chat Modal */
        .live-chat-modal {
            position: fixed;
            bottom: 140px;
            right: 2rem;
            width: 350px;
            height: 500px;
            background: var(--dark-secondary);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            box-shadow: var(--shadow-secondary);
            backdrop-filter: blur(20px);
            z-index: 1001;
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        .live-chat-modal.active {
            display: flex;
        }

        .chat-header {
            background: var(--gradient-primary);
            color: var(--dark-primary);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header h3 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .chat-close {
            background: none;
            border: none;
            color: var(--dark-primary);
            font-size: 1.2rem;
            cursor: pointer;
        }

        .chat-messages {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .chat-message {
            padding: 0.8rem 1rem;
            border-radius: 12px;
            max-width: 80%;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .chat-message.bot {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.2);
            align-self: flex-start;
        }

        .chat-message.user {
            background: var(--gradient-primary);
            color: var(--dark-primary);
            align-self: flex-end;
        }

        .chat-input-area {
            padding: 1rem;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            display: flex;
            gap: 0.5rem;
        }

        .chat-input {
            flex: 1;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 25px;
            color: var(--text-primary);
            font-size: 0.9rem;
        }

        .chat-input:focus {
            outline: none;
            border-color: var(--primary-gold);
        }

        .chat-send {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: var(--dark-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .chat-widgets {
                bottom: 1rem;
                right: 1rem;
            }

            .live-chat-modal {
                bottom: 120px;
                right: 1rem;
                width: calc(100vw - 2rem);
                max-width: 350px;
            }

            .chat-tooltip {
                display: none;
            }

            .typewriter {
                min-width: auto;
                width: auto;
                font-size: clamp(2rem, 6vw, 3rem);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about-container,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 1.5rem;
            }

            .portfolio-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links,
            .cta-nav {
                display: none;
            }

            .hero h1 {
                font-size: clamp(2.5rem, 8vw, 4rem);
                line-height: 1.2;
            }

            .typewriter {
                font-size: clamp(1.8rem, 5vw, 2.5rem);
            }

            .hero-description {
                font-size: 1.1rem;
                padding: 0 1rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 280px;
                text-align: center;
            }

            .services-slider-container {
                margin: 0 1rem;
            }

            .services-grid {
                gap: 1rem;
            }

            .service-card {
                min-width: 280px;
                padding: 1.5rem;
            }

            .slider-controls {
                margin-top: 2rem;
            }

            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                padding: 0 1rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                max-width: 400px;
            }

            .portfolio-item {
                height: 260px;
            }

            .portfolio-image {
                height: 100px;
                font-size: 2rem;
            }

            .portfolio-content {
                padding: 1.2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .container {
                padding: 0 1rem;
            }

            .services,
            .about,
            .portfolio,
            .contact {
                padding: 4rem 0;
                min-height: 100vh;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .section-title {
                font-size: clamp(2rem, 6vw, 3rem);
            }

            .floating-element {
                display: none;
            }

            .theme-toggle {
                top: 40%;
                right: 1rem;
                width: 50px;
                height: 25px;
            }

            .contact-content {
                gap: 2rem;
            }

            .contact-form {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-badge {
                padding: 0.6rem 1.5rem;
                font-size: 0.8rem;
            }

            .hero h1 {
                font-size: clamp(2rem, 10vw, 3rem);
                margin-bottom: 1.5rem;
            }

            .typewriter {
                font-size: clamp(1.5rem, 5vw, 2rem);
            }

            .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .container {
                padding: 0 0.8rem;
            }
        }
    


/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-outline {
    color: #3498db;
    border-color: #3498db;
    background: transparent;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .services-grid { 
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .nav-links { flex-direction: column; }
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        margin: 2rem 0;
    }
    .service-card {
        padding: 1rem;
    }
    .service-icon {
        font-size: 2.5rem;
    }
}

/* WordPress Admin Bar Compatibility */
.admin-bar .fixed-header { top: 32px; }
@media (max-width: 782px) {
    .admin-bar .fixed-header { top: 46px; }
}
