/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    color: #2d2d2d;
    overflow-x: hidden;
    background: #FFFFF0;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 65px;
    width: auto;  
    max-width: 220px; 
}

.navbar .logo span {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links li a {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  text-decoration: none;
  color: #1b3e2a;
  font-weight: 500;
  font-size: 16px;
  padding: 5px 0;
  transition: all 0.4s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #bfa760;
    transition: width 0.4s ease;
}

.nav-links li a:hover {
    color: #034c1b;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Dropdown */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff8e7;
  padding: 15px 0;
  width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 10px;
  display: none;
  flex-direction: column;
  animation: dropdownFade 0.3s ease-in-out;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  color: #1b3e2a;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: 'Playfair Display', serif;
}

.dropdown-menu li a:hover {
  background: #bfa7601c;
  color: #bfa760;
}

/* Chevron icon style */
.nav-links .dropdown i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-links .dropdown:hover i {
  transform: rotate(180deg);
}

/* Dropdown animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hamburger icon styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #1b3e2a;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hides mobile-specific links on desktop */
.mobile-only {
  display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  /* Hide desktop dropdown in mobile */
  .desktop-only {
    display: none;
  }
  /* Show mobile links */
  .mobile-only {
    display: block;
  }

  /* Mobile menu styling */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background-color: #FFFFF0;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 100px;
    padding-left: 30px;
    gap: 25px;
    transition: right 0.4s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  }
  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'poppins', serif;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .nav-links li a:hover {
    color: #bfa760;
    transform: translateX(5px);
  }

  /* Show hamburger icon */
  .hamburger {
    display: flex;
  }

  /* Adjusting navbar padding for mobile */
  .navbar {
    padding: 15px 20px;
  }

  /* Logo adjustment for mobile */
  .navbar .logo img {
    height: 55px;
    max-width: 180px;
  }
}

/* Hero Section with video */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero-content {
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 80px;
    animation: fadeInUp 2s ease forwards;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content h1 span {
    color: #f7cd52;
}

.hero-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 40px;
    background-color: #034c1b;
    color: #fff;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    background: #fff;
    color: #034c1b;
    border: 2px solid #034c1b;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* About Section */
.about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 120px 80px;
    flex-wrap: wrap;
}

.about-image img {
    width: 500px;
    height: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1b3e2a;
    margin-bottom: 20px;
}

.about-text h2 span {
    color: #bfa760;
}

.about-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-text .btn {
    background: #bfa760;
    color: #fff;
}

.about-text .btn:hover {
    background: #fff;
    color: #bfa760;
    border: 2px solid #bfa760;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
  }

  .about-image img {
    width: 100%;
    max-width: 350px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .about-text {
    max-width: 100%;
    text-align: center;
  }

  .about-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .about-text p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .about-text .btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* WHAT WE OFFER Section */
.what-we-offer {
    text-align: center;
    padding: 10px 20px;
}

.what-we-offer h2 {
    font-family: 'Playfair Display', serif;
    color: #1b3e2a ;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.what-we-offer h2 span {
    color: #bfa760
}

.what-we-offer p {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #3a2c04;;
}

/* Cards layout */
.offer-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

/* Card style */
.offer-card {
    background: #fff;
    border: 3px solid #1b3e2a; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
}

/* Elegant hover animation */
.offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 25px rgba(1, 50, 32, 0.4);
}

/* Card image */
.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Card content */
.offer-card-content {
    padding: 25px 20px;
    flex-grow: 1;
}

.offer-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1b3e2a;
    margin-bottom: 12px;
}

.offer-card-content p {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}

/* Card list (no icons) */
.offer-card-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.offer-card-content ul li {
    font-size: 14px;
    color: #013220;
    margin-bottom: 8px;
    padding-left: 0;
}

/* Button style */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1b3e2a;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Button hover animation */
.btn:hover {
    background: #fffaf3;
    color: #1b3e2a;
    border: 2px solid #1b3e2a;
    box-shadow: 0 8px 20px rgba(1, 50, 32, 0.3);
}

