
   :root {
    --primary-color: #065f46; /* Deep Teal */        /* rgba(6, 95, 70, 1) */
    --secondary-color: #22d3ee; /* Cyan */
    --accent-color: #f87171; /* Coral Red */
    --gold-color: #eab308; /* Amber Gold */
    --light-bg: #ecfdf5;
    --white: #ffffff;
    --text-dark: #134e4a;
    --text-light: #4b5563;
    --border-color: #d1fae5;

    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* Utility Classes */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-center {
            text-align: center;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--secondary-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            background: transparent;
        }

        .btn-outline:hover {
            background-color: var(--secondary-color);
            color: var(--white);
        }

        /* --- Header --- */
        .top-bar {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-info span {
            margin-right: 20px;
        }

        .top-info i {
            margin-right: 5px;
            color: var(--gold-color);
        }

        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: var(--header-height);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: var(--secondary-color);
            font-size: 1.8rem;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-weight: 500;
            color: var(--primary-color);
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: var(--secondary-color);
        }

        .legal-links {
            font-size: 0.9rem;
            color: var(--text-light);
            display: flex;
            gap: 15px;
        }
        
        .legal-links a:hover {
            text-decoration: underline;
            color: var(--primary-color);
        }

        /* --- Hero Section --- */
        .hero {
            position: relative;
            background: linear-gradient(rgba(6, 95, 70, 0.9), rgba(6, 95, 70, 0.8)), url('../images/hero.webp');
            background-size: cover;
            background-position: center;
            height: 600px;
            display: flex;
            align-items: center;
            color: var(--white);
        }

        .hero-content {
            max-width: 700px;
        }

        .hero h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #e2e8f0;
        }

        /* --- About Preview --- */
        .about {
            background-color: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-hover);
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .about-text p {
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .stats {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }

        .stat-item h3 {
            font-size: 2rem;
            color: var(--secondary-color);
        }

        /* --- Services Section --- */
        .services {
            background-color: var(--light-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .section-header p {
            color: var(--text-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            border-top: 4px solid var(--secondary-color);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .service-list {
            padding-left: 20px;
        }

        .service-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .service-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }

        /* --- Why Choose Us --- */
        .why-choose {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .why-choose h2 {
            color: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .feature-item {
            text-align: center;
        }

        .feature-item i {
            font-size: 3rem;
            color: var(--gold-color);
            margin-bottom: 20px;
        }

        .feature-item h4 {
            color: var(--white);
            font-size: 1.25rem;
            margin-bottom: 10px;
            font-family: 'Inter', sans-serif;
        }

        /* --- Testimonials --- */
        .testimonials {
            background-color: var(--white);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--light-bg);
            padding: 30px;
            border-radius: var(--border-radius);
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: #cbd5e1;
        }

        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .client-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .client-name h4 {
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            margin-bottom: 2px;
        }

        .client-name span {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* --- FAQ --- */
        .faq {
            background-color: var(--light-bg);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        details {
            background: var(--white);
            margin-bottom: 15px;
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            cursor: pointer;
        }

        summary {
            font-weight: 600;
            color: var(--primary-color);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        summary::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 300;
        }

        details[open] summary::after {
            content: '-';
        }

        details p {
            margin-top: 15px;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        /* --- Contact Section --- */
        .contact {
            background-color: var(--white);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info-box {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
        }

        .contact-info-box h3 {
            color: var(--white);
            margin-bottom: 20px;
        }

        .info-row {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
        }

        .info-row i {
            color: var(--gold-color);
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 5px;
        }

        .contact-form form {
            display: grid;
            gap: 20px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--secondary-color);
        }

        /* --- Newsletter Section --- */
        .newsletter {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
            color: var(--white);
            padding: 60px 0;
        }

        .newsletter-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-content h2 {
            color: var(--white);
            margin-bottom: 30px;
        }

        .newsletter-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: var(--border-radius);
            backdrop-filter: blur(10px);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            align-items: end;
        }

        .newsletter-form input {
            padding: 12px;
            border-radius: 4px;
            border: none;
            width: 100%;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            text-align: left;
            font-size: 0.85rem;
            grid-column: 1 / -1;
        }

        .checkbox-group input {
            width: auto;
        }

        /* --- Footer --- */
        footer {
            background-color: #020617;
            color: #94a3b8;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            font-family: 'Inter', sans-serif;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }

        /* --- Modules (Modals) --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.6);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: var(--white);
            margin: auto;
            padding: 40px;
            border-radius: var(--border-radius);
            width: 90%;
            max-width: 600px;
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .close-modal {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close-modal:hover {
            color: var(--primary-color);
        }

        .modal-body h2 {
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .modal-body p {
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        /* --- Toast Notification --- */
        .toast {
            visibility: hidden;
            min-width: 250px;
            background-color: var(--accent-color);
            color: #fff;
            text-align: center;
            border-radius: 4px;
            padding: 16px;
            position: fixed;
            z-index: 3000;
            right: 30px;
            bottom: 30px;
            font-size: 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .toast.show {
            visibility: visible;
            animation: fadein 0.5s, fadeout 0.5s 2.5s;
        }

        @keyframes fadein {
            from {bottom: 0; opacity: 0;}
            to {bottom: 30px; opacity: 1;}
        }

        @keyframes fadeout {
            from {bottom: 30px; opacity: 1;}
            to {bottom: 0; opacity: 0;}
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
            .top-bar { display: none; }
            .nav-links { display: none; } /* Simplified mobile handling */
            .newsletter-form { grid-template-columns: 1fr; }
        }
   