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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2f3631;
    background-color: #fefee2;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-dark: #2f3631;
    --primary-bg: #fefee2;
    --yellow: #f8d041;
    --green: #23ec6f;
    --blue: #44ddf5;
    --white: #ffffff;
    --text-opacity: 0.8;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(254, 254, 226, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

/* .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--yellow);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--primary-dark);
} */

.logo-icon img {
    border-radius: 8px;
}

.logo-text-s, .logo-text-m, .logo-text-a {
    font-size: 2.25rem;
    font-weight: bold;
}

.logo-text-s {
    color: var(--yellow);
}

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

.logo-text-a {
    color: var(--blue);
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: x-large;
    background: none;
    border: none;
    font-weight: 500;
    color: var(--primary-dark);
    cursor: pointer;
    transition: opacity 0.2s;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-bg);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

.nav-mobile.show {
    display: flex;
}

.nav-link-mobile {
    background: none;
    border: none;
    font-weight: 500;
    color: var(--primary-dark);
    cursor: pointer;
    text-align: left;
    padding: 0.5rem 0;
    transition: opacity 0.2s;
}

.nav-link-mobile:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 2rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    opacity: 0.8;
}

.bg-triangle {
    top: 8rem;
    left: 5rem;
    width: 16rem;
    height: 16rem;
    background-color: var(--green);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(-15deg);
}

.bg-rectangle {
    bottom: 8rem;
    right: 5rem;
    width: 20rem;
    height: 12rem;
    background-color: var(--yellow);
    border-radius: 1.5rem;
    transform: rotate(12deg);
}

.bg-circle {
    bottom: 5rem;
    left: 8rem;
    width: 14rem;
    height: 14rem;
    background-color: var(--blue);
    border-radius: 50%;
}

.bg-small-circle {
    top: 16rem;
    right: 16rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--green);
    border-radius: 50%;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.hero-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-icon {
    width: 2rem;
    height: 2rem;
}

.hero-icon.green {
    color: var(--green);
}

.hero-icon.blue {
    color: var(--blue);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-dark);
}

.hero-subtitle {
    font-size: clamp(2rem, 6vw, 3.5rem);
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: var(--primary-dark);
    opacity: var(--text-opacity);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--primary-dark);
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-number.yellow {
    color: var(--yellow);
}

.stat-number.green {
    color: var(--green);
}

.stat-number.blue {
    color: var(--blue);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
    opacity: 0.7;
}

/* Counters Section */
.counters {
    padding: 4rem 1.5rem;
}

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

.counter-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    border: 2px solid transparent;
}

.counter-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.counter-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.counter-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.counter-icon:hover {
    transform: scale(1.1);
}

.counter-icon.yellow {
    background-color: var(--yellow);
}

.counter-icon.green {
    background-color: var(--green);
}

.counter-icon.blue {
    background-color: var(--blue);
}

.counter-icon i {
    color: var(--primary-dark);
}

.counter-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.counter-number.yellow {
    color: var(--yellow);
}

.counter-number.green {
    color: var(--green);
}

.counter-number.blue {
    color: var(--blue);
}

.counter-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-dark);
}

/* Section Styles */
.section-header {
    text-align: center;
    justify-items: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.section-description {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--primary-dark);
    opacity: var(--text-opacity);
}

/* About Section */
.about {
    padding: 5rem 1.5rem;
}

.ceo-section {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

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

.ceo-image img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ceo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ceo-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-icon i {
    color: var(--primary-dark);
}

.ceo-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.ceo-title {
    font-size: 1.125rem;
    color: var(--primary-dark);
    opacity: 0.7;
}

.ceo-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--primary-dark);
    opacity: var(--text-opacity);
}