/* Button ripple effect */
.btn::after {
    content: "";
    position: absolute;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
}

.btn:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .what-we-offer {
    padding: 40px 16px 50px;
  }

  .what-we-offer h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .what-we-offer h2 span {
    font-size: 28px;
  }

  .what-we-offer p {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .offer-cards {
    flex-direction: column;
    gap: 30px;
  }

  .offer-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .offer-card img {
    height: 180px;
  }

  .offer-card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .offer-card-content p,
  .offer-card-content ul li {
    font-size: 14px;
  }

  .btn {
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 25px;
  }
}

/* HEALING JOURNEY SECTION */
.journey-section {
  padding: 80px 30px;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.section-title {
  font-size: 34px;
  color: #1b3e2a;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 800;
}

.gold-text {
  color: #bfa760;
}

.section-subtitle {
  font-size: 16px;
  color: #332703;
  max-width: 700px;
  font-family: 'Poppins', sans-serif;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.section-title::after,
.section-title::before {
  content: none !important;
}

.section-title {
  border-bottom: none !important;
}

/* Vertical timeline container */
.journey-visual {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-left: 50px;
}

/* Vertical gold line */
.journey-visual::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 0;
  width: 5px;
  height: 100%;
  background: #bfa760;
  border-radius: 2px;
  z-index: 0;
}

/* Each step box */
.step-box {
  position: relative;
  padding-left: 40px;
  text-align: left;
  z-index: 1;
}

/* Step number circle */
.step-number {
  position: absolute;
  left: -45px;
  top: 0;
  width: 40px;
  height: 40px;
  background: #1b3e2a;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(27, 62, 42, 0.3);
  z-index: 2;
}

/* Subheading */
.step-content h3 {
  font-size: 20px;
  color: #1b3e2a;
  margin-bottom: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Paragraph */
.step-content p {
  color: #473102;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* Icon styling */
.icon-luxury {
  color: #bfa760;
  font-size: 18px;
  background: rgba(191, 167, 96, 0.1);
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(191, 167, 96, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .journey-visual {
    padding-left: 35px;
  }

  .step-box {
    padding-left: 30px;
  }

  .step-number {
    left: -30px;
  }
}

/*Why choose us section*/
.why-choose-us {
  text-align: center;
  font-family: 'Playfair Display', serif;
  padding: 50px 20px;
  background-color: #FFFFF0;
}

.why-choose-us h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.why-choose-us .green {
  color: #1b3e2a;
  font-weight: bold;
}

.why-choose-us .orange {
  color: #bfa760;
  font-weight: bold;
}

.content-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.left, .right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-img {
  max-width: 250px;
  height: auto;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background-color: transparent;
  gap: 12px;
}

/* Circle Icon Style */
.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1b3e2a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 5px;
}

/* Align-right content inside left column */
.align-right {
  align-items: flex-end;
  text-align: right;
}

.box h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #1b3e2a;
}

.box p {
  margin: 0;
  font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
  color: #352301;
}

@media (max-width: 768px) {
  .content-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .left, .right {
    align-items: center;
  }

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

  .align-right {
    align-items: center !important;
    text-align: center !important;
  }
}

/* CEO Message Section */
.ceo-message {
  background: #FFFFF0;
  padding: 80px 20px 40px;
}

.ceo-message .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* CEO Image Styling */
.ceo-image img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #bfa760;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Text Section Styling */
.ceo-text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

/* Section Title */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1b3e2a;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #bfa760;
  margin-top: 8px;
  border-radius: 2px;
}

/* CEO Quote */
.quote {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #473102;
  font-style: italic;
  margin-bottom: 25px;
}

/* CEO Name */
.ceo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: #1b3e2a;
}

