/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #B4A166;
    --deep-green: #2E523A;
    --black: #000000;
    --charcoal: #1C1C1C;
    --white: #F5F5F2;
    --soft-gray: #D1D1C7;
    --text-dark: #333333;
    --text-light: #666666;
    --sage-green: #8FA388;
    --success-green: #5A8F6A;
    --error-red: #A64B4B;
    --bg-videos: #F5F5F2;
    --border-light: #D1D1C7;
    --success-bg: #e8f0ea;
    --success-text: #2E523A;
    --success-border: #5A8F6A;
    --error-bg: #f0e0e0;
    --error-text: #A64B4B;
    --error-border: #c98a8a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 25px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle .material-icons {
    color: var(--text-dark);
    font-size: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-links a.cta-button {
    background: var(--primary-green);
    color: #3E3213;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links a.cta-button:hover {
    background: var(--deep-green);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button {
    background: var(--primary-green);
    color: #3E3213;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background: var(--deep-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Service Hero Section */
.service-hero {
    position: relative;
    background: linear-gradient(135deg, var(--deep-green), var(--black));
    padding: 140px 0 80px;
    margin-top: 70px;
	text-align: center;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('fertilization-hero-bg.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.service-hero-title {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-hero-subtitle {
    color: var(--primary-green);
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Service Content Section */
.service-content {
    padding: 100px 0;
    background: var(--white);
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-image {
    position: relative;
    position: sticky;
    top: 120px;
}

.service-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: var(--black);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-badge .material-icons {
    font-size: 24px;
}

.service-text {
    padding: 20px 0;
}

.service-icon-header {
    margin-bottom: 20px;
}

.service-icon-header .material-icons {
    font-size: 64px;
    color: var(--primary-green);
}

.service-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    background: var(--soft-gray);
    padding: 35px;
    border-radius: 10px;
    margin: 40px 0;
}

.service-features h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-features ul li:last-child {
    margin-bottom: 0;
}

.service-features .material-icons {
    color: var(--primary-green);
    font-size: 24px;
    flex-shrink: 0;
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background: var(--soft-gray);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.related-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--soft-gray);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.related-card .material-icons {
    font-size: 64px;
    color: var(--primary-green);
}

.related-card h3 {
    font-size: 20px;
    color: var(--text-dark);
}

.learn-more-arrow {
    color: var(--deep-green);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.related-card:hover .learn-more-arrow {
    transform: translateX(5px);
    color: var(--primary-green);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-icon {
    height: 70px;
    width: auto;
    margin-bottom: 12px;
    display: block;
}

.footer-logo h2 {
    color: var(--white);
    font-size: 23px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-green);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-contact a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        padding: 20px 0;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: left 0.3s ease;
        gap: 20px;
    }

    .logo img {
        height: 36px;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .service-hero-title {
        font-size: 36px;
    }

    .service-hero-subtitle {
        font-size: 18px;
    }

    .service-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-image {
        position: relative;
        top: 0;
    }

    .service-image img {
        height: 400px;
    }

    .service-text h2 {
        font-size: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-icon {
        height: 45px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 15px 0;
    }

    .logo img {
        height: 32px;
    }

    .service-hero {
        padding: 90px 0;
    }

    .service-hero-title {
        font-size: 28px;
    }

    .service-hero-subtitle {
        font-size: 16px;
    }

    .service-content {
        padding: 60px 0;
    }

    .service-image img {
        height: 300px;
    }

    .service-text h2 {
        font-size: 26px;
    }

    .service-description {
        font-size: 16px;
    }

    .service-features {
        padding: 25px;
    }

    .service-features h3 {
        font-size: 20px;
    }

    .service-features ul li {
        font-size: 15px;
    }

    .service-cta {
        padding: 30px 20px;
    }

    .cta-button-large {
        padding: 15px 30px;
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .related-services {
        padding: 60px 0;
    }
}