.ceo-quote {
    background: linear-gradient(to right, #ecfdf5, #dbeafe);
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid var(--green);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.quote-icon {
    color: var(--yellow);
    margin-top: 0.25rem;
}

.quote-text {
    font-size: 1.125rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.quote-author {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
    opacity: 0.7;
}

.ceo-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ceo-stat {
    text-align: center;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: var(--primary-bg);
}

.ceo-stat-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.ceo-stat-number.yellow {
    color: var(--yellow);
}

.ceo-stat-number.green {
    color: var(--green);
}

.ceo-stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
    opacity: 0.7;
}

/* Mission, Vision, Values Grid */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.mvv-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.mvv-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mvv-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mvv-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-icon.yellow {
    background-color: var(--yellow);
}

.mvv-icon.green {
    background-color: var(--green);
}

.mvv-icon.blue {
    background-color: var(--blue);
}

.mvv-icon i {
    color: var(--primary-dark);
}

.mvv-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.mvv-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.mvv-description {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    opacity: var(--text-opacity);
}

.mvv-list {
    list-style: none;
}

.mvv-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.mvv-list li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--yellow);
}

/* Expertise Section */
.expertise {
    padding: 5rem 1.5rem;
}

.expertise-sections {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.expertise-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.expertise-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.expertise-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-icon.yellow {
    background-color: var(--yellow);
}

.expertise-icon.green {
    background-color: var(--green);
}

.expertise-icon.blue {
    background-color: var(--blue);
}

.expertise-icon i {
    color: var(--primary-dark);
}

.expertise-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.expertise-subtitle {
    font-size: 1.125rem;
    color: var(--primary-dark);
    opacity: 0.7;
}

.expertise-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--primary-dark);
    opacity: var(--text-opacity);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: var(--primary-bg);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.yellow {
    background-color: var(--yellow);
}

.feature-icon.green {
    background-color: var(--green);
}

.feature-icon.blue {
    background-color: var(--blue);
}

.feature-icon i {
    color: var(--primary-dark);
}

.feature span {
    font-weight: 500;
    color: var(--primary-dark);
}

/* Therapeutic Grid */
.therapeutic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.therapeutic-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    background-color: var(--primary-bg);
}

.therapeutic-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.therapeutic-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.therapeutic-content {
    padding: 1.5rem;
}

.therapeutic-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.therapeutic-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.therapeutic-icon.green {
    background-color: var(--green);
}

.therapeutic-icon i {
    color: var(--primary-dark);
}

.therapeutic-header h4 {
    font-weight: bold;
    font-size: 1.125rem;
    color: var(--primary-dark);
}

.therapeutic-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--primary-dark);
    opacity: var(--text-opacity);
}

/* Compliance Content */
.compliance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.compliance-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    opacity: var(--text-opacity);
}

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

.badge {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid;
    color: var(--primary-dark);
}

.badge.yellow {
    background-color: var(--yellow);
    border-color: var(--yellow);
}

.badge.green {
    background-color: var(--green);
    border-color: var(--green);
}

.badge.blue {
    background-color: var(--blue);
    border-color: var(--blue);
}

.compliance-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.compliance-badge {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: var(--primary-bg);
    text-align: center;
}

.compliance-badge img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    margin: 0 auto 0.75rem;
}

.compliance-badge p {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 1.5rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.reason-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.reason-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.reason-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon.yellow {
    background-color: var(--yellow);
}

.reason-icon.green {
    background-color: var(--green);
}

.reason-icon.blue {
    background-color: var(--blue);
}

.reason-icon i {
    color: var(--primary-dark);
}

.reason-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.reason-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--primary-dark);
    opacity: var(--text-opacity);
}

/* Facilities Section */
.facilities {
    margin-bottom: 5rem;
}

.facilities-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

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

.facility-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.facility-carousel {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 18rem;
    overflow: hidden;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(47, 54, 49, 0.7);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    z-index: 10;
}

.carousel-btn:hover {
    opacity: 0.8;
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: white;
}

.pause-indicator {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    z-index: 10;
}

.facility-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.facility-card p {
    line-height: 1.6;
    color: var(--primary-dark);
    opacity: var(--text-opacity);
}

/* Clients Section */
.clients {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.clients-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.clients-description {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--primary-dark);
    opacity: var(--text-opacity);
}

.clients-scroll {
    overflow: hidden;
}

.clients-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    margin: 0 2rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    background-color: var(--primary-bg);
    color: var(--primary-dark);
    min-width: 150px;
    text-align: center;
    transition: all 0.3s;
}

.client-logo:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 1.5rem;
}

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

