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

        :root {
            --primary: #0b6e4f;
            --primary-light: #0d8b64;
            --primary-dark: #08533b;
            --primary-bg: #e8f5f0;
            --secondary: #f59e0b;
            --accent: #0891b2;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --text-light: #94a3b8;
            --white: #ffffff;
            --off-white: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
            --radius: 16px;
            --radius-sm: 10px;
            --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-family: inherit;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 16px rgba(11, 110, 79, 0.35);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(11, 110, 79, 0.45);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(11, 110, 79, 0.25);
        }

        .btn-outline-light {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--primary);
            border-color: var(--white);
            transform: translateY(-3px);
        }

        .btn-gold {
            background: var(--secondary);
            color: var(--white);
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
        }

        .btn-gold:hover {
            background: #d97706;
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(245, 158, 11, 0.5);
        }

        /* ===== HEADER / NAVBAR ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.5);
            transition: var(--transition);
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.96);
            box-shadow: var(--shadow-sm);
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 78px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -0.5px;
            color: var(--primary);
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            box-shadow: 0 4px 12px rgba(11, 110, 79, 0.3);
        }

        .logo span {
            color: var(--text-dark);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a {
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-muted);
            transition: var(--transition);
            position: relative;
        }

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

        .nav-cta {
            background: var(--primary) !important;
            color: var(--white) !important;
            padding: 10px 24px !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
            margin-left: 8px;
            box-shadow: 0 4px 14px rgba(11, 110, 79, 0.3);
        }

        .nav-cta:hover {
            background: var(--primary-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(11, 110, 79, 0.4);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--text-dark);
            border-radius: 10px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

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

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* ===== HERO ===== */
        .hero {
            padding: 140px 0 100px;
            background: linear-gradient(165deg, var(--off-white) 0%, var(--primary-bg) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(11, 110, 79, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3.4rem;
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -1.5px;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .hero-content h1 .highlight {
            color: var(--primary);
            position: relative;
        }

        .hero-content h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            width: 100%;
            height: 10px;
            background: rgba(11, 110, 79, 0.15);
            border-radius: 10px;
            z-index: -1;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 520px;
            margin-bottom: 36px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 48px;
            padding-top: 36px;
            border-top: 2px solid rgba(11, 110, 79, 0.12);
        }

        .hero-stats .stat h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }

        .hero-stats .stat p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 0;
            font-weight: 500;
        }

        /* Hero Image */
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-image .img-wrapper {
            width: 100%;
            max-width: 540px;
            aspect-ratio: 1 / 1;
            background: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
            border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 30px 80px rgba(11, 110, 79, 0.25);
            position: relative;
            animation: morph 12s ease-in-out infinite;
        }

        @keyframes morph {
            0%,
            100% {
                border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
            }
            33% {
                border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
            }
            66% {
                border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%;
            }
        }

        .hero-image .img-wrapper i {
            font-size: 8rem;
            color: rgba(255, 255, 255, 0.15);
            position: absolute;
        }

        .hero-image .img-wrapper .pill-icon {
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.25);
            position: absolute;
            top: 15%;
            right: 10%;
        }

        .hero-image .img-wrapper .heart-icon {
            font-size: 3.5rem;
            color: rgba(255, 255, 255, 0.2);
            position: absolute;
            bottom: 18%;
            left: 12%;
        }

        .hero-image .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(8px);
            padding: 14px 22px;
            border-radius: 14px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            font-size: 0.9rem;
            animation: float 4s ease-in-out infinite;
        }

        .hero-image .floating-card:nth-child(2) {
            top: 8%;
            right: -5%;
            animation-delay: 1s;
        }

        .hero-image .floating-card:nth-child(3) {
            bottom: 12%;
            left: -8%;
            animation-delay: 2s;
        }

        .hero-image .floating-card i {
            font-size: 1.4rem;
            color: var(--primary);
        }

        @keyframes float {
            0%,
            100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-12px);
            }
        }

        /* ===== SECTION TITLES ===== */
        .section {
            padding: 90px 0;
        }

        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 60px;
        }

        .section-header .badge {
            display: inline-block;
            background: var(--primary-bg);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.75rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 14px;
        }

        .section-header h2 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .section-header h2 span {
            color: var(--primary);
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        /* ===== SERVICES ===== */
        .services {
            background: var(--white);
        }

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

        .service-card {
            background: var(--off-white);
            padding: 36px 28px;
            border-radius: var(--radius);
            transition: var(--transition);
            border: 1px solid transparent;
            text-align: center;
        }

        .service-card:hover {
            background: var(--white);
            border-color: var(--gray-200);
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-card .icon {
            width: 68px;
            height: 68px;
            background: var(--primary-bg);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .service-card:hover .icon {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.05);
        }

        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.7;
        }

        /* ===== ABOUT ===== */
        .about {
            background: var(--white);
        }

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

        .about-image {
            position: relative;
        }

        .about-image .img-placeholder {
            width: 100%;
            aspect-ratio: 4/3;
            background: linear-gradient(145deg, var(--primary-bg), var(--gray-200));
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .about-image .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--primary);
            color: var(--white);
            padding: 20px 28px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .about-image .experience-badge h3 {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1;
        }

        .about-image .experience-badge p {
            font-size: 0.8rem;
            opacity: 0.85;
            margin-top: 2px;
        }

        .about-content h2 {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .about-content h2 span {
            color: var(--primary);
        }

        .about-content p {
            color: var(--text-muted);
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 24px;
            margin-top: 24px;
        }

        .about-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .about-features li i {
            color: var(--primary);
            font-size: 1.1rem;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            background: var(--off-white);
        }

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

        .testimonial-card {
            background: var(--white);
            padding: 32px 28px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-100);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .testimonial-card .stars {
            color: var(--secondary);
            font-size: 0.95rem;
            margin-bottom: 14px;
            letter-spacing: 2px;
        }

        .testimonial-card blockquote {
            font-size: 0.98rem;
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 18px;
            font-style: italic;
        }

        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testimonial-card .author .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .testimonial-card .author .name {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .testimonial-card .author .role {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* ===== CONTACT / CTA ===== */
        .contact-cta {
            background: linear-gradient(145deg, var(--primary-dark), var(--primary));
            padding: 80px 0;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .contact-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            pointer-events: none;
        }

        .contact-cta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .contact-cta h2 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .contact-cta p {
            opacity: 0.85;
            font-size: 1.05rem;
            max-width: 460px;
            margin-bottom: 30px;
        }

        .contact-cta .contact-info {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .contact-cta .contact-info li {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 0.98rem;
            opacity: 0.9;
        }

        .contact-cta .contact-info li i {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(8px);
            padding: 36px 32px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-form .form-group {
            margin-bottom: 18px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            font-size: 0.95rem;
            font-family: inherit;
            transition: var(--transition);
            outline: none;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--secondary);
            background: rgba(255, 255, 255, 0.12);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 110px;
        }

        .contact-form .btn {
            width: 100%;
            justify-content: center;
            background: var(--secondary);
            color: var(--white);
            font-weight: 700;
            padding: 16px;
        }

        .contact-form .btn:hover {
            background: #d97706;
            transform: translateY(-2px);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--text-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-brand .logo span {
            color: var(--white);
        }

        .footer-brand p {
            font-size: 0.92rem;
            max-width: 300px;
            line-height: 1.7;
        }

        .footer h4 {
            color: var(--white);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 18px;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            transition: var(--transition);
            font-size: 0.92rem;
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 4px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-social a:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--white);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-grid {
                gap: 40px;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .about-grid {
                gap: 40px;
            }
        }

        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image .img-wrapper {
                max-width: 400px;
            }

            .hero-image .floating-card {
                display: none;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .about-image .experience-badge {
                right: 0;
                bottom: -10px;
            }

            .contact-cta-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 78px;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(16px);
                flex-direction: column;
                padding: 24px 20px 32px;
                gap: 6px;
                box-shadow: var(--shadow-md);
                transform: translateY(-120%);
                transition: var(--transition);
                border-bottom: 1px solid var(--gray-200);
            }

            .nav-links.open {
                transform: translateY(0);
            }

            .nav-links a {
                width: 100%;
                padding: 12px 16px;
                text-align: center;
            }

            .nav-cta {
                margin-left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero {
                padding: 120px 0 60px;
            }

            .hero-stats {
                gap: 28px;
                flex-wrap: wrap;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .service-card {
                padding: 24px 18px;
            }

            .hero-image .img-wrapper {
                max-width: 280px;
            }

            .hero-image .img-wrapper i {
                font-size: 4rem;
            }

            .contact-form {
                padding: 24px 18px;
            }

            .section {
                padding: 60px 0;
            }
        }
