/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* --- CSS Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F7F5F1;
    color: #1E293B;
}

/* --- Accessibility Utilities (NEW) --- */
.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;
}

/* --- Header & Navigation --- */
.header {
    background-color: #65A30D;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.contact-btn {
    background-color: #65A30D;
    color: white;
    border: 2px solid white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
    background-color: white;
    color: #65A30D;
}

/* --- Hero Section --- */
.hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding: 4rem 5%;
    min-height: 85vh;
    gap: 2rem;
}

.hero-text {
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-text .contact-btn-main {
    background-color: #65A30D;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    border: 2px solid #65A30D;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-text .contact-btn-main:hover {
    background-color: #558b0b;
}

.collage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    position: relative;
    width: 100%;
    max-width: 500px; /* Control max size */
    margin: auto;
    aspect-ratio: 1 / 1; /* Make the container square */
}

.quadrant {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.quadrant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.quadrant img:hover {
    transform: scale(1.1); /* Clean zoom-in effect */
}

.yellow {
    background-color: #FBBF24;
}

.logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Services Section --- */
.services-section {
    padding: 3rem 5%;
    background-color: #65A30D;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.services-section .section-subtitle {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
}

.service-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-number {
    position: absolute;
    top: -0.2em;
    right: 0.3em;
    font-size: 6rem;
    font-weight: 700;
    color: #FBBF24;
    opacity: 0.15;
    z-index: 1;
    line-height: 1;
}

.service-card h3,
.service-card p,
.service-card ul {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.card-tagline {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    color: #475569;
}

.service-card li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-card li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #65A30D;
    font-weight: 600;
}

/* --- About Section --- */
.about-section {
    padding: 3rem 5%;
    background-color: #F7F5F1;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #65A30D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.about-header .section-title {
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-text h3 {
    font-size: 2rem;
    color: #1E293B;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.features-list li {
    color: #475569;
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    padding-left: 1.5em;
    position: relative;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #65A30D;
    font-weight: 900;
    font-size: 1.2em;
    line-height: 1;
}

.mission-values-section {
    text-align: center;
    margin-bottom: 5rem;
}

.mission-values-section h3 {
    font-size: 2rem;
    color: #1E293B;
    margin-bottom: 1.5rem;
}

.mission-values-section p {
    max-width: 800px;
    margin: 0 auto 1rem auto;
    color: #475569;
    line-height: 1.8;
}

.values-intro {
    font-weight: 600;
    color: #1E293B;
    margin-top: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.value-card {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    font-size: 1.1rem;
    color: #1E293B;
    border-left: 5px solid #65A30D;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-card span {
    display: block;
    font-weight: 400;
    font-size: 0.95rem;
    color: #475569;
    margin-top: 0.5rem;
}

.why-choose-section {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why-choose-section h3 {
    font-size: 2rem;
    color: #1E293B;
    margin-bottom: 1.5rem;
}

.why-choose-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    color: #475569;
    line-height: 1.8;
}

.final-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E293B;
}

/* --- Contact Section --- */
.contact-section {
    padding: 3rem 5%;
    background-color: #65A30D;
    color: #FFFFFF;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-section .section-title {
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.contact-section .section-subtitle {
    opacity: 0.9;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 4px;
}

.contact-text strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-text p {
    line-height: 1.6;
    opacity: 0.9;
}

.contact-details a {
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-details a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-form-container {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #1E293B;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: #65A30D;
    box-shadow: 0 0 0 3px rgba(101, 163, 13, 0.2);
}

.submit-btn {
    display: inline-block;
    width: 100%;
    background-color: #65A30D;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #558b0b;
}

/* Styles for Success Message (NEW) */
#success-message h3 {
    color: #1E293B;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#success-message p {
    color: #475569;
    font-size: 1.1rem;
}

/* --- Footer (NEW) --- */
.site-footer {
    background-color: #f1f5f9;
    color: #475569;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    .hero {
        padding: 3rem 4%;
    }
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .about-grid.reverse .about-image {
        grid-row: 1;
    }

    .about-header {
        margin-bottom: 3rem;
    }

    .about-text h3,
    .mission-values-section h3,
    .why-choose-section h3 {
        font-size: 1.8rem;
    }

    .why-choose-section {
        padding: 2rem;
    }

    .values-grid {
        gap: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 4%;
    }
    .nav-links {
        display: none;
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        padding-right: 0;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .collage-container {
        margin-top: 2rem;
        gap: 10px;
    }
    .logo-center {
        width: 90px;
        height: 90px;
    }
}
