@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-teal: #2C7A7B;
    --secondary-green: #68D397;
    --light-green: #C6F6D5;
    --light-teal: #81E6D9;
    --off-white: #F7FAFC;
    --dark-grey: #4A5568;
    --alert-red: #E53E3E;
    --white: #FFFFFF;
    
    --shadow-sm: 0px 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0px 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0px 8px 15px rgba(0, 0, 0, 0.1);
    
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.6s ease-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--off-white);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-grey);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

.bg-light-green {
    background-color: var(--light-green);
}

.bg-off-white {
    background-color: var(--off-white);
}

.bg-white {
    background-color: var(--white);
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-teal);
}

.text-secondary {
    color: var(--secondary-green);
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-teal);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-desktop a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-grey);
    position: relative;
    padding: 0.5rem 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-teal);
    transition: width var(--transition-fast);
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary-teal);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-grey);
    transition: all var(--transition-fast);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background-color: var(--white);
    z-index: 1002;
    padding: 2rem;
    transition: right var(--transition-normal);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-grey);
}

.mobile-nav {
    margin-top: 3rem;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-grey);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-green);
}

.mobile-nav a:hover {
    color: var(--primary-teal);
}

.mobile-menu-cta {
    margin-top: 1.5rem;
}

.mobile-contact-info {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-green);
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-teal);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--light-teal);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-green);
    color: var(--dark-grey);
}

.btn-secondary:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
}

.btn-outline:hover {
    background-color: var(--primary-teal);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 122, 123, 0.85) 0%, rgba(104, 211, 151, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
    padding: 2rem 1.5rem;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-content .btn-primary {
    background-color: var(--white);
    color: var(--primary-teal);
}

.hero-content .btn-primary:hover {
    background-color: var(--light-green);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-normal);
}

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

.about-content h2 {
    margin-bottom: 1rem;
    color: var(--primary-teal);
}

.about-content p {
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background-color: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--dark-grey);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-teal);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-teal);
}

.service-card h3 {
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    transition: gap var(--transition-fast);
}

.service-card .learn-more:hover {
    gap: 0.75rem;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    background-color: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.why-choose-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-choose-image img {
    width: 100%;
    height: auto;
}

.why-choose-content h2 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-teal);
}

.benefit-item h4 {
    color: var(--dark-grey);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--dark-grey);
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background-color: var(--light-green);
}

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

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-teal);
    line-height: 0;
    display: block;
    margin-bottom: 1rem;
}

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

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-teal);
    background: transparent;
    color: var(--primary-teal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.testimonial-btn:hover {
    background-color: var(--primary-teal);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-teal);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active {
    background-color: var(--primary-teal);
    transform: scale(1.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-green) 100%);
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-primary {
    background-color: var(--white);
    color: var(--primary-teal);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--light-green);
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-teal);
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 122, 123, 0.9) 0%, rgba(104, 211, 151, 0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 2rem 1.5rem;
    max-width: 800px;
}

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
    padding: 4rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-grid.reverse .service-detail-image {
    order: -1;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

.service-detail-content h2 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.service-detail-content > p {
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
}

.service-detail-list {
    margin-bottom: 1.5rem;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--dark-grey);
}

.service-detail-list li svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-green);
    flex-shrink: 0;
}

/* ===== TEAM SECTION ===== */
.team-section {
    background-color: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-teal);
}

.team-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    color: var(--primary-teal);
    margin-bottom: 0.25rem;
}

.team-info .title {
    color: var(--secondary-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--dark-grey);
    margin: 0;
}

/* ===== MISSION & VALUES ===== */
.mission-section {
    background-color: var(--white);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.mission-content > p {
    color: var(--dark-grey);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.value-item {
    display: flex;
    gap: 1rem;
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-teal);
}

.value-item h4 {
    color: var(--dark-grey);
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* ===== APPROACH ===== */
.approach-section {
    background-color: var(--light-green);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.approach-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.approach-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-teal);
}

.approach-card h3 {
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}

.approach-card p {
    color: var(--dark-grey);
    margin: 0;
    font-size: 0.95rem;
}

/* ===== PATIENT RESOURCES ===== */
.resources-section {
    background-color: var(--white);
}

.resource-card {
    background-color: var(--off-white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all var(--transition-fast);
}

.resource-card:hover {
    box-shadow: var(--shadow-md);
}

.resource-card h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.resource-card h3 svg {
    width: 28px;
    height: 28px;
    color: var(--secondary-green);
}

.resource-card p {
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.resource-list {
    margin-bottom: 1rem;
}

.resource-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-teal);
    font-weight: 500;
}

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

.resource-list a svg {
    width: 18px;
    height: 18px;
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
    background-color: var(--off-white);
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-grey);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-teal);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--dark-grey);
    line-height: 1.7;
}

/* ===== CAREERS ===== */
.careers-section {
    background-color: var(--white);
}

.careers-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.careers-intro h2 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background-color: var(--off-white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-fast);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-teal);
}

.benefit-card h4 {
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--dark-grey);
    margin: 0;
}

/* Job Listings */
.job-listings {
    margin-top: 3rem;
}

.job-listings h3 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.job-item {
    background-color: var(--off-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.job-header {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
}

.job-header:hover {
    background-color: var(--light-green);
}

.job-header h4 {
    color: var(--dark-grey);
    margin: 0;
}

.job-header .job-type {
    font-size: 0.85rem;
    color: var(--primary-teal);
    font-weight: 600;
    background-color: var(--light-teal);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.job-details-content {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--light-green);
}

.job-details p {
    color: var(--dark-grey);
    margin: 1rem 0;
}

/* Application Process */
.application-process {
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--light-green);
    border-radius: 12px;
}

.application-process h3 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark-grey);
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--dark-grey);
    margin: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    background-color: var(--white);
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-teal);
}

.contact-item h4 {
    color: var(--dark-grey);
    margin-bottom: 0.25rem;
}

.contact-item p, 
.contact-item a {
    color: var(--dark-grey);
    font-size: 0.95rem;
    margin: 0;
}

.contact-item a:hover {
    color: var(--primary-teal);
}

/* Contact Form */
.contact-form-container {
    background-color: var(--off-white);
    border-radius: 12px;
    padding: 2rem;
}

.contact-form-container h3 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
}

.form-group label .required {
    color: var(--alert-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-green);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-grey);
    background-color: var(--white);
    transition: border-color var(--transition-fast);
}

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

.form-group input.error,
.form-group textarea.error {
    border-color: var(--alert-red);
}

.error-text {
    color: var(--alert-red);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.has-error .error-text {
    display: block;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 60px;
    height: 60px;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.form-success h4 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: var(--off-white);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-about .logo {
    margin-bottom: 1rem;
}

.footer-about .logo-text {
    color: var(--white);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--primary-teal);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

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

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Small (Mobile - 320px+) */
@media (min-width: 320px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
}

/* Medium (Tablet - 768px+) */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Large (Desktop - 1024px+) */
@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-actions {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    h1 { font-size: 3rem; }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .approach-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Extra Large (1280px+) */
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}
