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

        :root {
            --white: #ffffff;
            --off-white: #fafafa;
            --light-gray: #f5f5f5;
            --orange: #ff6b35;
            --orange-light: #ff8c61;
            --orange-glow: rgba(255, 107, 53, 0.2);
            --orange-subtle: rgba(255, 107, 53, 0.08);
            --text-dark: #1a1a1a;
            --text-gray: #6b7280;
            --border-light: #e8e8e8;
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.3);
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-orange: 0 8px 24px var(--orange-glow);
        }

        /* Dark Theme */
        body.dark-theme {
            --white: #0f0f14;
            --off-white: #1a1a22;
            --light-gray: #252530;
            --text-dark: #ffffff;
            --text-gray: #b0b0c0;
            --border-light: #2a2a35;
            --glass-bg: rgba(26, 26, 34, 0.7);
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
        }

        body.dark-theme .glow-orb {
            opacity: 0.08;
        }

        body.dark-theme nav {
            background: rgba(15, 15, 20, 0.85);
        }

        body.dark-theme .article-image,
        body.dark-theme .blog-image,
        body.dark-theme .portfolio-image,
        body.dark-theme .gallery-content {
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
        }

        body.dark-theme .submenu {
            background: rgba(26, 26, 34, 0.98);
        }

        body.dark-theme .form-group input,
        body.dark-theme .form-group textarea {
            background: var(--off-white);
            border-color: var(--border-light);
            color: var(--text-dark);
        }

        /* Keep profile card always dark */
        body:not(.dark-theme) .profile-card {
            background: #3d3436;
        }

        body:not(.dark-theme) .profile-name {
            color: #ffffff;
        }

        body:not(.dark-theme) .profile-title {
            color: #ff7755;
        }

        body:not(.dark-theme) .profile-bio {
            color: rgba(255, 255, 255, 0.65);
        }

        body:not(.dark-theme) .profile-avatar {
            background: linear-gradient(135deg, #ff8866 0%, #ff7755 100%);
        }

        /* Stats bar always has orange gradient background */
        body:not(.dark-theme) .profile-stats-external {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
        }

        body:not(.dark-theme) .stat-value {
            color: #ffffff;
        }

        body:not(.dark-theme) .stat-label {
            color: rgba(255, 255, 255, 0.7);
        }

        body {
            font-family: 'General Sans', sans-serif;
            background: var(--white);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Background Glow Effects */
        .bg-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
            animation: float 25s infinite ease-in-out;
        }

        .glow-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation-delay: 0s;
        }

        .glow-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
            animation-delay: 8s;
        }

        .glow-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
            top: 50%;
            left: 30%;
            animation-delay: 16s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(100px, -50px) scale(1.1);
            }
            50% {
                transform: translate(-50px, 50px) scale(0.95);
            }
            75% {
                transform: translate(80px, 30px) scale(1.05);
            }
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .nav-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 15px 25px;
            }
        }

        .logo {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 26px;
            font-weight: 800;
            color: var(--text-dark);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-img {
            height: 40px;
            width: auto;
            display: block;
        }

        
        .logo-dot {
            width: 8px;
            height: 8px;
            background: #a8d735;
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(168, 215, 53, 0.5);
            animation: pulse 2s infinite;
        }

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

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--orange);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Theme Toggle Button */
        .theme-toggle {
            width: 45px;
            height: 45px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 20px;
        }

        .theme-toggle:hover {
            background: var(--orange);
            color: white;
            transform: rotate(180deg) scale(1.1);
            box-shadow: var(--shadow-orange);
        }

        .theme-icon {
            transition: all 0.3s;
            display: block;
        }

        @media (max-width: 768px) {
            .theme-toggle {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

        /* Dropdown Arrow */
        .has-submenu > a::before {
            content: '▼';
            font-size: 9px;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .has-submenu:hover > a::before {
            transform: rotate(180deg);
        }

        /* Submenu Dropdown */
        .submenu {
            position: absolute;
            top: calc(100% + 20px);
            left: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 12px 0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-lg);
            z-index: 100;
        }

        .has-submenu:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .submenu li {
            list-style: none;
        }

        .submenu a {
            display: block;
            padding: 12px 24px;
            color: var(--text-gray);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .submenu a::after {
            display: none;
        }

        .submenu a::before {
            content: '→';
            margin-right: 8px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s;
            display: inline-block;
        }

        .submenu a:hover {
            background: var(--orange-subtle);
            color: var(--orange);
            padding-left: 28px;
        }

        .submenu a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .cta-nav {
            padding: 10px 24px;
            background: var(--orange);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-orange);
        }

        .cta-nav:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px var(--orange-glow);
        }

        .cta-nav::after {
            display: none;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            position: relative;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--text-dark);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        .menu-toggle.active span:first-child {
            transform: rotate(45deg) translateY(8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:last-child {
            transform: rotate(-45deg) translateY(-8px);
        }

        /* Close text when menu is open */
        .menu-toggle::before {
            content: '';
            position: absolute;
            right: 45px;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'General Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            opacity: 0;
            transition: opacity 0.3s;
            white-space: nowrap;
        }

        .menu-toggle.active::before {
            content: 'close';
            opacity: 1;
        }

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

            /* Scrollable Transparent Mobile Menu */
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 50;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 10px;
                transform: translateX(100%);
                opacity: 0;
                transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
                pointer-events: none;
                padding: 80px 40px 40px 40px;
                z-index: 999;
                overflow-y: scroll;
                -webkit-overflow-scrolling: touch;
            }

            body.dark-theme .nav-links {
                background: rgba(15, 15, 20, 0.95);
            }

            .nav-links.active {
                transform: translateX(0);
                opacity: 1;
                pointer-events: all;
            }

            /* Menu Items - Left Aligned, Top of Menu */
            .nav-links li {
                position: relative;
                border-bottom: none;
                padding: 0;
                list-style: none;
                width: 100%;
            }

            .nav-links > li > a {
                font-size: 20px;
                font-family: 'Cabinet Grotesk', sans-serif;
                font-weight: 800;
                opacity: 1;
                transform: none;
                transition: all 0.3s;
                padding: 15px 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-align: left;
                color: var(--text-dark);
                line-height: 1.1;
            }

            .nav-links > li > a:hover {
                color: var(--orange);
            }

            /* Services Submenu Arrow */
            .has-submenu > a::before {
                display: none !important;
            }

            .has-submenu > a::after {
                content: '+';
                font-size: 20px;
                font-weight: 300;
                transition: transform 0.3s;
                margin-left: auto;
                display: inline-block;
                line-height: 1;
            }

            .has-submenu.active > a::after {
                content: '−';
            }

            /* Submenu Accordion */
            .submenu {
                position: static !important;
                opacity: 0;
                visibility: hidden;
                max-height: 1px;
                overflow: hidden;
                background: transparent;
                backdrop-filter: none;
                border: none;
                box-shadow: none;
                padding: 0;
                margin: 0;
                transform: none !important;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                border-radius: 0;
                display: block !important;
            }

            .submenu.active {
                opacity: 1;
                visibility: visible;
                max-height: 500px;
                padding: 10px 0 10px 30px;
            }

            .submenu li {
                border-bottom: none;
                padding: 0;
                list-style: none;
            }

            .submenu a {
                font-size: 36px !important;
                padding: 10px 0 !important;
                text-align: left;
                font-family: 'Cabinet Grotesk', sans-serif;
                font-weight: 600;
                color: var(--text-gray) !important;
                display: block !important;
                white-space: normal !important;
                line-height: 1.2;
            }

            .submenu a::before {
                display: none !important;
            }

            .submenu a::after {
                display: none !important;
            }

            .submenu a:hover {
                color: var(--orange) !important;
                background: transparent !important;
                padding: 10px 0 !important;
            }

            /* Theme Toggle Mobile */
            .theme-toggle {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            /* CTA Button Mobile - Large */
            .cta-nav {
                font-size: 48px !important;
                padding: 15px 0 !important;
                background: transparent !important;
                color: var(--orange) !important;
                border: none !important;
                border-radius: 0 !important;
                box-shadow: none !important;
                text-align: left !important;
                font-family: 'Cabinet Grotesk', sans-serif !important;
                font-weight: 800 !important;
                transform: none !important;
                display: block;
                line-height: 1.1;
            }

            .cta-nav:hover {
                background: transparent !important;
                color: var(--orange-light) !important;
                transform: none !important;
                box-shadow: none !important;
            }

            .cta-nav::after {
                display: none !important;
            }

            /* Allow scrolling past menu into page content */
            .nav-links::after {
                content: '';
                display: block;
                height: 100vh;
                width: 100%;
            }
        }

        @media (min-width: 769px) {
            .menu-toggle {
                display: none;
            }

            .nav-links {
                display: flex !important;
                position: static;
                flex-direction: row;
                background: transparent;
                transform: none;
                opacity: 1;
                pointer-events: all;
                padding: 0;
            }

            .nav-links a {
                opacity: 1;
                transform: none;
            }
        }

        /* Container */
        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 60px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 25px;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 140px 0 100px;
            position: relative;
        }

        /* Hero stays visible - no hide effect */

        @media (max-width: 768px) {
            .hero {
                padding: 120px 0 80px;
                min-height: 90vh;
            }
        }

        .hero-content {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
            opacity: 0;
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: var(--orange-subtle);
            border: 1px solid rgba(255, 107, 53, 0.15);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--orange);
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        h1 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: clamp(48px, 8vw, 88px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -2px;
            color: var(--text-dark);
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(18px, 2.5vw, 24px);
            color: var(--text-gray);
            margin-bottom: 50px;
            line-height: 1.7;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 18px 40px;
            background: var(--orange);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-orange);
            border: none;
            cursor: pointer;
            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.3), transparent);
            transition: left 0.5s;
        }

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

        .btn-primary:hover {
            background: var(--orange-light);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px var(--orange-glow);
        }

        .btn-secondary {
            padding: 18px 40px;
            background: var(--white);
            color: var(--text-dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid var(--border-light);
            cursor: pointer;
        }

        .btn-secondary:hover {
            background: var(--orange-subtle);
            border-color: var(--orange);
            transform: translateY(-3px);
        }

        /* Articles Section */
        .articles-section {
            padding: 120px 0;
            background: var(--off-white);
            position: relative;
        }

        @media (max-width: 768px) {
            .articles-section {
                padding: 80px 0;
            }
        }

        /* Intro About Section (After Hero) */
        .intro-about-section {
            padding: 120px 0;
            background: var(--white);
            position: relative;
        }

        @media (max-width: 768px) {
            .intro-about-section {
                padding: 80px 0;
            }
        }

        .intro-about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .intro-about-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }

        .intro-about-image {
            width: 100%;
            height: 850px;
            background: linear-gradient(135deg, #1a5f5f 0%, #2a7f7f 100%);
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: fixed;
            color: white;
            font-size: 18px;
            text-align: center;
            padding: 40px;
            background: url('./../../img/founderhesaducreatives.jpg') center !important;
        }

        .intro-about-image::before {
            content: '';
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 700;

        }


        @media (max-width: 768px) {
            .intro-about-image {
                height: 400px;
            }
        }

        .intro-about-content h2 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
            letter-spacing: -1.5px;
        }

        .intro-about-content p {
            font-size: 17px;
            color: var(--text-gray);
            line-height: 1.9;
            margin-bottom: 35px;
        }

        .intro-about-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 35px;
            background: transparent;
            color: var(--text-dark);
            text-decoration: none;
            border: 2px solid var(--border-light);
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .intro-about-btn:hover {
            background: var(--orange);
            color: white;
            border-color: var(--orange);
            transform: translateX(5px);
        }

        .intro-about-btn::after {
            content: '→';
            transition: transform 0.3s;
        }

        .intro-about-btn:hover::after {
            transform: translateX(5px);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @media (max-width: 768px) {
            .section-header {
                margin-bottom: 50px;
            }
        }

        .section-title {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
        }

        .section-description {
            font-size: 20px;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
        }

        @media (max-width: 768px) {
            .articles-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 480px) {
            .articles-grid {
                gap: 20px;
            }
        }

        .article-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            opacity: 0;
            transform: translateY(60px);
            animation: floatIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            position: relative;
        }

        .article-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--orange), var(--orange-light));
            transform: scaleX(0);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .article-card:hover::before {
            transform: scaleX(1);
        }

        .article-card:nth-child(1) { animation-delay: 0.1s; }
        .article-card:nth-child(2) { animation-delay: 0.2s; }
        .article-card:nth-child(3) { animation-delay: 0.3s; }
        .article-card:nth-child(4) { animation-delay: 0.4s; }
        .article-card:nth-child(5) { animation-delay: 0.5s; }
        .article-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes floatIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .article-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
            background: rgba(255, 255, 255, 0.9);
        }

        .article-image {
            width: 100%;
            height: 260px;
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            position: relative;
            overflow: hidden;
        }

        .article-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
        }

        .article-content {
            padding: 35px;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .article-category {
            padding: 6px 14px;
            background: var(--orange-subtle);
            color: var(--orange);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 20px;
        }

        .article-date {
            font-size: 13px;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-title {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
            color: var(--text-dark);
        }

        .article-excerpt {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--orange);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .read-more:hover {
            gap: 12px;
        }

        /* Developer Profile Section */
        .profile-section {
            padding: 120px 0;
            background: var(--white);
            position: relative;
        }

        @media (max-width: 768px) {
            .profile-section {
                padding: 80px 0;
            }
        }

        .profile-container {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 80px;
            align-items: start;
        }

        @media (max-width: 1024px) {
            .profile-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
        }

        .profile-card {
            background: #3d3436;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 32px;
            padding: 60px 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            opacity: 0;
            transform: translateX(-60px);
            animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .profile-card {
                padding: 40px 30px;
            }
        }

        .profile-card::after {
            display: none;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .profile-avatar {
            width: 140px;
            height: 140px;
            background: linear-gradient(135deg, #ff8866 0%, #ff7755 100%);
            border-radius: 50%;
            margin: 0 auto 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            font-weight: 700;
            color: white;
            font-family: 'Cabinet Grotesk', sans-serif;
            box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
            position: relative;
            z-index: 1;
        }

        .profile-name {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 38px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
            color: #ffffff;
        }

        .profile-title {
            font-size: 18px;
            color: #ff7755;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .profile-bio {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.9;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }



        /* Stats Outside Profile Card */
        .profile-stats-external {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-top: 50px;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
            border-radius: 30px;
            padding: 50px 40px;
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .profile-stats-external {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px 30px;
            }
        }

        .stat-box {
            text-align: center;
            position: relative;
            padding: 0 30px;
            border-right: 2px solid rgba(255, 255, 255, 0.15);
        }

        .stat-box:last-child {
            border-right: none;
        }

        @media (max-width: 768px) {
            .stat-box {
                border-right: none;
                border-bottom: 2px solid rgba(255, 255, 255, 0.15);
                padding: 0 0 40px 0;
            }

            .stat-box:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }
        }

        .stat-value {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 64px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            line-height: 1;
            display: block;
        }

        @media (max-width: 768px) {
            .stat-value {
                font-size: 48px;
            }
        }

        .stat-label-box {
            padding: 0;
            background: transparent;
            border-radius: 0;
            border: none;
        }

        .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            display: block;
            line-height: 1.6;
        }

        /* Services Content */
        .services-content {
            opacity: 0;
            transform: translateX(60px);
            animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .services-header {
            margin-bottom: 40px;
        }

        .services-title {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
        }

        .services-description {
            font-size: 18px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        .service-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 35px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--orange-subtle);
            opacity: 0;
            transition: opacity 0.4s;
        }

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

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255, 107, 53, 0.3);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 25px;
            box-shadow: var(--shadow-orange);
            position: relative;
            z-index: 1;
            animation: iconDraw 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            opacity: 0;
        }

        .service-card:nth-child(1) .service-icon { animation-delay: 0.6s; }
        .service-card:nth-child(2) .service-icon { animation-delay: 0.7s; }
        .service-card:nth-child(3) .service-icon { animation-delay: 0.8s; }
        .service-card:nth-child(4) .service-icon { animation-delay: 0.9s; }

        @keyframes iconDraw {
            from {
                opacity: 0;
                transform: scale(0) rotate(-180deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        .service-name {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .service-description {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* Digital Store Section */
        .store-section {
            padding: 120px 0;
            background: var(--off-white);
            position: relative;
        }

        @media (max-width: 768px) {
            .store-section {
                padding: 80px 0;
            }
        }

        /* Portfolio Section */
        .portfolio-section {
            padding: 120px 0;
            background: var(--white);
            position: relative;
        }

        @media (max-width: 768px) {
            .portfolio-section {
                padding: 80px 0;
            }
        }

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

        @media (max-width: 768px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        .portfolio-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            height: 400px;
        }

        @media (max-width: 480px) {
            .portfolio-card {
                height: 320px;
            }
        }

        .portfolio-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
        }

        .portfolio-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 72px;
            transition: transform 0.5s;
        }

        .portfolio-card:hover .portfolio-image {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 35px;
            opacity: 0;
            transition: opacity 0.5s;
        }

        .portfolio-card:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-category {
            display: inline-block;
            padding: 6px 14px;
            background: var(--orange);
            color: white;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 20px;
            margin-bottom: 15px;
            width: fit-content;
        }

        .portfolio-title {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }

        .portfolio-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Gallery Section */
        .gallery-section {
            padding: 120px 0;
            background: var(--off-white);
            position: relative;
        }

        @media (max-width: 768px) {
            .gallery-section {
                padding: 80px 0;
            }
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            grid-auto-rows: 280px;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        .gallery-item {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item.tall {
            grid-row: span 2;
        }

        .gallery-item.wide {
            grid-column: span 2;
        }

        @media (max-width: 768px) {
            .gallery-item.tall,
            .gallery-item.wide {
                grid-row: span 1;
                grid-column: span 1;
            }
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--orange);
        }

        .gallery-content {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            background: linear-gradient(135deg, var(--light-gray), var(--off-white));
            transition: transform 0.4s;
        }

        .gallery-item:hover .gallery-content {
            transform: scale(1.05);
        }

        .gallery-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 25px;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.98), transparent);
            backdrop-filter: blur(10px);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover .gallery-info {
            transform: translateY(0);
        }

        .gallery-info h4 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .gallery-info p {
            font-size: 14px;
            color: var(--text-gray);
        }

        /* About Section */
        .about-section {
            padding: 120px 0;
            background: var(--white);
            position: relative;
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 80px 0;
            }
        }

        .about-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 80px;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
        }

        .about-text {
            font-size: 18px;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        @media (max-width: 768px) {
            .about-features {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        .feature-item {
            text-align: center;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--orange-subtle);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 20px;
        }

        .feature-item h4 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-item p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .about-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 32px;
            padding: 60px 40px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            width: 100%;
            max-width: 400px;
        }

        @media (max-width: 768px) {
            .about-card {
                padding: 40px 30px;
            }
        }

        .about-visual {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            margin: 0 auto 30px;
            box-shadow: var(--shadow-orange);
        }

        .about-card h3 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .about-card p {
            font-size: 16px;
            color: var(--text-gray);
        }

        /* Digital Store Section */
        .store-section {
            padding: 120px 0;
            background: var(--off-white);
            position: relative;
        }

        @media (max-width: 768px) {
            .store-section {
                padding: 80px 0;
            }
        }

        .store-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        @media (max-width: 768px) {
            .store-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 480px) {
            .store-grid {
                gap: 20px;
            }
        }

        .store-card {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: 28px;
            padding: 45px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .store-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), var(--orange-light));
            transform: scaleX(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .store-card:hover::before {
            transform: scaleX(1);
        }

        .store-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
            border-color: var(--orange);
        }

        .store-badge {
            display: inline-block;
            padding: 6px 16px;
            background: var(--orange-subtle);
            color: var(--orange);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 20px;
            margin-bottom: 25px;
        }

        .store-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange-subtle), rgba(255, 107, 53, 0.15));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 38px;
            margin-bottom: 30px;
        }

        .store-title {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .store-description {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .store-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .store-features li {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }

        .store-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--orange);
            font-weight: 700;
        }

        .store-price {
            margin-bottom: 25px;
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .price-amount {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 800;
            color: var(--orange);
            line-height: 1;
        }

        .price-period {
            font-size: 18px;
            color: var(--text-gray);
            font-weight: 600;
        }

        .store-button {
            width: 100%;
            padding: 18px 40px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-orange);
            position: relative;
            overflow: hidden;
        }

        .store-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .store-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .store-button:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 15px 40px var(--orange-glow);
        }

        

        /* Scroll Reveal */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Additional Mobile Responsive Fixes */
        @media (max-width: 480px) {
            .hero {
                padding: 100px 0 60px;
            }

            .hero-badge {
                font-size: 11px;
                padding: 6px 16px;
            }

            h1 {
                font-size: 38px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .btn-primary, .btn-secondary {
                padding: 14px 28px;
                font-size: 14px;
            }

            .section-title {
                font-size: 32px;
            }

            .section-description {
                font-size: 16px;
            }

            .article-image {
                height: 200px;
                font-size: 42px;
            }

            .article-content {
                padding: 25px;
            }

            .article-title {
                font-size: 20px;
            }

            .article-excerpt {
                font-size: 14px;
            }

            .profile-card {
                padding: 30px 20px;
            }

            .profile-name {
                font-size: 26px;
            }

            .profile-avatar {
                width: 100px;
                height: 100px;
                font-size: 40px;
            }

            .services-title {
                font-size: 28px;
            }

            .services-description {
                font-size: 16px;
            }

            .service-card {
                padding: 25px;
            }

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

            .service-name {
                font-size: 18px;
            }

            .store-card {
                padding: 30px 25px;
            }

            .store-icon {
                width: 70px;
                height: 70px;
                font-size: 32px;
            }

            .store-title {
                font-size: 22px;
            }

            .store-description {
                font-size: 14px;
            }

            .price-amount {
                font-size: 38px;
            }

            .store-button {
                padding: 14px 32px;
                font-size: 14px;
            }
        }

        /* Smooth scrolling for all devices */
        html {
            scroll-behavior: smooth;
        }

        /* Prevent horizontal scroll */
        body {
            overflow-x: hidden;
            position: relative;
        }

        /* Fix for mobile safari */
        @supports (-webkit-touch-callout: none) {
            body {
                min-height: -webkit-fill-available;
            }
        }
        /* ========================================
   CONTACT SECTION WITH BACKGROUND
   ======================================== */

.contact-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
}

