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

:root {
  /* Colors - Warm, caring palette for elderly care */
  --primary: #2d5f4f;
  --primary-light: #7fa896;
  --primary-dark: #1a3a2e;
  --accent: #d4a574;
  --accent-light: #e8c9a0;

  --background: #fdfbf7;
  --surface: #ffffff;
  --text: #2c2c2c;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e5e5e5;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

  /* Transitions */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--spacing-sm);
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

/* Re-enable pointer events for clickable elements */
a img,
button img {
  pointer-events: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--accent);
  color: var(--surface);
}

.btn-secondary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background-color: var(--surface);
  color: var(--primary);
}

.btn-light:hover {
  background-color: var(--background);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  z-index: 1000;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.phone-btn {
  background-color: var(--primary);
  color: var(--surface);
}

.whatsapp-btn {
  background-color: #25d366;
  color: var(--surface);
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Header */
.header {
  background-color: var(--surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.2;
}

.logo-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-light);
  line-height: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

.nav-link {
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background-color: rgba(127, 168, 150, 0.1);
}

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

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

/* Section Styles */
section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services {
  background-color: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.service-card {
  padding: var(--spacing-md);
  background-color: var(--background);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(127, 168, 150, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.service-icon svg {
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

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

/* Why Choose Us Section */
.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.why-item {
  display: flex;
  gap: var(--spacing-md);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  flex-shrink: 0;
}

.why-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

.why-choose-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.testimonial-card {
  padding: var(--spacing-md);
  background-color: var(--background);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #ffa500;
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--primary-dark);
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.google-reviews {
  text-align: center;
  padding: var(--spacing-md);
  background-color: var(--background);
  border-radius: var(--radius-md);
}

.google-reviews p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

.google-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-weight: 500;
  color: var(--primary);
}

/* Gallery Preview */
.gallery-preview {
  background-color: var(--surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--surface);
  text-align: center;
}

.cta-content h2 {
  color: var(--surface);
  margin-bottom: var(--spacing-sm);
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--surface);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer h4 {
  color: var(--surface);
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--surface);
  padding-left: 0.5rem;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-contact li {
  display: flex;
  gap: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
  color: var(--surface);
}

.footer-schedule {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: var(--spacing-xs);
}

.footer-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--spacing-md);
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-website {
  font-weight: 500;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--surface);
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
}

.page-header h1 {
  color: var(--surface);
  margin-bottom: var(--spacing-sm);
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* Mission Section */
.mission-section {
  padding: var(--spacing-xl) 0;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.mission-text h2 {
  margin-bottom: var(--spacing-md);
}

.mission-text .lead {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.mission-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.mission-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

/* Values Section */
.values-section {
  background-color: var(--surface);
  padding: var(--spacing-xl) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.value-card {
  padding: var(--spacing-md);
  background-color: var(--background);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

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

.value-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(127, 168, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
}

.value-icon svg {
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

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

/* Team Section */
.team-section {
  padding: var(--spacing-xl) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

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

.team-photo {
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.team-photo img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.team-member:hover .team-photo img {
  transform: scale(1.05);
}

.team-member h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
}

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

.team-info {
  background-color: var(--surface);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.team-info p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* Facilities Section */
.facilities-section {
  background-color: var(--surface);
  padding: var(--spacing-xl) 0;
}

.facilities-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.facilities-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.facility-item {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background-color: var(--background);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.facility-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(8px);
}

.facility-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.facility-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.facility-item p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.facilities-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

/* Gallery Full Page */
.gallery-full {
  padding: var(--spacing-xl) 0;
}

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.gallery-item-full {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item-full:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.gallery-item-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--surface);
  padding: var(--spacing-sm);
  font-weight: 500;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item-full:hover .gallery-caption {
  transform: translateY(0);
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-info h2 {
  margin-bottom: var(--spacing-md);
}

.contact-intro {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.contact-item {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background-color: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(127, 168, 150, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-text h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-link {
  color: var(--primary);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

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

.contact-text p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.contact-hours {
  background-color: var(--surface);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-hours h3 {
  margin-bottom: var(--spacing-sm);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  color: var(--text);
  font-weight: 500;
}

.time {
  color: var(--primary);
  font-weight: 600;
}

.hours-note {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-style: italic;
  margin: 0;
}

.contact-map h2 {
  margin-bottom: var(--spacing-md);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-sm);
}

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

/* FAQ Section */
.faq-section {
  background-color: var(--surface);
  padding: var(--spacing-xl) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.faq-item {
  padding: var(--spacing-md);
  background-color: var(--background);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

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

/* Reviews Section */
.reviews-section {
  padding: var(--spacing-xl) 0;
}

.google-reviews-widget {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--spacing-lg);
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.reviews-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stars-large {
  color: #ffa500;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.reviews-header p {
  color: var(--text-light);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background-color: var(--surface);
    width: 100%;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero,
  .why-choose-content,
  .mission-content,
  .facilities-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .why-choose-image,
  .mission-image,
  .facilities-image {
    order: -1;
  }

  .floating-buttons {
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

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

@media (max-width: 640px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .services-grid,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .gallery-grid,
  .gallery-grid-full,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .logo-name {
    font-size: 1rem;
  }

  .logo-subtitle {
    font-size: 0.875rem;
  }
}

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

/* Print Styles */
@media print {
  .floating-buttons,
  .mobile-menu-toggle,
  .nav-menu,
  .cta-section {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }
}
