/* Core Layout Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #FAF9F6; /* Eco Cream Neutral Light */
    color: #2F3E46;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #0B4F6C; /* Deep Hydro Blue Primary */
}

/* Header Styling */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1F5F3E; /* Bio Green Secondary */
}

.nav-links a {
    text-decoration: none;
    color: #2F3E46;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #1F5F3E;
}

/* Split-Screen Hero System */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 5%;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4A5568;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Action Buttons Styling */
.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.2s, background-color 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #D0703C; /* Earth Clay Accent */
    color: #ffffff;
    margin-right: 15px;
}

.btn-primary:hover {
    background-color: #B85F2E;
}

.btn-secondary {
    background-color: transparent;
    color: #1F5F3E;
    border: 2px solid #1F5F3E;
}

.btn-secondary:hover {
    background-color: #1F5F3E;
    color: #ffffff;
}

/* Content Page Layout Layouts */
.page-intro {
    text-align: center;
    padding: 60px 10% 20px 10%;
    max-width: 900px;
    margin: 0 auto;
}

.page-intro p {
    font-size: 1.1rem;
    color: #4A5568;
    margin-top: 15px;
}

/* Pricing Table Layout */
.table-container {
    padding: 40px 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.table-subtitle {
    margin-bottom: 20px;
    color: #718096;
    font-size: 0.95rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.pricing-table th {
    background-color: #0B4F6C;
    color: #ffffff;
    text-align: left;
    padding: 15px 20px;
    font-family: 'Montserrat', sans-serif;
}

.pricing-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #E2E8F0;
}

.pricing-table tr:hover {
    background-color: #FAF9F6;
}

.price-highlight {
    font-weight: 600;
    color: #D0703C;
}

/* Status Badges */
.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.available { background-color: #E6FFFA; color: #1F5F3E; }
.status-badge.seasonal { background-color: #EBF8FF; color: #2B6CB0; }
.status-badge.limited { background-color: #FFFAF0; color: #DD6B20; }

/* Services Grid Rules */
.services-container {
    display: flex;
    gap: 25px;
    padding: 30px 5%;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border-left: 4px solid #1F5F3E;
}

.service-card h3 { margin-bottom: 12px; }

/* About Page Split Layout */
.about-hero {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 5%;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
}

.about-content { flex: 1.2; min-width: 300px; }
.about-content h3 { margin: 25px 0 10px 0; color: #1F5F3E; }
.about-image-box { flex: 0.8; min-width: 300px; }
.about-image-box img { width: 100%; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }

.values-section {
    display: flex;
    gap: 30px;
    padding: 40px 5%;
    max-width: 1100px;
    margin: 20px auto 40px auto;
    background: #0B4F6C;
    color: #ffffff;
    border-radius: 12px;
}

.values-section h4 { font-family: 'Montserrat'; font-size: 1.4rem; margin-bottom: 10px; color:#FAF9F6;}
.value-card { flex: 1; }

/* FAQ Layout System */
.faq-container { max-width: 800px; margin: 0 auto 60px auto; padding: 0 5%; }
.faq-item { background: #ffffff; margin-bottom: 12px; border-radius: 6px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); overflow: hidden; }
.faq-question { padding: 18px 20px; font-weight: 600; color: #0B4F6C; background: #FAF9F6; border-bottom: 1px solid #E2E8F0; }
.faq-answer { padding: 18px 20px; color: #4A5568; line-height: 1.5; font-size: 0.95rem; }

/* Form Section Styling Block */
.form-section {
    background-color: #1F5F3E;
    color: #ffffff;
    padding: 60px 5%;
    margin-top: 40px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-wrapper h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.form-wrapper p {
    color: #E2E8F0;
    margin-bottom: 30px;
}

.embedded-form-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
}

.embedded-form-box iframe {
    width: 100%;
    border: none;
    min-height: 500px;
}

/* Footer Compliance Bar Layout */
.main-footer {
    text-align: center;
    padding: 40px 5%;
    background-color: #2F3E46;
    color: #FAF9F6;
}

.main-footer a {
    color: #FAF9F6;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
}

.main-footer a:hover { color: #D0703C; }
.attribution { font-size: 0.85rem; color: #A0AEC0; margin-top: 15px; }

/* Responsive adjustments for screens mobile/tablet */
@media (max-width: 768px) {
    .hero-section, .about-hero {
        flex-direction: column-reverse;
    }
    .hero-content, .about-content {
        padding-right: 0;
        margin-top: 30px;
        text-align: center;
    }
    .btn {
        display: block;
        margin: 10px auto;
    }
    .values-section {
        flex-direction: column;
    }
}

/* Mobile Table Responsiveness */
@media (max-width: 600px) {
    .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table th, .pricing-table td, .pricing-table tr {
        display: block;
        width: 100%;
    }
    .pricing-table thead { display: none; }
    .pricing-table tr { margin-bottom: 15px; border: 1px solid #E2E8F0; border-radius: 6px; background:#fff; }
    .pricing-table td { text-align: right; padding-left: 50%; position: relative; border-bottom: none; }
    .pricing-table td::before { content: attr(data-label); position: absolute; left: 20px; width: 45%; text-align: left; font-weight: 600; color: #0B4F6C; }
}
/* Contact Page Layout Layouts */
.contact-container { padding: 20px 5% 60px 5%; max-width: 1100px; margin: 0 auto; }
.contact-card-grid { display: flex; gap: 30px; flex-wrap: wrap; }
.contact-info-card { flex: 1; min-width: 300px; background: #ffffff; padding: 40px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.02); border-top: 4px solid #0B4F6C; }
.contact-info-card h3 { margin-bottom: 20px; }
.contact-info-card p { margin-bottom: 15px; font-size: 1.05rem; }
.contact-link { color: #1F5F3E; text-decoration: none; font-weight: 600; transition: color 0.2s; }
.contact-link:hover { color: #D0703C; text-decoration: underline; }

/* Gallery System Layout Layouts */
.gallery-container { padding: 20px 5% 60px 5%; max-width: 1100px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.gallery-item { overflow: hidden; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item img:hover { transform: scale(1.05); }