.footer-main {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    /* width: 2.5rem;
    height: 2.5rem; */
    background-color: var(--yellow);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: bold;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.footer-badge {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.footer-badge.yellow {
    background-color: var(--yellow);
}

.footer-badge.green {
    background-color: var(--green);
}

.footer-badge.blue {
    background-color: var(--blue);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-link {
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--yellow);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    align-items: center;
}

.contact-icon {
    margin-top: 0.25rem;
}

.contact-icon.yellow {
    color: var(--yellow);
}

.contact-icon.green {
    color: var(--green);
}

.contact-icon.blue {
    color: var(--blue);
}

.footer-contact span,
.footer-contact div {
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.copyright {
    text-decoration: none;
    color: #E73144;
}

.footer-bottom-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Enhanced Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .logo-text-s, .logo-text-m, .logo-text-a {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 80vh;
        padding: 8rem 0 4rem;
    }

    .hero-content {
        max-width: 900px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .expertise-sections {
        gap: 3rem;
    }

    .therapeutic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        padding: 0.75rem;
    }

    /* Logo responsiveness */
    .logo {
        gap: 0.3rem;
    }

    .logo-icon img {
        width: 50px;
        height: 50px;
    }

    .logo-text-s, .logo-text-m, .logo-text-a {
        font-size: 1.3rem;
    }

    /* Navigation */
    .nav-mobile {
        border-radius: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-link-mobile {
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(47, 54, 49, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link-mobile:last-child {
        border-bottom: none;
    }

    .nav-link-mobile:hover {
        background-color: var(--yellow);
        padding-left: 1rem;
        border-radius: 0.5rem;
    }

    /* Hero Section */
    .hero {
        min-height: 70vh;
        padding: 6rem 0 3rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: clamp(1.3rem, 4vw, 2rem);
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn {
        /* width: 100%; */
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 1rem;
        backdrop-filter: blur(10px);
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .stat-label {
        font-size: 0.9rem;
        margin: 0;
    }

    /* Background elements adjustment */
    .bg-triangle,
    .bg-rectangle {
        opacity: 0.3;
        transform: scale(0.7);
    }

    .bg-circle,
    .bg-small-circle {
        opacity: 0.2;
        transform: scale(0.6);
    }

    /* Counters Section */
    .counters-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .counter-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    /* CEO Section */
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .ceo-image {
        order: -1;
        align-self: center;
    }

    .ceo-image img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .ceo-stats {
        justify-content: center;
    }

    /* MVV Grid */
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Expertise Section */
    .expertise-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 0.75rem;
    }

    .therapeutic-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .therapeutic-card {
        max-width: none;
    }

    .compliance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Why Choose Us */
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reason-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    /* Facilities */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .facility-card h4 {
        font-size: 1.2rem;
        margin-top: 1rem;
    }

    /* Carousel improvements */
    .carousel-btn {
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }

    .carousel-dots {
        gap: 0.5rem;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    /* Clients section */
    .clients-scroll {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .client-logo {
        min-width: 200px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-main {
        padding-right: 0;
        border-right: none;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(47, 54, 49, 0.1);
        text-align: center;
    }

    /* Create 2-column layout for Quick Links and Contact Info on mobile */
    .footer-content .footer-section {
        text-align: left;
    }

    .footer-content .footer-section:last-child {
        text-align: left    ;
    }

    /* Override the single column layout for the two footer sections */
    .footer-content {
        grid-template-areas: 
            "main main"
            "links contact";
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-main {
        grid-area: main;
    }

    .footer-section:nth-child(2) {
        grid-area: links;
    }

    .footer-section:nth-child(3) {
        grid-area: contact;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Header */
    .header {
        padding: 0.75rem 0;
    }

    .logo {
        gap: 0.2rem;
    }

    .logo-icon img {
        width: 40px;
        height: 40px;
    }

    .logo-text-s, .logo-text-m, .logo-text-a {
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        font-size: 1.3rem;
        padding: 0.5rem;
    }

    /* Hero Section */
    .hero {
        min-height: 60vh;
        padding: 5rem 0 2rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 6vw, 1.5rem);
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-icons {
        gap: 1rem;
        margin-bottom: 1rem;
        padding-top: 3rem;
    }

    .hero-icon {
        width: 3rem;
        height: 3rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .stat {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Background elements for mobile */
    .bg-triangle,
    .bg-rectangle,
    .bg-circle {
        display: none;
    }

    .bg-small-circle {
        opacity: 0.1;
        transform: scale(0.3);
    }

    /* Section spacing */
    .hero,
    .counters,
    .about,
    .expertise,
    .why-choose-us,
    .contact-section {
        padding: 2rem 0;
    }

    /* Typography */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    /* Cards and components */
    .expertise-card,
    .ceo-section,
    .mvv-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .counter-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .counter-number {
        font-size: 2rem;
    }

    .counter-label {
        font-size: 0.9rem;
    }

    /* CEO section mobile */
    .ceo-image img {
        width: 150px;
        height: 150px;
    }

    .ceo-name {
        font-size: 1.3rem;
    }

    .ceo-title {
        font-size: 0.9rem;
    }

    .ceo-stats {
        gap: 1rem;
    }

    .ceo-stat-number {
        font-size: 1.2rem;
    }

    .ceo-stat-label {
        font-size: 0.8rem;
    }

    /* MVV Cards */
    .mvv-card {
        padding: 1.5rem;
    }

    .mvv-title {
        font-size: 1.2rem;
    }

    .mvv-description {
        font-size: 0.9rem;
    }

    .mvv-list li {
        font-size: 0.85rem;
    }

    /* Expertise section */
    .expertise-title {
        font-size: 1.3rem;
    }

    .expertise-subtitle {
        font-size: 0.9rem;
    }

    .feature {
        padding: 0.75rem;
    }

    .feature span {
        font-size: 0.85rem;
    }

    /* Therapeutic cards */
    .therapeutic-card {
        padding: 1rem;
    }

    .therapeutic-header h4 {
        font-size: 1rem;
    }

    .therapeutic-content p {
        font-size: 0.85rem;
    }

    /* Reason cards */
    .reason-card {
        padding: 1.5rem;
    }

    .reason-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .reason-card p {
        font-size: 0.85rem;
    }

    /* Facility cards */
    .facility-card h4 {
        font-size: 1rem;
        margin-top: 0.75rem;
    }

    .facility-card p {
        font-size: 0.85rem;
    }

    /* Carousel mobile improvements */
    .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .carousel-dots {
        gap: 0.3rem;
        margin-top: 0.75rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* Clients */
    .clients-title {
        font-size: 1.3rem;
    }

    .clients-description {
        font-size: 0.9rem;
    }

    .client-logo {
        min-width: 150px;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    /* Footer mobile */
    .footer {
        padding: 2rem 0;
    }

    .footer-logo-text {
        flex-direction: column;
        gap: 0.2rem;
    }

    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-link {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }

    .footer-contact {
        gap: 0.75rem;
    }

    .footer-contact span,
    .footer-contact div {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
        text-align: center;
    }

    .footer-bottom-text {
        font-size: 0.75rem;
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .footer-badges {
    justify-content: center;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .logo-text-s, .logo-text-m, .logo-text-a {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: clamp(1.2rem, 10vw, 2rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 8vw, 1.3rem);
    }

    .section-title {
        font-size: clamp(1.2rem, 8vw, 1.8rem);
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .counter-card,
    .reason-card,
    .mvv-card {
        padding: 1rem;
    }

    .facility-card h4,
    .reason-card h3 {
        font-size: 0.9rem;
    }

    .client-logo {
        min-width: 120px;
        font-size: 0.7rem;
    }

    /* Footer - revert to single column on very small screens */
    .footer-content {
        grid-template-areas: 
            "main"
            "links"
            "contact";
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section {
        text-align: center !important;
    }

    .footer-badges {
    justify-content: center;
    }
}

/* Smooth scrolling */
/* Touch and Mobile Interaction Enhancements */
.touch-device {
    -webkit-tap-highlight-color: transparent;
}

.touch-active {
    transform: scale(0.98);
    opacity: 0.8;
    transition: all 0.1s ease;
}

/* Enhanced Mobile Menu */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.mobile-menu-btn.active {
    background-color: var(--yellow);
    border-radius: 0.5rem;
}

.header.menu-open {
    background-color: rgba(254, 254, 226, 1);
}

.nav-mobile {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(248, 208, 65, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.show {
    max-height: 300px;
}

.nav-link-mobile {
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-mobile.show .nav-link-mobile {
    transform: translateY(0);
    opacity: 1;
}

.nav-mobile.show .nav-link-mobile:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.show .nav-link-mobile:nth-child(2) { transition-delay: 0.2s; }
.nav-mobile.show .nav-link-mobile:nth-child(3) { transition-delay: 0.3s; }
.nav-mobile.show .nav-link-mobile:nth-child(4) { transition-delay: 0.4s; }

/* Improved Button Touch Targets */
.btn, .nav-link, .nav-link-mobile, .carousel-btn, .form-submit {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.carousel-btn {
    position: absolute !important;
}

.btn::before, .nav-link::before, .carousel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.btn:active::before, .nav-link:active::before, .carousel-btn:active::before {
    width: 100%;
    height: 100%;
}

/* Enhanced Carousel Touch Support */
.facility-carousel {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}

.carousel-image {
    pointer-events: none;
    -webkit-user-drag: none;
}

.carousel-btn {
    opacity: 0.8;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.carousel-btn:hover,
.carousel-btn:focus {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Improved Form Touch Targets */
.form-input,
.form-textarea {
    min-height: 48px;
    font-size: max(16px, 1rem); /* Prevents zoom on iOS */
}

.form-submit {
    min-height: 52px;
    touch-action: manipulation;
}

/* Enhanced Focus States for Touch */
@media (hover: none) and (pointer: coarse) {
    /* Touch device specific styles */
    .btn:hover {
        transform: none;
    }
    
    .nav-link:hover {
        color: inherit;
    }
    
    .carousel-btn:hover {
        transform: none;
        opacity: 0.8;
    }
    
    /* Make interactive elements more prominent on touch */
    .btn, .nav-link-mobile, .carousel-btn {
        padding: 0.75rem 1rem;
    }
}

/* Prevent text selection on touch interactions */
.hero-title, .hero-subtitle, .section-title, .nav-link-mobile {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Smooth scrolling improvements */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Fix viewport issues on mobile */
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    position: relative;
}

/* Enhanced responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
}

/* Improved loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

/* Better focus management */
*:focus {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Contact Section Styles */
.contact-section {
    padding: 5rem 0;
    background-color: var(--primary-bg);
}

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

.contact-info-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrapper.yellow {
    background-color: var(--yellow);
}

.contact-icon-wrapper.green {
    background-color: var(--green);
}

.contact-icon-wrapper.blue {
    background-color: var(--blue);
}

.contact-icon-wrapper i {
    color: var(--primary-dark);
    width: 1.5rem;
    height: 1.5rem;
}

.contact-info-content {
    flex: 1;
}

.contact-info-card-title {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-info-card-details {
    color: var(--primary-dark);
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 2px solid var(--yellow);
    background-color: var(--primary-bg);
    color: var(--primary-dark);
    font-size: 1rem;
    transition: all 0.2s;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(248, 208, 65, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--primary-dark);
    opacity: 0.6;
}

.form-textarea {
    resize: none;
    min-height: 6rem;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    background-color: var(--yellow);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(248, 208, 65, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.form-submit i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    background-color: var(--green);
    color: var(--white);
}

.notification.error {
    background-color: #ff6b6b;
    color: var(--white);
}

/* Contact Form Enhanced Responsiveness */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-info-title,
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .form-submit {
        font-size: 1rem;
        padding: 1rem;
    }

    .footer-badges {
    justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        padding: 1rem;
        border-radius: 1rem;
    }
    
    .contact-icon-wrapper {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.5rem;
    }
    
    .contact-icon-wrapper i {
        width: 1.2rem;
        height: 1.2rem;
    }
    
    .contact-info-title,
    .contact-form-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-card-title {
        font-size: 1rem;
    }
    
    .contact-info-card-details {
        font-size: 0.9rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.875rem;
        font-size: 0.9rem;
        border-radius: 0.5rem;
    }
    
    .form-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 0.5rem;
    }
    
    .form-label {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 360px) {
    .contact-info-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .contact-icon-wrapper {
        width: 2rem;
        height: 2rem;
    }
    
    .contact-icon-wrapper i {
        width: 1rem;
        height: 1rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .form-submit {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* Team Members Section Styles - UPDATED WITH FIXES */

.team-section .section-header {
    margin-bottom: 0rem;

}

.team-section {
    background: var(--white);
    border-radius: 1.5rem;
    /* padding: 3rem; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 4rem 0;
    padding: 2rem 0;
    /* background: linear-gradient(135deg, rgba(248, 208, 65, 0.05) 0%, rgba(46, 125, 50, 0.05) 100%);
    border-radius: 2rem; */
    position: relative;
    overflow: hidden;
}

.team-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-dark);
    /* margin-bottom: 1rem; */
    text-align: center;
}

.team-description {
    font-size: 1.1rem;
    color: var(--primary-dark);
    opacity: 0.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.team-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px; /* More padding for navigation buttons */
}

.team-carousel {
    position: relative;
    overflow: visible; /* Changed to visible for previews */
    border-radius: 1.5rem;
    background-color: transparent; /* Made transparent to show previews */
}

.team-slides-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px; /* Increased height for vertical layout */
    overflow: visible; /* Changed to visible for previews */
}

.team-slide {
    position: absolute;
    width: 100%;
    max-width: 400px; /* Reduced width for vertical layout */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4; /* More visible for previews */
    transform: scale(0.85);
    pointer-events: none;
}

.team-slide-current {
    opacity: 1;
    transform: scale(1);
    z-index: 3;
    pointer-events: auto;
}

/* FIXED: Make previews visible with proper positioning */
.team-slide-prev {
    transform: translateX(-300px) scale(0.85); /* Moved more left and visible */
    opacity: 0.6; /* More visible */
    z-index: 2;
}

.team-slide-next {
    transform: translateX(300px) scale(0.85); /* Moved more right and visible */
    opacity: 0.6; /* More visible */
    z-index: 2;
}

/* FIXED: Vertical layout for team cards */
.team-card {
    display: flex;
    flex-direction: column; /* Changed to vertical */
    gap: 1.5rem;
    align-items: center;
    text-align: center; /* Center align for vertical layout */
    background-color: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 450px; /* Adjusted height */
}

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

.team-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

/* FIXED: Square/rectangular image styling */
.team-image {
    width: 180px;
    height: 180px; /* Square image */
    border-radius: 20px; /* Rounded rectangle instead of circle */
    object-fit: cover;
    border: 4px solid var(--yellow);
    box-shadow: 0 8px 25px rgba(248, 208, 65, 0.3);
    transition: all 0.3s ease;
}

.team-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(248, 208, 65, 0.4);
}

.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center; /* Center aligned for vertical layout */
}

.team-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center; /* Center aligned */
    gap: 0.5rem;
}

.team-name::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--green) 100%);
    border-radius: 2px;
}

.team-position {
    font-size: 1.1rem;
    color: var(--green);
    font-weight: 600;
    margin-top: -1rem;
    display: flex;
    align-items: center;
    justify-content: center; /* Center aligned */
    gap: 0.5rem;
}

.team-position::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--blue);
    border-radius: 50%;
    display: inline-block;
}

.team-description {
    font-size: 0.95rem;
    color: var(--primary-dark);
    opacity: 0.8;
    line-height: 1.7;
    margin: 0;
    text-align: center; /* Center aligned for vertical layout */
}

/* FIXED: Navigation buttons positioning and visibility */
.team-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--yellow) 0%, var(--green) 100%);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5; /* Higher z-index */
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(248, 208, 65, 0.3);
}

.team-carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(248, 208, 65, 0.4);
}

.team-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* FIXED: Button positioning - fully visible */
.team-prev {
    left: -70px; /* Moved further out to be fully visible */
}

.team-next {
    right: -70px; /* Moved further out to be fully visible */
}

.team-carousel-btn i {
    color: var(--primary-dark);
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

/* Dots indicator */
.team-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(248, 208, 65, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.team-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--green) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-dot.active::before,
.team-dot:hover::before {
    width: 100%;
    height: 100%;
}

.team-dot.active {
    background-color: var(--yellow);
    transform: scale(1.2);
}

/* Pause indicator */
.team-pause-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.team-pause-indicator i {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-carousel-container {
        padding: 0 60px; /* Reduced padding on tablets */
    }
    
    .team-carousel-btn {
        width: 50px;
        height: 50px;
    }
    
    .team-prev {
        left: -55px;
    }
    
    .team-next {
        right: -55px;
    }
    
    .team-slides-wrapper {
        height: 450px;
    }
    
    .team-card {
        min-height: 400px;
        padding: 1.5rem;
    }
    
    .team-image {
        width: 150px;
        height: 150px;
    }
    
    .team-name {
        font-size: 1.6rem;
    }
    
    .team-position {
        font-size: 1rem;
    }
    
    .team-slide-prev {
        transform: translateX(-250px) scale(0.8);
    }
    
    .team-slide-next {
        transform: translateX(250px) scale(0.8);
    }
}

@media (max-width: 768px) {
    .team-section {
        margin: 2rem 0;
        padding: 2rem 0;
        border-radius: 1.5rem;
    }
    
    .team-title {
        font-size: 2rem;
    }
    
    .team-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .team-carousel-container {
        padding: 0 40px; /* Less padding on mobile */
    }
    
    .team-slides-wrapper {
        height: 430px;
    }
    
    .team-card {
        min-height: 400px;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .team-image {
        width: 120px;
        height: 120px;
        border-radius: 15px;
    }
    
    .team-name {
        font-size: 1.4rem;
    }
    
    .team-position {
        font-size: 0.95rem;
    }
    
    .team-description {
        font-size: 0.9rem;
    }
    
    .team-carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .team-prev {
        left: -40px;
    }
    
    .team-next {
        right: -40px;
    }
    
    /* Reduce preview visibility on mobile but keep them */
    .team-slide-prev {
        transform: translateX(-180px) scale(0.7);
        opacity: 0.4;
    }
    
    .team-slide-next {
        transform: translateX(180px) scale(0.7);
        opacity: 0.4;
    }
    
    .team-dots {
        gap: 0.75rem;
    }
    
    .team-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .team-carousel-container {
        padding: 0 30px;
    }
    
    .team-title {
        font-size: 1.7rem;
    }
    
    .team-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .team-carousel {
        border-radius: 1rem;
    }
    
    .team-card {
        padding: 1rem;
        gap: 1rem;
        min-height: 350px;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
        border-width: 3px;
        border-radius: 12px;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-name::before {
        height: 20px;
        width: 3px;
    }
    
    .team-position {
        font-size: 0.85rem;
    }
    
    .team-description {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .team-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .team-carousel-btn i {
        width: 18px;
        height: 18px;
    }
    
    .team-prev {
        left: -35px;
    }
    
    .team-next {
        right: -35px;
    }
    
    .team-slide-prev {
        transform: translateX(-140px) scale(0.6);
        opacity: 0.3;
    }
    
    .team-slide-next {
        transform: translateX(140px) scale(0.6);
        opacity: 0.3;
    }
    
    .team-dots {
        gap: 0.5rem;
    }
    
    .team-dot {
        width: 8px;
        height: 8px;
    }
    
    .team-pause-indicator {
        top: 10px;
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .team-pause-indicator i {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 360px) {
    .team-section {
        margin: 1.5rem 0;
        padding: 1.5rem 0;
    }
    
    .team-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .team-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .team-carousel-container {
        padding: 0 25px;
    }

    .team-card {
        padding: 0.75rem;
        min-height: 300px;
    }
    
    .team-image {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }
    
    .team-name {
        font-size: 1.1rem;
    }
    
    .team-position {
        font-size: 0.8rem;
    }
    
    .team-description {
        font-size: 0.75rem;
    }
    
    .team-carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .team-prev {
        left: -30px;
    }
    
    .team-next {
        right: -30px;
    }
    
    .team-slide-prev {
        transform: translateX(-120px) scale(0.5);
        opacity: 0.25;
    }
    
    .team-slide-next {
        transform: translateX(120px) scale(0.5);
        opacity: 0.25;
    }
}
