
        /* --- CSS Variables & Reset --- */
:root {
    --primary-color: #f95738; /* Tangerine */
    --secondary-color: #ff7f11; /* Orange */
    --accent-gold: #ffd60a; /* Lemon Yellow */
    --success-green: #32cd32;
    --text-dark: #2b2b2b;
    --text-light: #757575;
    --bg-light: #fff8e1;
    --white: #ffffff;
    --border-radius: 8px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        h2 {
            font-size: 2.25rem;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 3rem auto;
            font-size: 1.1rem;
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- Utility Classes --- */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            border: none;
            transition: var(--transition);
        }

        .btn-primary {
            background-color: var(--secondary-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #d13650;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
        }

        .btn-secondary {
            background-color: var(--white);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-secondary:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-center { text-align: center; }
        .text-success { color: var(--success-green); font-weight: 600; }

        /* --- Header Section --- */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: var(--accent-gold);
        }

        .nav-menu {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-link {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .nav-link:hover {
            color: var(--secondary-color);
        }

        .header-cta {
            display: flex;
            gap: 15px;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* --- Hero Section --- */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url('../img/hero.jpg') center/cover no-repeat;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem auto;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        /* --- About Us Section --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-content h2 {
            text-align: left;
        }

        .about-list {
            margin: 20px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .about-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .about-list li i {
            color: var(--success-green);
        }

        .about-img {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        /* --- Why Choose Us --- */
        .why-choose {
            background-color: var(--bg-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .feature-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-card i {
            color: var(--accent-gold);
        }

        /* --- Services Section --- */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
        }

        .service-category {
            background: var(--white);
            border: 1px solid #eee;
            border-radius: var(--border-radius);
            padding: 25px;
            transition: var(--transition);
        }

        .service-category:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-md);
        }

        .service-cat-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--bg-light);
        }

        .service-cat-header i {
            font-size: 1.8rem;
            color: var(--primary-color);
            background: rgba(0, 0, 0, 0.1);
            padding: 12px;
            border-radius: 50%;
        }

        .service-list li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text-light);
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li i {
            color: var(--secondary-color);
            font-size: 0.8rem;
        }

        /* --- Testimonials --- */
        .testimonials {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .testimonials h2 {
            color: var(--white);
        }

        .testimonials .section-subtitle {
            color: rgba(255,255,255,0.7);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #eee;
        }

        .client-name {
            font-weight: 700;
            color: var(--accent-gold);
        }

        /* --- FAQ Section --- */
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }

        details {
            background: var(--bg-light);
            margin-bottom: 15px;
            border-radius: var(--border-radius);
            padding: 15px 20px;
            cursor: pointer;
            transition: var(--transition);
        }

        details:hover {
            background: #eef2f6;
        }

        details[open] {
            background: #eef2f6;
            box-shadow: inset 3px 0 0 var(--secondary-color);
        }

        summary {
            font-weight: 600;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        details[open] summary::after {
            content: '-';
        }

        details p {
            margin-top: 15px;
            margin-bottom: 0;
        }

        /* --- Contact & Forms --- */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .form-box {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            border: 1px solid #eee;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .checkbox-group input {
            width: auto;
        }

        .confirmation-msg {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid #c3e6cb;
            margin-top: 20px;
        }

        /* --- Privacy & Terms Strip --- */
        .legal-strip {
            background-color: #f1f1f1;
            padding: 40px 0;
            border-top: 1px solid #e0e0e0;
        }

        .legal-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        /* --- Footer --- */
        footer {
            background-color: #222;
            color: #dbe4eb;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .contact-info i {
            color: var(--accent-gold);
            margin-top: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: var(--secondary-color);
            color: var(--white);
        }

        .copyright {
            text-align: center;
            font-size: 0.9rem;
        }

        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .nav-menu {
                display: none; /* In a real app, toggle with JS */
            }
            .mobile-menu-btn {
                display: block;
            }
            .contact-wrapper, .about-grid, .legal-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .header-cta {
                display: none; /* Hide buttons on mobile to save space */
            }
            .hero-btns {
                flex-direction: column;
                padding: 0 40px;
            }
            .about-list {
                grid-template-columns: 1fr;
            }
            .service-cat-header {
                flex-direction: column;
                text-align: center;
            }
        }
    