/* Custom Fonts */
@font-face {
    font-family: 'MADE Evolve Sans';
    src: url('assets/fonts/MADE Evolve Sans Regular (PERSONAL USE).otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'MADE Evolve Sans';
    src: url('assets/fonts/MADE Evolve Sans Medium (PERSONAL USE).otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'MADE Evolve Sans';
    src: url('assets/fonts/MADE Evolve Sans Bold (PERSONAL USE).otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'MADE Evolve Sans';
    src: url('assets/fonts/MADE Evolve Sans Light (PERSONAL USE).otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'MADE Evolve Sans';
    src: url('assets/fonts/MADE Evolve Sans Thin (PERSONAL USE).otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Kathen';
    src: url('assets/fonts/Kathen Font by Situjuh (7NTypes).otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* CSS Variables - Color Palette from Logo */
:root {
    --primary-color: #00BDB6; /* Turquoise from logo */
    --secondary-color: ##666666; /* Gray from logo */
    --accent-color: #A7F3D0; /* Light turquoise */
    --text-dark: #374151;
    --text-light: #6B7280;
    --background-light: #F9FAFB;
    --white: #FFFFFF;
    --border-color: #E5E7EB;
    
    /* Typography */
    --font-primary: 'MADE Evolve Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-accent: 'Kathen', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Button Styles */
.cta-button {
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(29, 181, 132, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(29, 181, 132, 0.3);
}

/* Hero Section */
.hero {
    padding: 140px 0 40px;
    background: linear-gradient(135deg, var(--background-light) 0%, rgba(167, 243, 208, 0.1) 100%);
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.hero-text {
    order: 1;
}

.hero-image {
    order: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.hero-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.rating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.rating-stars {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.rating-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: block;
}

.rating-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--background-light);
}

.about-carousel {
    position: relative;
    height: 70vh;
    max-height: 700px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-carousel:hover .carousel-controls {
    opacity: 0.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.about-text {
    padding-right: 2rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-carousel {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
}

.carousel-container:hover {
    box-shadow: none;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.carousel-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background: transparent;
    padding: 0;
    box-sizing: border-box;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-controls {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-carousel:hover .carousel-controls {
    opacity: 0.9;
}

.carousel-controls:hover {
    opacity: 1;
}

.carousel-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    opacity: 0.8;
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
    opacity: 1;
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.1);
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

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

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-form p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Form Styles */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(29, 181, 132, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.footer-text {
    color: var(--text-light);
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .hero-image img {
        max-height: 35vh;
        margin-bottom: 0;
    }
    
    .hero-text {
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        padding-right: 0;
        text-align: center;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-carousel {
        height: 60vh;
        max-height: 500px;
        min-height: 350px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Mobile contact form options styling */
    .form-message.success {
        margin: 1.5rem 0 !important;
        padding: 1.2rem !important;
        border-radius: 16px !important;
        position: relative !important;
        z-index: 100 !important;
    }
    
    .form-message.success > div {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    
    .form-message.success a {
        width: 100% !important;
        max-width: 280px !important;
        padding: 0.9rem 1.5rem !important;
        font-size: 1rem !important;
        margin: 0 auto !important;
    }
    
    .form-message.success p {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Ensure contact form section has enough space */
    .contact {
        padding: 60px 0 !important;
    }
    
    .contact-form {
        margin-top: 2rem !important;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .hero {
        padding: 80px 0 30px;
    }
    
    .hero-image img {
        max-height: 40vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Make contact form submit button more prominent on mobile */
    #contactForm .cta-button[type="submit"] {
        font-size: 1.1rem !important;
        padding: 1rem 2rem !important;
        margin-top: 1rem !important;
        box-shadow: 0 4px 15px rgba(29, 181, 132, 0.3) !important;
    }
    
    .about-carousel {
        height: 50vh;
        max-height: 400px;
        min-height: 300px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}



/* Page Hero Styles */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--background-light) 0%, rgba(167, 243, 208, 0.1) 100%);
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Services Detail Styles */
.services-detail {
    padding: var(--section-padding);
    background: var(--white);
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-detail-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.service-detail-icon {
    font-size: 3rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.service-detail-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-detail-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-detail-content {
    padding: 2rem;
}

.service-detail-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem 0;
}

.service-detail-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-text li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-box {
    background: var(--background-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.info-box h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-box p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Team Styles */
.team-hero-image {
    padding: 2rem 0;
    background: var(--background-light);
}

.team-main-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.team-intro {
    padding: var(--section-padding);
    background: var(--white);
}

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

.team-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-members {
    padding: var(--section-padding);
    background: var(--background-light);
}

.team-category {
    margin-bottom: 4rem;
}

.team-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

.team-member-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.team-member-image {
    position: relative;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: 2rem;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member-specialization {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.team-member-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-member-credentials {
    background: var(--background-light);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.team-member-credentials p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.support-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-member-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.support-member-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.support-member-card ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.support-member-card li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Team Values */
.team-values {
    padding: var(--section-padding);
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Stats */
.team-stats {
    padding: var(--section-padding);
    background: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.stat-card .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: var(--background-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: var(--background-light);
}

/* Location Section */
.location {
    padding: var(--section-padding);
    background: var(--white);
}

.location .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.location .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.location-photos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-photo-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.location-photo {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: var(--transition);
}

.location-photo:hover {
    transform: scale(1.05);
}

.map-container {
    margin: 2rem auto;
    max-width: 900px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
}

.reviews-carousel {
    position: relative;
    margin: 3rem 0 2rem;
    padding: 0 60px;
}

.reviews-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.reviews-container {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.review-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: calc((100% - 48px) / 3);
    box-sizing: border-box;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .review-card {
        width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .review-card {
        width: 100%;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--secondary-color);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    font-size: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
}

.google-reviews-link {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.google-reviews-link p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.reviews-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.reviews-link:hover {
    text-decoration: underline;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .team-member-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 0.5rem;
    }
    
    .team-member-image {
        height: auto;
        max-height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--background-light);
        padding: 1rem;
    }
    
    .team-member-image img {
        height: auto;
        max-height: 350px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center;
        border-radius: var(--border-radius);
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-detail-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .team-member-info {
        padding: 1.5rem;
    }
    
    .team-member-image {
        height: auto;
        max-height: 280px;
        padding: 0.5rem;
    }
    
    .team-member-image img {
        max-height: 280px;
    }
    
    .team-member-name {
        font-size: 1.3rem;
    }
    
    .team-member-role {
        font-size: 1rem;
    }
    
    .team-member-specialization {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Language Switcher Styles */
.language-switcher {
    display: flex;
    gap: 5px;
    margin-left: 20px; /* Adjust as needed */
}

.lang-button {
    background: none;
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.lang-button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.lang-button.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .nav-brand .brand-text {
        font-size: 0.9rem;
    }
    
    .nav > .cta-button.primary {
        display: none;
    }
    
    .language-switcher {
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    .mobile-menu-toggle {
        order: 3;
    }
    
    .reviews-carousel {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-btn.prev {
        left: 0;
    }
    
    .carousel-btn.next {
        right: 0;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .reviews-carousel {
        margin-bottom: 1.5rem;
    }
    
    .google-reviews-link {
        margin-top: 0;
    }
}


