:root {
    --primary-color: #1E4D2B;
    --secondary-color: #C9A961;
    --dark-color: #122117;
    --light-color: #f5f5f0;
    --text-color: #334155;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
}

/* Base styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(--text-color); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { color: var(--secondary-color); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation Bar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 80px; width: auto; object-fit: contain; }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-menu a { color: var(--text-color); font-weight: 500; transition: color 0.3s; }
.nav-menu a:hover { color: var(--primary-color); }

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 20px 80px;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('images/Background1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero-tagline { font-size: 1.4rem; font-style: italic; opacity: 0.9; margin-bottom: 1.5rem; }
.hero-stats { display: flex; justify-content: center; gap: 2rem; margin: 3rem 0; flex-wrap: wrap; }
.stat-item {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    flex: 1;
    min-width: 180px;
}
.stat-item h3 { font-size: 3rem; font-weight: bold; }
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }

/* Content Sections */
section { padding: 80px 20px; }
section h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; font-weight: 700; color: var(--dark-color); }

.about, .gallery, .success-section { background: var(--white); }
.services, .contact { background: var(--light-color); }

.about { text-align: center; }
.about p { max-width: 900px; margin-left: auto; margin-right: auto; }

.about-name { font-size: 2rem; color: var(--primary-color); }
.about-title { font-size: 1.2rem; color: var(--secondary-color); font-weight: 600; }
.core-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; text-align: left;}
.value-item { background: var(--light-color); padding: 1.5rem; border-radius: 10px; border-left: 4px solid var(--primary-color); }
.value-item h4 { color: var(--primary-color); }

.section-intro { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: var(--white); padding: 2rem; border-radius: var(--border-radius-lg); text-align: center; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 5px 15px var(--shadow-color); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.service-icon svg { width: 48px; height: 48px; color: var(--primary-color); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.5rem; color: var(--dark-color); }

.success-stories-container, .testimonials-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.story-card { background: var(--light-color); padding: 2rem; border-radius: 10px; border-top: 4px solid var(--primary-color); }
.story-card h3 { color: var(--primary-color); }
.testimonials-title { margin-top: 4rem; }
.testimonial-card { background: var(--primary-color); color: var(--white); padding: 2rem; border-radius: 10px; }
.client-name { font-weight: 600; color: var(--secondary-color); font-style: italic; margin-top: 1rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

.contact { text-align: center; }
.contact-form { max-width: 600px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea { padding: 12px; border: 2px solid #e2e8f0; border-radius: 5px; font-size: 1rem; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary-color); }

/* Footer */
.footer { background: var(--dark-color); color: var(--white); padding: 3rem 20px 1.5rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; text-align: left;}
.footer-section h3, .footer-section h4 { color: var(--secondary-color); margin-bottom: 1rem; }
.footer-section p { margin-bottom: 0.5rem; opacity: 0.9; display: flex; align-items: center; gap: 10px; }
.footer-section a { color: var(--white); }
.footer-section a:hover { color: var(--secondary-color); }
.footer-icon { width: 16px; height: 16px; stroke: var(--secondary-color); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 1.5rem; text-align: center; }
.social-links { display: flex; gap: 1.5rem; justify-content: center; }

/* Z-INDEX FIXES */
.lightbox { display: none; position: fixed; z-index: 2000; padding-top: 60px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); }
.lightbox-content { margin: auto; display: block; width: 80%; max-width: 700px; }
.lightbox-close { position: absolute; top: 15px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; }

.whatsapp-float { position: fixed; z-index: 1010; bottom: 30px; right: 30px; background-color: #25D366; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: transform 0.3s ease; }
.whatsapp-float img { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: translateY(-3px); }

