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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.gradient-text {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: transparent;
    color: #374151;
    text-decoration: none;
    border: 2px solid #d1d5db;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #10b981;
    color: #10b981;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
/* .header .container{
    max-width: 100%;
    padding-left: 10%;
} */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.25rem;
    margin: 0;
    color: #111827;
}

.logo-text p {
    font-size: 0.75rem;
    margin: 0;
    color: #10b981;
    font-weight: 500;
}

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

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: #10b981;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #10b981;
    border-radius: 1px;
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}
/* CARROUSEL */
.facility-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 14px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel-track img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    height: 320px;
    border-radius: 14px;
}

/* Boutons gauche/droite */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background: #f2f2f2;
}

.mobile-nav.active {
    display: flex;
}
.mobile-nav a {
    color: #000000 !important;  /* Noir au lieu de bleu */
    text-decoration: none !important;  /* Enlève le soulignement */
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
     position: relative;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #10b981 !important;  /* Vert au hover */
}

.mobile-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #10b981;
    border-radius: 1px;
    display: block !important;  /* Force l'affichage */
}


/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.page-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}


/* L’overlay sombre uniquement sur l’image */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.60); /* ajuste ici l’intensité */
  z-index: 1;
}

/* Le contenu passe au-dessus de l’overlay */
.hero .container,
.hero .hero-content,
.hero .hero-text {
  position: relative;
  z-index: 2;
}

/* Optionnel : boutons bien visibles */
.btn-primary, .btn-secondary {
  position: relative;
  z-index: 3;
}
/* Hero content prend toute la place */
.hero-content {
  width: 100%;
  height: 100%;
  /* background-color: #b91c1c; */
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;

}

.hero-text{
    /* background-color: #10b981; */
    width: 100%;
    height: 100%;
}
/* Text styling */
.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-text p {
  font-size: 1.25rem;
  color: #ffffffda;
  margin-bottom: 2rem;
}

/* Boutons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
  position: relative;
  z-index: 3;
  color: #fff;
}

.arrow {
    font-size: 1.2rem;
}
.stats {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; /* Aligne au même niveau que hero-content */
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-icon {
    font-size: 1.8rem; /* Réduit */
    color: #ffffff;
    background: linear-gradient(135deg, #0b4a1a, #20c997);
    width: 60px; /* Réduit de 80px à 60px */
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.stat-icon i {
    display: block;
}

.stat-number {
    font-size: 1.6rem; /* Réduit */
    font-weight: bold;
    color: #fff;
    margin: 0.5rem 0;
}

.stat-label {
    font-size: 0.9rem; /* Réduit */
    color: #fff;
}



.stat-label {
    font-size: 0.875rem;
    color: #fff;

}

.hero-image {
    position: relative;
}

.hero-main-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem;
}

.image-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    color: #d1fae5;
    margin: 0;
}

.consultation-card {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 300px;
}

.consultation-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.consultation-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.consultation-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.consultation-card li {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111827;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: white;
}

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

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #f9fafb;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #111827;
}

.feature-card p {
    color: #6b7280;
    margin: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.75rem;
    background: #f0fdf4;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-details {
    list-style: none;
    margin-bottom: 1rem;
}

.service-details li {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.service-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
    display: block;
}

.service-link:hover {
    color: #059669;
}

.facility-showcase {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-radius: 16px;
    padding: 3rem;
}

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

.facility-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.facility-text p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.facility-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.facility-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f9fafb;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.about-text > p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.features h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #111827;
}

.features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.5rem 0;
    color: #374151;
}

.mission-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.mission-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #111827;
}

.mission-card p {
    color: #6b7280;
    margin: 0;
}

.values-section {
    margin: 2rem 0;
}

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

.value-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.value-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.value-item p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.facility-images-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.facility-images-small img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.stats-card {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 2rem;
    border-radius: 16px;
}

.stats-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-item .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1.5rem;
}

.stat-info .stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.stat-info .stat-label {
    color: #d1fae5;
    font-size: 0.875rem;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-content {
    padding: 1.5rem;
}

.team-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.team-content p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

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

.certifications-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #111827;
}

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

.cert-item:last-child {
    margin-bottom: 0;
}

.cert-icon {
    width: 32px;
    height: 32px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.cert-item span {
    color: #374151;
    font-size: 0.875rem;
}

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

.location-card h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #111827;
}

.location-card p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.feature-icon {
    font-size: 1rem;
}

/* Appointment Section */
.appointment {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

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

.appointment-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.form-header p {
    color: #6b7280;
    margin: 0;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1rem;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    background: #f0fdf4;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.help-card {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 2rem;
    border-radius: 16px;
}

.help-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.help-card p {
    margin-bottom: 1.5rem;
    color: #d1fae5;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

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

.contact-icon {
    font-size: 1.25rem;
}

.emergency-card {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.emergency-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.emergency-card p {
    margin-bottom: 1.5rem;
    color: #fecaca;
}

.emergency-card .btn-primary {
    background: white;
    color: #dc2626;
}

.emergency-card .btn-primary:hover {
    background: #f9fafb;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

.step-content p {
    color: #6b7280;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

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

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

.contact-card {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    padding: 2rem;
    border-radius: 16px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

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

.contact-card .contact-item:last-child {
    margin-bottom: 0;
}

.contact-card .contact-icon {
    background: #10b981;
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #374151;
    margin: 0;
    line-height: 1.4;
}

.contact-note {
    font-size: 0.875rem;
    color: #6b7280;
}

.contact-closed {
    color: #dc2626;
}

.transport-card {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 2rem;
    border-radius: 16px;
}

.transport-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #111827;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.transport-item:last-child {
    margin-bottom: 0;
}

.transport-icon {
    font-size: 1.25rem;
}

.quick-contact-card {
    background: white;
    border: 2px solid #10b981;
    padding: 2rem;
    border-radius: 16px;
}

.quick-contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #111827;
}

.quick-contact-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.facility-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.facility-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.facility-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.facility-overlay p {
    margin-bottom: 1rem;
    color: #d1d5db;
}

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

.facility-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.facility-features {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.facility-features h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #111827;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.feature-item .feature-icon {
    font-size: 1rem;
}

/* Contact Form */
.contact-form-section {
    padding: 60px 0;
    background: #f9fafb;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1fae5;
}

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

.cta-buttons .btn-primary {
    background: white;
    color: #10b981;
}

.cta-buttons .btn-secondary {
    background: #059669;
    border-color: #047857;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: #047857;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-logo-text h3 {
    font-size: 1.25rem;
    margin: 0;
}

.footer-logo-text p {
    font-size: 0.75rem;
    color: #10b981;
    margin: 0;
}

.footer-section p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: #10b981;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-contact-item .contact-icon {
    color: #10b981;
    margin-top: 0.125rem;
}

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

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .facility-content,
    .about-content,
    .appointment-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .consultation-card {
        position: static;
        margin-top: 2rem;
        max-width: none;
    }
    
    .services-grid,
    .services-grid-preview {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
 
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.25rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-text h1,
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons,
    .cta-buttons,
    .quick-contact-buttons {
        flex-direction: column;
    }
    
        .stats {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .stat {
        width: 100%;
        max-width: 250px;
    }

    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .services-grid-preview {
        grid-template-columns: 1fr;
    }
    
    .facility-images {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1,
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .appointment-form,
    .info-card,
    .contact-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .facility-showcase,
    .cta-section {
        padding: 2rem;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .feature-card,
    .btn-primary,
    .btn-secondary {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-card:hover,
    .feature-card:hover {
        animation: float 0.3s ease-out;
    }
    
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(-5px); }
    }
}