:root {
    --primary-color: #2e7d32;
    --secondary-color: #1b5e20;
    --accent-color: #81c784;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand i {
    color: var(--accent-color);
    margin-right: 8px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--primary-color) !important;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 60px 0;
}

.hero-section .btn {
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-section .btn-light {
    background: var(--text-light);
    color: var(--primary-color);
    border: none;
}

.hero-section .btn-light:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.hero-section .btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.banner-image {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

/* Services Section */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

/* Service Images */
.service-item img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.service-item {
    margin-bottom: 4rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-list i {
    margin-right: 10px;
}

/* How It Works */
.step-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Page Header */
.page-header {
    padding: 3rem 0;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

/* Booking Form */
.booking-form {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-section-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

/* Steps in Right Column */
.how-it-works .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.how-it-works .step:last-child {
    margin-bottom: 0;
}

.how-it-works .step-number {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1rem;
}

.how-it-works .step-content {
    flex-grow: 1;
}

.how-it-works .step-content h5 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.how-it-works .step-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-author h5 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
}

/* About Page */
.about-section img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.team-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-color);
}

.team-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-card .text-muted {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.mission-points {
    padding: 1rem;
}

.mission-item {
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mission-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mission-item i {
    color: var(--primary-color);
}

/* Form Validation Styles */
.form-control:invalid,
.form-select:invalid {
    border-color: #dc3545;
}

.form-control:valid,
.form-select:valid {
    border-color: var(--primary-color);
}

/* Material Checkboxes */
.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* WhatsApp Button */
.popup .whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border: none;
}

.popup .call-btn {
    background-color: #007bff; /* Bootstrap primary blue */
    color: white;
    border: none;
}

.popup .btn:hover {
    width: auto;
    padding: 0 15px;
    transition: width 0.3s ease;
}

.popup .whatsapp-btn:hover::after {
    content: ' Whatsapp Us';
}

.popup .call-btn:hover::after {
    content: ' Call Us';
}

.popup .toggle-btn:hover::after {
    content: ' Hide';
}

.popup .toggle-btn::after {
    content: ' Message';
}

/* Hero Section Buttons */
.cta-buttons {
    display: flex;
    justify-content: space-between;
}

.cta-buttons .btn {
    flex: 1;
    margin-right: 10px;
    padding: 10px 20px;
}

.cta-buttons .btn:last-child {
    margin-right: 0;
}

/* Language Popup Styles */
.language-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.language-popup-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.language-popup h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.language-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.language-buttons .btn {
    min-width: 120px;
}

/* Popup Button Styles */
.popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.popup .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: none;
    transition: none;
    transform: none !important;
    box-shadow: none !important;
    overflow: hidden;
    font-size: 0 !important;
    text-indent: -9999px;
    white-space: nowrap;
}

.popup .btn * {
    text-indent: 0;
}

.popup .btn i {
    font-size: 20px;
    line-height: 1;
}

.popup .btn:hover,
.popup .btn:focus,
.popup .btn:active {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
}

.popup .btn:hover::after,
.popup .btn:focus::after,
.popup .btn:active::after,
.popup .btn::after {
    display: none !important;
    content: none !important;
}

.popup .btn i {
    font-size: 20px;
    line-height: 1;
}

.popup .whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.popup .call-btn {
    background-color: #007bff;
    color: white;
}

.popup .btn {
    overflow: visible;
}

.popup .btn span {
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    display: none;
    white-space: nowrap;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.popup .btn:hover span {
    display: block;
}

.popup .btn i {
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.popup .btn:hover {
    transform: none;
    box-shadow: none;
}

.popup .whatsapp-btn span {
    content: ' Whatsapp Us';
}

.popup .call-btn span {
    content: ' Call Us';
}

.popup .toggle-btn span {
    content: ' Message';
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .banner-image {
        margin-top: 2rem;
    }

    .service-card, .step-card {
        margin-bottom: 1rem;
    }

    .booking-form {
        margin-bottom: 2rem;
    }
    
    .how-it-works .step {
        padding-left: 0;
    }
}
