/* ===== CSS CUSTOM PROPERTIES ===== */
        :root {
            --primary: #f97316;
            --primary-dark: #ea6a0e;
            --primary-light: #fb923c;
            --dark: #1a1a1a;
            --dark-secondary: #2d2d2d;
            --text-dark: #1e293b;
            --text-medium: #475569;
            --text-light: #94a3b8;
            --bg-light: #f8f7f4;
            --bg-white: #ffffff;
            --bg-cream: #faf9f6;
            --border-light: #e2e0dc;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
            --transition: all 0.3s ease;
        }

        /* ===== RESET & BASE ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--bg-white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            display: block;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 30px;
            border-radius: 6px;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            border-color: #fff;
        }

        .btn-outline:hover {
            background: #fff;
            color: var(--dark);
        }

        .btn-outline-dark {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline-dark:hover {
            background: var(--primary);
            color: #fff;
        }

        .btn-white {
            background: #fff;
            color: var(--dark);
            border-color: #fff;
        }

        .btn-white:hover {
            background: transparent;
            color: #fff;
        }

        /* ===== SECTION STYLES ===== */
        .section {
            padding: 100px 0;
        }

        .section-subtitle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .section-subtitle::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--primary);
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-medium);
            max-width: 600px;
            line-height: 1.7;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header .section-desc {
            margin: 0 auto;
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-delay-1 { transition-delay: 0.1s; }
        .animate-delay-2 { transition-delay: 0.2s; }
        .animate-delay-3 { transition-delay: 0.3s; }
        .animate-delay-4 { transition-delay: 0.4s; }
        .animate-delay-5 { transition-delay: 0.5s; }
        .animate-delay-6 { transition-delay: 0.6s; }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 18px 0;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            padding: 12px 0;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            transition: var(--transition);
        }

        .navbar.scrolled .nav-logo {
            color: var(--dark);
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-logo-icon svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: rgba(255,255,255,0.85);
            transition: var(--transition);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
        }

        .navbar.scrolled .nav-links a {
            color: var(--text-medium);
        }

        .navbar.scrolled .nav-links a:hover,
        .navbar.scrolled .nav-links a.active {
            color: var(--primary);
        }

        .nav-cta {
            padding: 10px 24px !important;
            background: var(--primary);
            color: #fff !important;
            border-radius: 6px;
            font-weight: 600 !important;
        }

        .nav-cta:hover {
            background: var(--primary-dark) !important;
            color: #fff !important;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .nav-toggle span {
            width: 26px;
            height: 2px;
            background: #fff;
            transition: var(--transition);
        }

        .navbar.scrolled .nav-toggle span {
            background: var(--dark);
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.5) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 650px;
            padding: 120px 0 80px;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(249,115,22,0.15);
            border: 1px solid rgba(249,115,22,0.3);
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-light);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: 58px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 18px;
            color: rgba(255,255,255,0.75);
            margin-bottom: 36px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 2;
        }

        .hero-dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: var(--transition);
        }

        .hero-dots span.active {
            background: var(--primary);
        }

        /* ===== ABOUT ===== */
        .about {
            background: var(--bg-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 12px;
        }

        .about-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 140px;
            height: 140px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: var(--shadow-lg);
        }

        .about-badge .number {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            line-height: 1;
        }

        .about-badge .text {
            font-size: 12px;
            font-weight: 500;
            text-align: center;
            line-height: 1.3;
            margin-top: 4px;
        }

        .about-content .section-subtitle {
            display: inline-flex;
        }

        .about-content .section-title {
            font-size: 38px;
        }

        .about-content .section-desc {
            margin-bottom: 30px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 36px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .about-feature .check {
            width: 22px;
            height: 22px;
            background: rgba(249,115,22,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-feature .check svg {
            width: 12px;
            height: 12px;
            fill: var(--primary);
        }

        /* ===== SERVICES ===== */
        .services {
            background: var(--bg-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 40px 30px;
            transition: var(--transition);
            border: 1px solid var(--border-light);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: rgba(249,115,22,0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--primary);
        }

        .service-icon svg {
            width: 26px;
            height: 26px;
            fill: var(--primary);
            transition: var(--transition);
        }

        .service-card:hover .service-icon svg {
            fill: #fff;
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .service-card p {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
        }

        .service-link:hover {
            gap: 10px;
        }

        .service-link svg {
            width: 14px;
            height: 14px;
            fill: var(--primary);
        }

        /* ===== STATS ===== */
        .stats {
            background: var(--dark);
            padding: 80px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-item .stat-number {
            font-family: var(--font-heading);
            font-size: 52px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-item .stat-label {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            font-weight: 400;
        }

        /* ===== PORTFOLIO ===== */
        .portfolio {
            background: var(--bg-white);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 250px;
            gap: 20px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
        }

        .portfolio-item:nth-child(1) {
            grid-row: span 2;
        }

        .portfolio-item:nth-child(4) {
            grid-row: span 2;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.08);
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, transparent 60%);
            opacity: 0;
            transition: var(--transition);
            display: flex;
            align-items: flex-end;
            padding: 24px;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-overlay h4 {
            color: #fff;
            font-size: 18px;
            font-weight: 600;
        }

        .portfolio-overlay span {
            color: var(--primary-light);
            font-size: 13px;
            font-weight: 500;
        }

        /* ===== TESTIMONIAL ===== */
        .testimonial {
            background: var(--dark);
            padding: 100px 0;
        }

        .testimonial-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .testimonial-tag {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 30px;
        }

        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 30px;
        }

        .testimonial-stars svg {
            width: 22px;
            height: 22px;
            fill: var(--primary);
        }

        .testimonial-quote {
            font-family: var(--font-heading);
            font-size: 26px;
            color: #fff;
            line-height: 1.6;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
        }

        .testimonial-role {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .testimonial-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-dots span.active {
            background: var(--primary);
            width: 30px;
            border-radius: 5px;
        }

        /* ===== BLOG ===== */
        .blog {
            background: var(--bg-white);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .blog-card-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.05);
        }

        .blog-card-category {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 5px 14px;
            background: var(--primary);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            border-radius: 4px;
        }

        .blog-card-body {
            padding: 24px;
        }

        .blog-card-date {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .blog-card-body h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .blog-card-body p {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
        }

        .blog-read-more:hover {
            gap: 10px;
        }

        .blog-read-more svg {
            width: 14px;
            height: 14px;
            fill: var(--primary);
        }

        .blog-cta {
            text-align: center;
            margin-top: 50px;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: var(--primary);
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 40px;
            color: #fff;
            margin-bottom: 16px;
        }

        .cta-section p {
            font-size: 16px;
            color: rgba(255,255,255,0.8);
            max-width: 550px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 50px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand .nav-logo {
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--primary);
        }

        .footer-social a svg {
            width: 18px;
            height: 18px;
            fill: rgba(255,255,255,0.7);
            transition: var(--transition);
        }

        .footer-social a:hover svg {
            fill: #fff;
        }

        .footer-col h4 {
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 24px;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--primary);
            padding-left: 6px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px !important;
        }

        .footer-contact li svg {
            width: 18px;
            height: 18px;
            fill: var(--primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-contact li span {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            line-height: 1.5;
        }

        .footer-bottom {
            padding: 24px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .footer-bottom p {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        /* ===== RESPONSIVE - 1024px ===== */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 46px;
            }

            .section-title {
                font-size: 36px;
            }

            .about-grid {
                gap: 50px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 220px;
            }

            .portfolio-item:nth-child(1),
            .portfolio-item:nth-child(4) {
                grid-row: span 1;
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ===== RESPONSIVE - 768px ===== */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                box-shadow: var(--shadow-md);
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links a {
                color: var(--text-dark) !important;
            }

            .nav-links a:hover,
            .nav-links a.active {
                color: var(--primary) !important;
            }

            .nav-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-content {
                padding: 100px 0 60px;
            }

            .section {
                padding: 70px 0;
            }

            .section-title {
                font-size: 30px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image img {
                height: 350px;
            }

            .about-badge {
                bottom: -20px;
                right: 20px;
                width: 110px;
                height: 110px;
            }

            .about-badge .number {
                font-size: 32px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-item .stat-number {
                font-size: 40px;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 250px;
            }

            .testimonial-quote {
                font-size: 20px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .cta-section h2 {
                font-size: 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }