:root {
            --color-primary-bg: #434a4c;
            --color-secondary: #7c6b63;
            --color-accent-green: #539e71;
            --color-accent-yellow: #e8b835;
            --color-bg-white: #ffffff;
            --color-text-on-dark: #ffffff;
            --color-text-on-light: #434a4c;
            --font-family: 'Poppins', sans-serif;
        }

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

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: var(--color-text-on-light);
        }

        

        

        /* Header */
        .header {
            background: var(--color-bg-white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-logo {
            height: 50px;
            cursor: pointer;
        }

        .main-nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--color-text-on-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .nav-link:hover {
            color: var(--color-accent-green);
        }

        .dropdown-arrow {
            width: 10px;
            height: 10px;
            fill: currentColor;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--color-bg-white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 8px;
            min-width: 250px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: var(--color-text-on-light);
            text-decoration: none;
            font-size: 14px;
            transition: background-color 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: #f5f5f5;
            color: var(--color-accent-green);
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--color-text-on-light);
            margin: 3px 0;
            transition: 0.3s;
        }

        .btn-primary {
            background: var(--color-accent-green);
            color: var(--color-text-on-dark);
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #4a8c64;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            height: 650px;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/homepage-hero.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 700;
            color: var(--color-text-on-dark);
            margin-bottom: 30px;
            line-height: 1.2;
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: var(--color-text-on-light);
        }

        .section-subtitle {
            font-size: 18px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            color: var(--color-text-on-light);
            opacity: 0.8;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .service-card {
            background: var(--color-bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

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

        .service-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .service-card-content {
            padding: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--color-text-on-light);
        }

        .service-arrow {
            color: var(--color-accent-green);
            font-size: 24px;
            font-weight: 600;
        }

        .cta-section {
            text-align: center;
            background: var(--color-primary-bg);
            padding: 60px 0;
            margin: 60px 0;
            border-radius: 12px;
        }

        .cta-section h3 {
            font-size: 32px;
            font-weight: 600;
            color: var(--color-text-on-dark);
            margin-bottom: 25px;
        }

        /* About Section */
        .about-section {
            background: var(--color-primary-bg);
            color: var(--color-text-on-dark);
        }

        .about-section .section-title {
            color: var(--color-text-on-dark);
        }

        .about-text {
            font-size: 18px;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: var(--color-bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

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

        .project-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .project-card-content {
            padding: 25px;
        }

        .project-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* Testimonial Section */
        .testimonial-section {
            background: #f8f9fa;
            text-align: center;
        }

        .testimonial-quote {
            font-size: 24px;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .testimonial-author {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .homestars-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--color-accent-green);
            color: var(--color-text-on-dark);
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .homestars-badge:hover {
            background: #4a8c64;
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--color-primary-bg);
            color: var(--color-text-on-dark);
            padding: 60px 0 30px;
        }

        .badges-section {
            background: #ffffff;
            padding: 50px 0;
        }

        .partner-badges {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .partner-badge {
            height: 60px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .partner-badge:hover {
            opacity: 1;
        }

        .form-message {
            padding: 16px 20px;
            border-radius: 6px;
            margin-bottom: 20px;
            font-size: 15px;
            line-height: 1.5;
        }
        .form-message--success {
            background-color: #edf7f1;
            border: 1px solid #539e71;
            color: #2d6e4a;
        }
        .form-message--error {
            background-color: #fdf3f3;
            border: 1px solid #d9534f;
            color: #8b2020;
        }

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

        .footer-column h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-column p {
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .footer-column a {
            color: var(--color-text-on-dark);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--color-accent-green);
        }

        .contact-link {
            color: var(--color-accent-green) !important;
            font-weight: 600;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-link img {
            width: 27px;
            height: 27px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .social-link:hover img {
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 36px;
            }

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

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

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

            .partner-badges {
                gap: 20px;
            }
        }
/* Mobile menu toggle (injected by packager) */
@media (max-width: 768px) {
  nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-dark, #434A4C);
    padding: 20px;
    z-index: 100;
  }
  nav.mobile-open .nav-item {
    width: 100%;
  }
  nav.mobile-open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: auto;
    padding-left: 20px;
  }
  .mobile-menu-toggle.active {
    color: var(--color-accent, #539E71);
  }
}