:root {
    --primary-green: #1a9a5a;
    --secondary-orange: #ff7b0f;
    --light-bg: #fff6e8;
    --text-dark: #333333;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.text-center {
    text-align: center;
}

.custom-hr {
    width: 10%;
    margin: 0 auto;
    height: 5px;
    background-color: var(--secondary-orange);
    border: none;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--secondary-orange);
    position: relative;
}

/* Navbar Styles - Structured & Professional */ 
.navbar-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.navbar-container {
    background-color: var(--light-bg);
    border-radius: 60px;
    padding: 5px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1350px;
    box-shadow: 0 10px 30px rgba(232, 227, 227, 0.08);
    transition: var(--transition);
}

.logo-wrapper {
    flex-shrink: 0;
}

.logo-wrapper img {
    height: 90px;
    width: auto;
    display: block;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-grow: 1;
    margin-left: 20px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
    margin: 0 auto;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-dark);
    white-space: nowrap;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 0;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
    z-index: 1001;
}

.btn {
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #147a46;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(26, 154, 90, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-orange);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 157, 28, 0.3);
}

/* Hero Slider Styles */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    /* background: linear-gradient(135deg, #fff9f1 0%, #ffffff 100%); */
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000000;
}

.hero-content p {
    font-size: 0.9rem;
    color: #141313;
    font-weight: 600;
    margin-bottom: 25px;
    max-width: 500px;
}

.hero-content hr {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-orange);
    border: none;
    border-radius: 4px;
    margin-bottom: 35px;
    margin-left: 0;
}

.hero-btns {
    display: flex;
    padding: 0px;
    margin-top: 20px;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Services Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(26, 154, 90, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card p {
    color: #777;
    font-size: 0.95rem;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-info .logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 300px;
}

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

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-green);
}

.footer-links h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    opacity: 0.8;
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

/* Page Header Styles */
.page-header {
    background-color: var(--light-bg);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-orange);
}

.stat-item .label {
    font-weight: 600;
    color: #777;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(26, 154, 90, 0.1);
}

.w-100 {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-green);
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-card h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive - Structured Progression */

/* Desktop refinements - handle smaller laptops */
@media (max-width: 1250px) {
    .nav-content {
        margin-left: 20px;
        gap: 20px;
    }
    .nav-links {
        gap: 20px;
    }
}

/* Switch to Mobile Menu before everything breaks */
@media (max-width: 1100px) {
    .menu-toggle {
        display: block;
    }

    .nav-content {
        position: absolute;
        top: calc(100% + 15px);
        left: 20px;
        right: 20px;
        background: var(--light-bg);
        flex-direction: column;
        padding: 40px;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        display: none; /* Controlled by JS via .active */
        margin-left: 0;
        gap: 30px;
    }

    .nav-content.active {
        display: flex;
        animation: slideDown 0.4s ease forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        padding-top: 25px;
        border-top: 1px solid rgba(0,0,0,0.08);
    }

    .nav-actions .btn {
        width: 100%;
    }
}

/* Sections & General Responsive */
@media (max-width: 992px) {
    .hero-container, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p, .about-content p {
        margin: 0 auto 35px;
    }
    .hero-btns, .stats {
        justify-content: center;
    }
    .hero-image {
        display: none;
    }
    .contact-grid {
        flex-direction: column-reverse;
        display: flex;
    }
}

@media (max-width: 768px) {
    .navbar-wrapper {
        top: 10px;
    }
    .navbar-container {
        padding: 5px 20px;
    }
    .logo-wrapper img {
        height: 60px;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}
