:root {
  --primary: #0EA5E9;
  --primary-dark: #0284C7;
  --primary-light: #E0F2FE;
  --secondary: #10B981;
  --text-dark: #0F172A;
  --text-light: #64748B;
  --bg-color: #FFFFFF;
  --bg-gray: #F8FAFC;
  --bg-dark: #1E293B;
  --border-color: #E2E8F0;
  --radius: 12px;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

p {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  color: #A2A2A2;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out-quart), background-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #fff;
  border: none;
}

.btn-secondary:hover {
  background-color: #059669;
}

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

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

.section {
  padding: 100px 0;
}

.section-title {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-heading {
  font-size: 40px;
  margin-bottom: 24px;
  line-height: 1.2;
}

/* Header */
header {
  padding: 24px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

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

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  font-size: 32px;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-weight: 500;
  color: #fff;
  transition: color 0.3s;
}

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

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #fff;
}

.header-contact .icon-circle {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Hero */
.hero {
  padding: 180px 0 120px;
  background: url('images/bg2-VFBFAPL.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(84, 139, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: -1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-actions .btn-outline {
  border-color: #fff;
  color: #fff;
}

.hero-actions .btn-outline:hover {
  background: #fff;
  color: var(--secondary);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hero-booking {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 20px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.input-group {
  flex: 1;
}

.input-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  outline: none;
  font-family: inherit;
  color: var(--text-light);
  transition: border-color 0.3s;
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
  transform: scale(1.01);
}

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  z-index: 1;
}

.about-bg-shape {
  position: absolute;
  top: 40px;
  right: -30px;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, #60A5FA, #3B82F6);
  border-radius: 20px;
  z-index: -1;
}

.about-main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

.about-content .section-title {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: none;
  font-size: 16px;
  letter-spacing: normal;
}

.about-content .section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  color: #3E4B5B;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-desc {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.about-bottom-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #3E4B5B;
  font-size: 15px;
  font-weight: 500;
}

.about-list li i {
  color: var(--secondary);
  font-size: 20px;
}

.about-small-img {
  width: 260px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
}

.about-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-sig {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h5 {
  font-size: 18px;
  color: #3E4B5B;
  margin-bottom: 4px;
}

.author-info p {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 500;
}

.author-signature {
  font-family: 'Herr Von Muellerhoff', cursive;
  font-size: 46px;
  color: #94A3B8;
  transform: rotate(-5deg);
}

/* Services */
.services {
  background: linear-gradient(rgba(84, 139, 255, 0.9), rgba(84, 139, 255, 0.9)), url('images/bg2-VFBFAPL.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.services::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.services::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.services-header {
  text-align: center;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}

.services-header .section-title {
  color: #fff;
  justify-content: center;
}

.services-header .section-heading {
  color: #fff;
  margin-bottom: 20px;
}

.services-header p {
  color: rgba(255, 255, 255, 0.8);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  row-gap: 50px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: #fff;
  padding: 40px 30px 30px;
  border-radius: 16px;
  text-align: left;
  position: relative;
  transition: transform 0.3s var(--ease-out-quart), box-shadow 0.3s var(--ease-out-quart);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #3E4B5B;
  margin-top: 10px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.service-link {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
}

.service-card.highlighted {
  background: linear-gradient(135deg, #4ade80 0%, #10b981 100%);
  color: #fff;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card.highlighted h3 {
  color: #fff;
  margin-top: 0;
}

.service-card.highlighted p {
  color: rgba(255, 255, 255, 0.9);
}

.service-link-all {
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

/* Locations */
.locations-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.location-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.location-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.location-item h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.location-item p {
  color: var(--text-light);
  font-size: 14px;
}

.locations-map {
  position: relative;
}

/* Stats */
.stats {
  background: var(--primary);
  color: #fff;
  padding: 60px 0;
  border-radius: 30px;
  margin: 0 24px;
  background-image: url('data:image/svg+xml;utf8,<svg opacity="0.1" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="2" fill="%23ffffff"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  font-size: 48px;
}

.stat-item h2 {
  color: #fff;
  font-size: 56px;
  line-height: 1;
}

.stat-item p {
  opacity: 0.9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* Appointment Section */
.appointment {
  padding: 120px 0;
}

.appointment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.appointment-image img {
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.steps {
  margin-top: 50px;
}

.step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 32px;
  top: 64px;
  bottom: -20px;
  width: 2px;
  background: var(--border-color);
  border-style: dashed;
}

.step-number {
  width: 64px;
  height: 64px;
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
  z-index: 1;
}

.step-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

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

/* App Section */
.app-section {
  background: var(--primary);
  color: #fff;
  padding: 100px 0;
  border-radius: 30px;
  margin: 0 24px 100px;
}

.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 40px;
}

.app-content h2,
.app-content .section-title {
  color: #fff;
}

.app-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 40px;
}

.store-buttons {
  display: flex;
  gap: 20px;
}

.store-btn {
  background: #0F172A;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.3s;
}

.store-btn:hover {
  background: #000;
}

.store-btn i {
  font-size: 32px;
}

.store-text small {
  display: block;
  font-size: 12px;
  color: #94A3B8;
}

.store-text strong {
  display: block;
  font-size: 18px;
}

.app-image img {
  border-radius: 20px;
  transform: scale(1.1);
}

/* News */
.news {
  background: #fff;
  text-align: center;
  padding: 100px 0;
}

.news .section-title {
  justify-content: center;
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
}

.news .section-heading {
  color: #3E4B5B;
  font-size: 42px;
  margin-bottom: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.news-layout {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 30px;
  text-align: left;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.news-layout-reverse {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 30px;
  text-align: left;
}

.news-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.news-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

.news-item-content h3 {
  font-size: 18px;
  color: #3E4B5B;
  margin-bottom: 8px;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.news-item-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.5;
}

.news-link {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.3s;
}

.news-link:hover {
  opacity: 0.8;
}

.news-featured {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.news-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.news-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-featured-content h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.news-featured-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.news-featured-content .news-link {
  color: var(--secondary);
}

/* Footer */
footer {
  background: linear-gradient(rgba(43, 49, 65, 0.9), rgba(43, 49, 65, 0.9)), url('images/bg2-VFBFAPL.png') center/cover no-repeat;
  color: #fff;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03) 10%, transparent 40%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.03) 10%, transparent 40%);
  pointer-events: none;
}

.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.newsletter-text h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}

.newsletter-text p {
  color: #94A3B8;
  font-size: 15px;
  max-width: 400px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  align-items: center;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 20px;
  border-radius: 50px;
  color: #fff;
  width: 300px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #64748B;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-logo i {
  color: var(--secondary);
  font-size: 40px;
}

.footer-col>p {
  color: #94A3B8;
  margin-bottom: 30px;
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 30px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: #94A3B8;
  transition: color 0.3s;
  font-size: 15px;
}

.footer-links a:hover {
  color: #fff;
}

.hours li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #94A3B8;
  font-size: 14px;
}

.hours li i {
  color: var(--secondary);
  font-size: 18px;
}

.call-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.call-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.call-box h5 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #fff;
}

.call-box p {
  color: #94A3B8;
  font-size: 15px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #64748B;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* Contact Page specific */
.header-contact-page {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.page-header {
  background: url('images/bg2-VFBFAPL.png') center/cover no-repeat;
  padding: 180px 0 100px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(84, 139, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: -1;
}

.page-header::after {
  display: none;
}

.page-header h1 {
  font-size: 56px;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
  color: #fff;
}

.page-header .breadcrumbs {
  font-size: 16px;
  opacity: 0.9;
}

.get-in-touch {
  text-align: center;
  padding: 100px 0;
  background: #fff;
}

.get-in-touch .section-title {
  justify-content: center;
}

.get-in-touch .section-heading {
  color: #3E4B5B;
  font-size: 42px;
  margin-bottom: 60px;
  font-family: 'Outfit', sans-serif;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px 30px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  text-align: left;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: absolute;
  top: -25px;
  left: 30px;
}

.contact-card h3 {
  font-size: 18px;
  color: #3E4B5B;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.form-map-section {
  padding-bottom: 100px;
  background: #fff;
}

.form-map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.map-wrapper {
  background: #eee;
  min-height: 400px;
}

.form-wrapper {
  padding: 50px;
  background: #fff;
}

.form-wrapper h2 {
  font-size: 32px;
  color: #3E4B5B;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}

.form-wrapper p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-wrapper .input-group input,
.form-wrapper .input-group textarea {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.form-wrapper .input-group input:focus,
.form-wrapper .input-group textarea:focus {
  border-color: var(--secondary);
}

.w-100 {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  margin-top: 10px;
}

@media (max-width: 1024px) {

  .hero-inner,
  .about-inner,
  .locations-inner,
  .appointment-inner,
  .app-inner {
    grid-template-columns: 1fr;
  }

  .hero-booking {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-map-container {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    min-height: 300px;
  }

  .news-layout,
  .news-layout-reverse {
    grid-template-columns: 1fr;
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .header-contact {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 2rem;
    z-index: 9999;
    border-top: 1px solid var(--border-color);
  }

  .nav-links.active {
    display: flex;
    animation: fadeInDown 0.3s ease forwards;
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

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

  .nav-links li {
    margin: 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    padding: 1.25rem 0.5rem;
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--primary);
    padding-left: 1rem;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-bottom-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid,
  .news-grid,
  .news-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .store-buttons {
    flex-direction: column;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-item img {
    width: 100%;
    height: 200px;
  }
}

/* Modal specific */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--primary);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.modal-header p {
  color: var(--text-light);
  font-size: 15px;
}

.modal-form .input-group {
  margin-bottom: 20px;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 14px 20px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.modal-form input:focus,
.modal-form textarea:focus {
  border-color: var(--secondary);
}

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

.animate-on-scroll {
  opacity: 0;
  will-change: transform, opacity;
}

.is-visible {
  animation: fade-in-up 0.6s var(--ease-out-quart) forwards;
}

.is-visible.slide-in-right {
  animation: slide-in-right 0.6s var(--ease-out-quart) forwards;
}

.is-visible.slide-in-left {
  animation: slide-in-left 0.6s var(--ease-out-quart) forwards;
}

.stagger-1 {
  animation-delay: 100ms;
}

.stagger-2 {
  animation-delay: 200ms;
}

.stagger-3 {
  animation-delay: 300ms;
}

.stagger-4 {
  animation-delay: 400ms;
}

.stagger-5 {
  animation-delay: 500ms;
}

.stagger-6 {
  animation-delay: 600ms;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
}

/* Form Validation */
.input-group {
  position: relative;
}

.input-group input.is-invalid,
.input-group select.is-invalid,
.newsletter-form input.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
  animation: shake 0.4s var(--ease-out-quint);
}

.input-group input.is-valid,
.input-group select.is-valid,
.newsletter-form input.is-valid {
  border-color: var(--secondary) !important;
}

.error-msg {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 12px;
  color: #ef4444;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s var(--ease-out-quart);
  pointer-events: none;
}

.input-group.has-error .error-msg {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
  }

  75% {
    transform: translateX(-5px);
  }
}

.form-success-message {
  color: var(--secondary);
  font-weight: 600;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: fade-in-up 0.4s var(--ease-out-quart);
  width: 100%;
}

/* Responsive Layout Utilities */
.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.srv-appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.service-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

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

.experience-counters {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 1024px) {
  .about-grid,
  .srv-appointment-grid,
  .service-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .philosophy-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .grid-3-col,
  .grid-2-col,
  .philosophy-grid,
  .testimonials-grid,
  .service-checklist-grid,
  .form-row-grid {
    grid-template-columns: 1fr;
  }
  
  .experience-counters {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  /* Subpage Title Fitting */
  .page-header {
    padding: 140px 0 60px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  /* Footer Newsletter Mobile Adaptation */
  .footer-newsletter {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    text-align: center;
  }

  .newsletter-text p {
    max-width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
    border-radius: 50px;
    text-align: center;
  }

  .newsletter-form .btn {
    width: 100%;
  }
}