:root {
    --primary-color: #436a37;  /* Dark green */
    --secondary-color: #a98307; /* Gold */
    --background-color: #f9f8f4; /* Off-white */
    --text-color: #333333;
    --accent-color: #6c9b30; /* Light green */
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.language-switch {
    margin-left: 2rem;
}

.lang-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background-color: rgba(67, 106, 55, 0.1);
}

.lang-btn span {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.lang-btn span.active {
    opacity: 1;
    color: var(--secondary-color);
    font-weight: 700;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    margin-right: 2rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 2rem;
}

.desktop-nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.desktop-nav ul li a:hover {
    color: var(--secondary-color);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1000;
    transition: height 0.4s ease;
}

.mobile-nav.show {
    height: 100vh;
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    list-style: none;
    padding: 80px 0 0 0;
}

.mobile-nav ul li {
    margin: 1rem 0;
    text-align: center;
    width: 100%;
}

.mobile-nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    display: block;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: var(--secondary-color);
    background-color: rgba(67, 106, 55, 0.05);
}

.mobile-lang {
    margin-top: 2rem !important;
}

.mobile-lang-btn {
    margin: 0 auto;
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 1s ease;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    gap: 2rem;
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero h3 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .slider-navigation {
        bottom: 20px;
    }
}

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

section {
    padding: 5rem 2rem;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.section-title h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(169, 131, 7, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: -250px;
    left: -250px;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    position: relative;
    padding: 2rem 0;
}

.about-text {
    flex: 1.2;
    min-width: 300px;
    order: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid rgba(67, 106, 55, 0.2);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    flex: 0.8;
    min-width: 300px;
    order: 2;
}

.about-image-container {
    position: relative;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: all 0.3s ease;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--secondary-color);
    z-index: -1;
    transform: rotate(-2deg);
}

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

.about-image-container:hover::before {
    transform: rotate(0deg);
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    display: block;
}

.about-highlight {
    background-color: rgba(169, 131, 7, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 3px solid var(--secondary-color);
}

.about-highlight h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-highlight h4 i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.about-highlight ul {
    list-style: none;
    margin-left: 1rem;
}

.about-highlight li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.about-highlight li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column-reverse;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin: 0 auto;
        max-width: 500px;
    }
}

.services {
    background-color: #f1f1eb;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(67, 106, 55, 0.05);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(108, 155, 48, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 0 0 0 100px;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(67, 106, 55, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--secondary-color), #d6a10a);
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.75rem;
}

.service-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), transparent);
}

.service-card p {
    color: #555;
    line-height: 1.7;
}

.vision-mission {
    background-color: #f9f7f2;
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(67, 106, 55, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 1;
}

.vision-mission::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(169, 131, 7, 0.05);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    z-index: 1;
}

.vision-mission .container {
    position: relative;
    z-index: 2;
}

.vision-mission-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.vision, .mission {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 450px;
}

.vision:hover, .mission:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.vision::before, .mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.vision::before {
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.mission::before {
    background: linear-gradient(to bottom, var(--secondary-color), #d6a10a);
}

.vision h4, .mission h4 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vision h4 {
    color: var(--primary-color);
}

.mission h4 {
    color: var(--secondary-color);
}

.vision h4 i, .mission h4 i {
    background-color: rgba(67, 106, 55, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission h4 i {
    background-color: rgba(169, 131, 7, 0.1);
}

.vision p, .mission p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 2px dotted rgba(67, 106, 55, 0.3);
}

.mission p {
    border-left: 2px dotted rgba(169, 131, 7, 0.3);
}

.contact {
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(169, 131, 7, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    min-width: 300px;
}

.contact-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-card p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-container h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}

.contact-form-container h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(169, 131, 7, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.form-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 106, 55, 0.2);
}

.map-container {
    margin-top: 3rem;
}

.map-container h4 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.map-container h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    
    .map {
        height: 350px;
    }
}

footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.social-links a {
    display: inline-block;
    color: var(--white);
    margin-right: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.bottom-bar {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============== RESPONSIVE STYLING =============== */
/* Tablet Styles (768px - 991px) */
@media screen and (max-width: 992px) {
    .header-content {
        padding: 1rem 1.5rem;
    }
    
    .logo img {
        height: 70px;
        margin-right: 1rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .desktop-nav ul li {
        margin-left: 1.2rem;
    }
    
    .desktop-nav ul li a {
        font-size: 1rem;
    }
    
    .language-switch {
        margin-left: 1rem;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .hero h3 {
        font-size: 2rem;
    }
    
    .section-title h3 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    .vision, .mission {
        padding: 2rem;
    }
    
    /* Enable Hamburger Menu for Tablets */
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .header-content {
        justify-content: space-between;
    }
    
    .language-switch {
        order: 2;
    }
}

/* Mobile Styles (576px - 767px) */
@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    nav ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 0.5rem;
    }
    
    .language-switch {
        margin: 1rem 0 0 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero h3 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 1.5rem;
        width: 90%;
    }
    
    .section-title h3 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-content {
        flex-direction: column;
        align-items: center;
    }
    
    .vision, .mission {
        padding: 2rem;
        width: 100%;
    }
    
    .map {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}

/* Small Mobile Styles (575px and below) */
@media screen and (max-width: 576px) {
    .logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logo img {
        margin-right: 0;
        margin-bottom: 0.5rem;
        height: 60px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero h3 {
        font-size: 1.3rem;
    }
    
    .section-title h3 {
        font-size: 1.8rem;
    }
    
    .slider-navigation {
        gap: 1rem;
    }
    
    .hero-content {
        width: 95%;
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}