/* Background Video/Image */
.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-bg-video,
.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay */
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

/* Main Container */
.contact-main-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side Content */
.contact-content {
    color: white;
}

.contact-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 15px;
}

.contact-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.contact-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

/* Contact Info Items */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.info-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: white;
}

.contact-info-item p {
    font-size: 15px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Right Side Form Card */
.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

body.dark-theme .contact-form-card {
    background: rgba(26, 26, 34, 0.95);
    backdrop-filter: blur(20px);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-family: 'General Sans', sans-serif;
    font-size: 15px;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

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

/* Submit Button */
.submit-btn {
    padding: 16px 32px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'General Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .contact-main-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 40px;
    }

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

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-main-container {
        padding: 0 25px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-form-card {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info {
        gap: 15px;
    }

    .contact-info-item {
        padding: 15px;
    }

    /* Hide video on mobile, show image */
    .contact-bg-video {
        display: none;
    }

    .contact-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('contact-bg-mobile.jpg');
        background-size: cover;
        background-position: center;
        z-index: 0;
    }
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Background Image Container */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay (adjust opacity) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

/* Content stays on top */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

/* Optional: Parallax effect */
@media (min-width: 769px) {
    .hero-bg-image {
        transform: translateY(var(--scroll-offset, 0));
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-bg-image {
        object-position: center;
    }
}
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fills card perfectly */
    transition: transform 0.5s;
}

/* Zoom on hover */
.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

        /* Cookie Consent Banner */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--border-light);
            padding: 25px;
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        }

        body.dark-theme .cookie-consent {
            background: rgba(15, 15, 20, 0.98);
            border-top-color: rgba(255, 255, 255, 0.1);
        }

        .cookie-consent.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .cookie-icon {
            font-size: 48px;
            flex-shrink: 0;
        }

        .cookie-text {
            flex: 1;
        }

        .cookie-text h3 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .cookie-text p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.6;
            margin: 0;
        }

        .cookie-text a {
            color: var(--orange);
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 50px;
            font-family: 'General Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .cookie-btn.accept {
            background: var(--orange);
            color: white;
        }

        .cookie-btn.accept:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
        }

        .cookie-btn.reject {
            background: transparent;
            color: var(--text-gray);
            border: 2px solid var(--border-light);
        }

        .cookie-btn.reject:hover {
            border-color: var(--text-gray);
            color: var(--text-dark);
        }

        .cookie-btn.settings {
            background: transparent;
            color: var(--orange);
            border: 2px solid var(--orange);
        }

        .cookie-btn.settings:hover {
            background: var(--orange);
            color: white;
        }

        /* Cookie Settings Modal */
        .cookie-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10001;
            padding: 20px;
            overflow-y: auto;
        }

        .cookie-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cookie-modal-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 600px;
            width: 100%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        body.dark-theme .cookie-modal-content {
            background: #1a1a1a;
        }

        .cookie-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 32px;
            color: var(--text-gray);
            cursor: pointer;
            line-height: 1;
        }

        .cookie-close:hover {
            color: var(--text-dark);
        }

        .cookie-modal-content h2 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cookie-modal-content > p {
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .cookie-option {
            padding: 20px;
            background: var(--off-white);
            border-radius: 12px;
            margin-bottom: 15px;
        }

        body.dark-theme .cookie-option {
            background: rgba(255, 255, 255, 0.05);
        }

        .cookie-option-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .cookie-option-header h4 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 4px 0;
        }

        .cookie-option p {
            font-size: 14px;
            color: var(--text-gray);
            margin: 0;
            line-height: 1.6;
        }

        .cookie-badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .cookie-badge.required {
            background: rgba(255, 107, 53, 0.1);
            color: var(--orange);
        }

        .cookie-badge.optional {
            background: rgba(107, 114, 128, 0.1);
            color: var(--text-gray);
        }

        /* Toggle Switch */
        .cookie-toggle {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 26px;
            flex-shrink: 0;
        }

        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .cookie-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.3s;
            border-radius: 26px;
        }

        .cookie-slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }

        .cookie-toggle input:checked + .cookie-slider {
            background-color: var(--orange);
        }

        .cookie-toggle input:checked + .cookie-slider:before {
            transform: translateX(24px);
        }

        .cookie-slider.disabled {
            background-color: var(--orange);
            opacity: 0.5;
            cursor: not-allowed;
        }

        .cookie-modal-buttons {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .cookie-modal-buttons .cookie-btn {
            flex: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .cookie-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cookie-btn {
                width: 100%;
            }

            .cookie-modal-content {
                padding: 30px 20px;
            }

            .cookie-modal-buttons {
                flex-direction: column;
            }

            .cookie-icon {
                font-size: 40px;
            }
        }
        /* Main Content */
        .pricing-page {
            padding-top: 100px;
            min-height: 100vh;
        }

        /* Hero Section */
        .pricing-hero {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .pricing-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .pricing-hero h1 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .pricing-hero p {
            font-size: 20px;
            opacity: 0.9;
            margin-bottom: 40px;
        }

        /* Category Navigation */
        .category-nav {
            max-width: 1200px;
            margin: -40px auto 80px;
            padding: 0 40px;
            position: relative;
            z-index: 10;
        }

        .category-tabs {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .category-tab {
            padding: 16px 32px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 2px solid var(--glass-border);
            border-radius: 50px;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--text-dark);
            box-shadow: var(--shadow-lg);
        }

        .category-tab:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        }

        .category-tab.active {
            background: var(--orange);
            color: white;
            border-color: var(--orange);
        }

        /* Category Section */
        .category-section {
            display: none;
            padding: 60px 0 100px;
        }

        .category-section.active {
            display: block;
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .category-header {
            max-width: 800px;
            margin: 0 auto 60px;
            text-align: center;
            padding: 0 40px;
        }

        .category-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }

        .category-header h2 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .category-header p {
            font-size: 18px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* Pricing Cards */
        .pricing-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .pricing-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 2px solid var(--glass-border);
            border-radius: 32px;
            padding: 50px 40px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--teal), var(--green), var(--orange));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
            border-color: var(--orange);
        }

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

        .pricing-card.featured {
            border-color: var(--orange);
            box-shadow: 0 16px 40px rgba(255, 107, 53, 0.2);
        }

        .pricing-card.featured::before {
            opacity: 1;
        }

        .pricing-badge {
            display: inline-block;
            padding: 6px 16px;
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
            color: white;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .pricing-card h3 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .pricing-description {
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .pricing-price {
            margin-bottom: 30px;
        }

        .price-amount {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 56px;
            font-weight: 800;
            color: var(--orange);
            line-height: 1;
        }

        .price-currency {
            font-size: 32px;
            vertical-align: super;
        }

        .price-period {
            font-size: 18px;
            color: var(--text-gray);
            font-weight: 600;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .pricing-features li {
            padding: 12px 0;
            color: var(--text-dark);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 16px;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--green);
            font-weight: 700;
            font-size: 20px;
            flex-shrink: 0;
        }

        .pricing-cta {
            width: 100%;
            padding: 16px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 50px;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pricing-cta:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(255, 107, 53, 0.3);
        }

        .pricing-card.featured .pricing-cta {
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
        }

        /* Compare Section */
        .compare-section {
            max-width: 1200px;
            margin: 80px auto 0;
            padding: 0 40px;
        }

        .compare-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .compare-header h3 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .compare-table {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            overflow: hidden;
        }

        .compare-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .compare-table th {
            background: var(--off-white);
            padding: 20px;
            text-align: left;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-weight: 700;
            font-size: 16px;
            color: var(--text-dark);
        }

        .compare-table td {
            padding: 18px 20px;
            border-top: 1px solid var(--border-light);
            color: var(--text-dark);
        }

        .compare-table td:first-child {
            font-weight: 600;
        }

        .compare-table .check {
            color: var(--green);
            font-weight: 700;
            font-size: 20px;
        }

        .compare-table .cross {
            color: var(--text-gray);
            opacity: 0.5;
        }

        /* FAQ Section */
        .faq-section {
            max-width: 900px;
            margin: 100px auto 80px;
            padding: 0 40px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-header h3 {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 38px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .faq-item {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .faq-question {
            padding: 25px 30px;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            color: var(--orange);
        }

        .faq-question::after {
            content: '+';
            font-size: 28px;
            font-weight: 700;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            color: var(--text-gray);
            line-height: 1.8;
        }
                /* Contact Section */
        .contact-section {
            padding: 120px 0;
            background: var(--white);
            position: relative;
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 80px 0;
            }
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 32px;
            padding: 50px;
            box-shadow: var(--shadow-lg);
        }

        @media (max-width: 768px) {
            .contact-form {
                padding: 35px 25px;
            }
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-size: 15px;
            font-family: 'General Sans', sans-serif;
            color: var(--text-dark);
            background: var(--white);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--orange);
            box-shadow: 0 0 0 4px var(--orange-glow);
        }

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

        .submit-btn {
            width: 100%;
            padding: 18px 40px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-orange);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::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.5s;
        }

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

        .submit-btn:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 15px 40px var(--orange-glow);
        }
        