/* CEO Title */
.ceo-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #777;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .ceo-message .container {
    flex-direction: column;
    text-align: center;
  }

  .ceo-text {
    order: 1;
  }

  .ceo-image {
    order: 2;
    margin: 15px 0;
  }

  .quote {
    order: 3;
    font-size: 1rem;
  }

  .ceo-name,
  .ceo-title {
    order: 4;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .ceo-image img {
    width: 220px;
    height: 220px;
  }
}

/*Insurance section*/
.insurance-partners {
  text-align: center;
  padding: 60px 20px;
  background: #fdfcf6; 
  position: relative;
}

.insurance-partners h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  color: #1b3e2a;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.insurance-partners .green { color: #1b3e2a; }
.insurance-partners .orange { color: #bfa760; }

.insurance-partners .subtitle {
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  color: #4e3b01;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Swiper slides */
.insurance-partners .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  box-sizing: border-box; 
}

.insurance-partners .swiper-slide img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  background: white;
  border: 2px solid #bfa760;
  border-radius: 12px;
  padding: 0; 
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: none;
  box-sizing: border-box;
}

/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
  color: #1b3e2a !important;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 28px; 
  height: 28px; 
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}

/* Mobile Responsive Font Sizes */
@media (max-width: 1024px) {
  .insurance-partners h2 {
    font-size: 2rem; 
  }
  .insurance-partners .subtitle {
    font-size: 1.1rem;
  }
  .insurance-partners .swiper-slide img {
    max-width: 140px;
    max-height: 70px;
  }
}

@media (max-width: 768px) {
  .insurance-partners h2 {
    font-size: 1.8rem;
  }
  .insurance-partners .subtitle {
    font-size: 1rem;
  }
  .insurance-partners .swiper-slide img {
    max-width: 120px;
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .insurance-partners h2 {
    font-size: 1.5rem; 
  }
  .insurance-partners .subtitle {
    font-size: 0.9rem;
  }
  .insurance-partners .swiper-slide img {
    max-width: 100px;
    max-height: 50px;
  }
}

/* Contact Section */
.contact-section {
  background-color: #1b3e2a;
  color: #fff;
  padding: 0;
  font-family: 'Playfair Display', serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-right {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #1b3e2a;
}

.contact-right h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #fff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  gap: 30px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

.info-block i {
  font-size: 1.2rem;
  color: #bfa760;
  min-width: 20px;
  margin-top: 4px;
}

.btn-appointment {
  display: inline-block;
  margin-top: 20px;
  background-color: #bfa760;
  color: #1b3e2a;
  padding: 8px 20px; 
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px; 
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: fit-content;
}

.btn-appointment:hover {
  background-color: #1b3e2a;
  color: #bfa760;
  border: 2px solid #bfa760;
}

/* Footer */
.footer {
  background-color: #1b3e2a;
  color: #fff;
  padding: 20px 40px;
  font-family: 'Playfair Display', serif;
  border-top: 1px solid #ffffff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-logo {
  max-height: 60px;
  width: auto;
}

.footer-center p {
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

.footer-right a {
  margin-left: 30px;
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #bfa760;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .contact-right {
    padding: 40px 20px;
    text-align: center;
  }

  .contact-right h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .info-block {
    justify-content: flex-start;  
    text-align: left;  
  }

  .info-block p {
    font-size: 1rem;
  }

  .info-block i {
    font-size: 1.6rem;
    margin-top: 0;
  }

  .btn-appointment {
    font-size: 15px;
    padding: 12px 25px;
    margin-top: 25px;
  }

.footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-logo {
    max-height: 50px;
  }

  .footer-center p {
    max-width: 100%;
    font-size: 0.85rem;
  }

  .footer-right {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 25px;
  }

  .footer-right a {
    margin-left: 0;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-right h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .info-block {
    gap: 12px;
    justify-content: flex-start;  
    text-align: left;  
  }

  .btn-appointment {
    font-size: 14px;
    padding: 10px 20px;
  }

    .footer-logo {
    max-height: 45px;
  }
}

body > :not(.footer) {
  flex: 1;
}