:root {
    --primary: #27ae60;      /* Green */
    --accent: #f1c40f;       /* Yellow */
    --secondary: #ecf0f1;    /* Light Gray */
    --text: #2c3e50;         
    --light-bg: #f9f9f9;     
    --white: #ffffff;         
    --transition: all 0.3s ease;
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text);
            scroll-behavior: smooth;
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
        }

        /* --- Global Components --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary { background: var(--accent); color: white; }
        .btn-primary:hover { background: #f1c40f; transform: translateY(-2px); }
        .btn-outline { border: 2px solid var(--accent); color: var(--accent); }
        .btn-outline:hover { background: var(--accent); color: white; }

        section { padding: 80px 0; }

        /* --- Header & Nav --- */
        .top-bar {
            background: var(--primary);
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
            text-align: center;
        }
        .top-bar a { color: white; text-decoration: none; margin: 0 15px; }

        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
        .nav-links { display: flex; list-style: none; gap: 20px; align-items: center; }
        .nav-links a { text-decoration: none; color: var(--text); font-weight: 500; }
        .nav-links a:hover { color: var(--accent); }

        /* --- Hero Section --- */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('../images/hero.webp');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
        }

        .hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
        .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 800px; margin-inline: auto; }
        .hero-btns { display: flex; gap: 15px; justify-content: center; }

        /* --- Services --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .service-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 10px;
            border-bottom: 4px solid transparent;
            transition: var(--transition);
        }
        .service-card:hover { border-color: var(--accent); transform: translateY(-5px); }
        .service-card i { font-size: 2rem; color: var(--accent); margin-bottom: 15px; }

        /* --- Testimonials --- */
        .testimonial-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .testimonial-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            font-style: italic;
        }

        /* --- Contact Form --- */
        .contact-flex {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        form { display: grid; gap: 15px; }
        input, select, textarea {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            width: 100%;
        }

        /* --- Modals & Popups --- */
        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            position: relative;
        }
        .close-modal {
            position: absolute;
            top: 15px; right: 20px;
            font-size: 1.5rem; cursor: pointer;
        }

        /* --- Footer --- */
        footer {
            background: var(--primary);
            color: white;
            padding: 60px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-grid h4 { margin-bottom: 20px; color: var(--accent); }
        .footer-grid ul { list-style: none; }
        .footer-grid ul li { margin-bottom: 10px; }
        .footer-grid a { color: #ccc; text-decoration: none; }
        .copyright { text-align: center; border-top: 1px solid #444; padding-top: 20px; font-size: 0.8rem; }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .nav-links { display: none; }
            .contact-flex { grid-template-columns: 1fr; }
        }
    