/* General Styles */
:root {
    --primary-green: #2E5D32;   /* Darker forest green */
    --secondary-green: #1B5E20; /* Deep forest green */
    --accent-red: #C62828;      /* Deeper emergency red */
    --dark-gray: #212121;       /* Nearly black */
    --medium-gray: #484848;     /* Charcoal */
    --light-gray: #9E9E9E;      /* Medium gray */
    --off-white: #F5F5F5;       /* Off-white for contrast */
    --body-font: 'Roboto', sans-serif;
    --heading-font: 'Russo One', sans-serif;
    --secondary-heading-font: 'Montserrat', sans-serif;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    --border-radius: 4px;       /* Less rounded, more angular */
    --overlay-bg: rgba(33, 33, 33, 0.85); /* Darker overlay background for better contrast */
    --content-bg: rgba(245, 245, 245, 0.9); /* More opaque content background for readability */
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    border: none;
    text-align: center;
    font-family: var(--heading-font);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    background: linear-gradient(135deg, #2E5932, #1B3B1A);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1B3B1A, #2E5932);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background-color: transparent;
    position: relative;
    cursor: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 0.5em;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-green);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

/* Background */
.grass-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('background.gif') center/cover no-repeat;
    opacity: 0.8; /* Increased opacity to make it more prominent */
}

/* Header & Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    width: 250px; /* EVEN BIGGER logo */
    height: auto;
    filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.5));
    transform: translateZ(50px);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(2.5) translateZ(50px);
}

.tagline {
    margin-left: 15px;
    font-weight: 700;
    color: var(--off-white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    font-family: var(--heading-font);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

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

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

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    display: flex;
    margin-left: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    color: var(--off-white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-container {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Welcome Circle */
.welcome-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-red));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.3;
    padding: 20px;
    margin: 0 auto;
    transition: all 0.3s ease;
    animation: pulse 2.5s infinite, float 6s ease-in-out infinite;
    font-family: var(--heading-font);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.welcome-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-mascot {
    max-width: 100%;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

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

.service-card {
    background-color: var(--content-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-green);
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-green);
    text-align: center;
    font-family: var(--heading-font);
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
}

/* About Section */
.about {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.about-content {
    display: flex;
    align-items: center;
    background-color: var(--content-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image {
    width: 40%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text {
    width: 60%;
    padding: 30px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.subtitle {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.about-text p {
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery {
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 100px 0;
}

.gallery-divider {
    height: 15px;
    background: linear-gradient(to right, var(--primary-green), var(--accent-red), var(--primary-green));
    margin: 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.gallery-background {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.gallery-item.portrait {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transition: transform 0.3s ease;
}

.gallery-caption {
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-family: var(--heading-font);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background-color: var(--content-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-red);
}

.testimonial-card.active {
    display: block;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.location {
    color: var(--light-gray);
    margin-bottom: 15px;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.rating .fa-star {
    color: var(--accent-red);
    font-size: 1.5rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    color: var(--secondary-green);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-green);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: flex;
    gap: 30px;
}

.contact-info {
    flex: 1;
    background-color: var(--content-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-green);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-right: 15px;
}

.contact-item h3 {
    margin-bottom: 5px;
    color: var(--primary-green);
}

.emergency-response {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(198, 40, 40, 0.9);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-red);
}

.emergency-badge {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.emergency-badge i {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-right: 10px;
}

.emergency-badge span {
    font-weight: 700;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.contact-form {
    flex: 1.5;
    background-color: var(--content-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-green);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin-top: 10px;
    font-family: var(--heading-font);
}

/* Footer */
.footer {
    background-color: var(--overlay-bg);
    color: var(--off-white);
    padding: 50px 0 30px; /* Increased top padding */
    position: relative;
    z-index: 2;
    margin-top: 30px; /* Added margin to separate from content above */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--off-white);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-red);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px; /* Increased */
}

.footer-list a {
    color: var(--off-white);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-list a:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-red);
}

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

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-gray);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-red);
    transform: translateY(-5px);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-small {
    width: 120px; /* Increased from 60px */
    height: auto;
    margin-right: 15px;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

/* Popup CTA */
.cta-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cta-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-content {
    background-color: var(--off-white);
    max-width: 500px;
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    text-align: center;
    border-top: 5px solid var(--primary-green);
    border-bottom: 5px solid var(--accent-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 93, 50, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(46, 93, 50, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 93, 50, 0);
    }
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

.popup-content h3 {
    color: var(--accent-red);
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.popup-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.popup-content .highlight {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.popup-btn {
    margin-top: 15px;
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-image {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
    
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 300px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav li {
        margin: 0 0 15px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    /*
Designed & Developed by Lyric | LyriCodes. com
*/

}
