/* ========================= */
/* COMMON CSS */
/* Antony's Foot Health Care */
/* ========================= */

/* ========================= */
/* RESET */
/* ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f7f7f7;
}

img {
  max-width: 100%;
  display: block;
}

/* ========================= */
/* CONTAINER */
/* ========================= */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ========================= */
/* HEADER */
/* ========================= */

header {
  background-color: #0f766e;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  position: relative;
}

/* ========================= */
/* LOGO */
/* ========================= */

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.logo-text h1 {
  font-size: 2rem;
  color: white;
  margin-bottom: 5px;
}

.logo-text p {
  font-size: 1rem;
  color: #d1fae5;
}

/* ========================= */
/* NAVIGATION */
/* ========================= */

.navbar ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1.05rem;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #d1fae5;
}

/* ========================= */
/* HAMBURGER */
/* ========================= */

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('images/hero-foot-health.png');

  background-size: cover;
  background-position: center;

  height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  color: white;
}

.hero-content h2 {
  font-size: 4rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: auto;
}
/* ========================= */
/* Hero Button */
/* ========================= */

.hero-btn {

  display: inline-block;

  background-color: #0f7b72;

  color: white;

  padding: 15px 34px;

  border-radius: 10px;

  text-decoration: none;

  font-size: 1rem;

  font-weight: 600;

  transition: all 0.3s ease;

  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.hero-btn:hover {

  background-color: #0b5f58;

  transform: translateY(-3px);

  box-shadow: 0 10px 22px rgba(15,123,114,0.25);
}

/* ========================= */
/* COMMON SECTION */
/* ========================= */

section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title h2 {
  font-size: 2.8rem;
  color: #0f766e;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
  max-width: 750px;
  margin: auto;
}

/* ========================= */
/* PAGE SECTION */
/* ========================= */

.page-section {
  padding: 80px 0;
}

.page-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0f766e;
}

.page-section p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.btn-primary,
.service-btn,
.contact-btn {
  display: inline-block;
  background-color: #0f766e;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.35s ease;
}

.btn-primary:hover,
.service-btn:hover,
.contact-btn:hover {
  background-color: #0b5f58;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ========================= */
/* WELCOME SECTION */
/* ========================= */

.welcome-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.welcome-image img {
  border-radius: 20px;
}

/* ========================= */
/* GRID LAYOUTS */
/* ========================= */

.services-grid,
.why-grid,
.testimonial-grid,
.contact-grid,
.mission-grid,
.trust-grid,
.problems-grid,
.process-grid,
.areas-grid,
.care-grid {
  display: grid;
  gap: 30px;
}

/* ========================= */
/* SERVICES GRID */
/* ========================= */

.services-grid,
.why-grid,
.testimonial-grid,
.mission-grid,
.trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ========================= */
/* CONTACT GRID */
/* ========================= */

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ========================= */
/* AREA GRID */
/* ========================= */

.areas-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* ========================= */
/* CARE GRID */
/* ========================= */

.care-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ========================= */
/* PROCESS GRID */
/* ========================= */

.problems-grid,
.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ========================= */
/* CARDS */
/* ========================= */

.service-card,
.why-card,
.testimonial-card,
.contact-card,
.mission-card,
.trust-card,
.problem-card,
.process-card,
.care-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.service-card:hover,
.why-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.mission-card:hover,
.trust-card:hover,
.problem-card:hover,
.process-card:hover,
.care-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.18),
    0 8px 18px rgba(15,123,114,0.15);

  border-color: #0f766e;
}

/* ========================= */
/* SERVICE IMAGES */
/* ========================= */

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

/* ========================= */
/* FAQ SECTION */
/* ========================= */

.faq-item {
  margin-bottom: 30px;
}

.faq-item h3 {
  color: #0f766e;
  margin-bottom: 10px;
}

/* ========================= */
/* CTA SECTIONS */
/* ========================= */

.cta-section,
.about-cta,
.services-cta {
  text-align: center;
  color: white;
}

.cta-section,
.about-cta {
  background-color: #0f766e;
}

.services-cta {
  background-color: #f06e65;
}

.cta-section h2,
.about-cta h2,
.services-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-section p,
.about-cta p,
.services-cta p {
  margin-bottom: 30px;
}

/* ========================= */
/* CONTACT */
/* ========================= */

.contact-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-card h3 {
  color: #0f766e;
  margin-bottom: 15px;
}

.contact-card p {
  margin-bottom: 25px;
}

.contact-form {
  max-width: 700px;
  margin: auto;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

/* ========================= */
/* MAP */
/* ========================= */

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ========================= */
/* HOURS */
/* ========================= */

.hours-card {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.hours-card h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0f766e;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about-profile-container,
.qualifications-container,
.treatment-container,
.diabetic-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.profile-image img,
.qualifications-image img,
.treatment-image img,
.diabetic-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ========================= */
/* QUALIFICATION LIST */
/* ========================= */

.qualification-list {
  margin-top: 20px;
  padding-left: 20px;
}

.qualification-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* ========================= */
/* TREATMENT CONTENT */
/* ========================= */

.treatment-content ul {
  margin-top: 20px;
  padding-left: 20px;
}

.treatment-content li {
  margin-bottom: 12px;
}

/* ========================= */
/* PHILOSOPHY */
/* ========================= */

.philosophy-card {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* ========================= */
/* SERVICE AREA */
/* ========================= */

.service-area-text {
  text-align: center;
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
}

/* ========================= */
/* HOME VISIT */
/* ========================= */

.home-visit-card {
  background-color: #0f766e;
  color: white;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
}

.home-visit-card h2 {
  margin-bottom: 20px;
}

.home-visit-card p {
  margin-bottom: 30px;
}

/* ========================= */
/* CARE CARD */
/* ========================= */

.care-card h3 {
  margin-bottom: 20px;
  color: #0f766e;
}

.care-card ul {
  padding-left: 20px;
}

.care-card li {
  margin-bottom: 12px;
}

/* ========================= */
/* AREA CARD */
/* ========================= */

.area-card {
  background-color: #0f766e;
  color: white;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  font-weight: bold;
  transition: 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  background-color: #0b5f58;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
  background-color: #111827;
  color: #d1d5db;
  padding-top: 70px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
}

.footer-column h3 {
  color: white;
  margin-bottom: 20px;
}

.footer-column p {
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #d1d5db;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #25D366;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 0;
  color: #9ca3af;
}

/* ========================= */
/* WHATSAPP FLOAT */
/* ========================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 38px;
}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

  /* Header */

  .header-container {
    flex-wrap: nowrap;
    padding: 15px 0;
    align-items: center;
  }

  .logo {
    width: 85%;
    gap: 10px;
  }

  .logo img {
    width: 90px;
  }

  .logo-text h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .logo-text p {
    font-size: 0.9rem;
  }

  /* Hamburger */

  .menu-toggle {
    display: block;
    font-size: 2.3rem;
    margin-left: auto;
    padding-right: 5px;
  }

  /* Navbar */

  .navbar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0f766e;
    padding: 20px 0;
    z-index: 999;
  }

  .navbar.active {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .navbar a {
    font-size: 1.1rem;
  }

  /* Hero */

  .hero {
    height: 500px;
    padding: 20px;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
  .hero-btn {

    padding: 14px 26px;

    font-size: 0.95rem;

    width: auto;

    max-width: 90%;
  }
  /* Grids */

  .welcome-container,
  .about-profile-container,
  .qualifications-container,
  .treatment-container,
  .diabetic-container {
    grid-template-columns: 1fr;
  }

  /* Hours */

  .hours-row {
    flex-direction: column;
    gap: 5px;
  }

  /* Footer */

 .footer {

    text-align: left;

    padding-top: 40px;
  }

  .footer-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    padding-bottom: 30px;
  }

  .footer-column h3 {

    font-size: 1.1rem;

    margin-bottom: 12px;
  }

  .footer-column p,
  .footer-links a {

    font-size: 0.9rem;

    line-height: 1.5;
  }

  .footer-links li {

    margin-bottom: 8px;
  }

  .footer-bottom {

    font-size: 0.8rem;

    padding: 15px 10px;

    text-align: center;
  }
.footer-column:first-child {

    grid-column: 1 / -1;
  }


  /* Sections */

  section {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .cta-section h2,
  .about-cta h2,
  .services-cta h2 {
    font-size: 2rem;
  }

  .philosophy-card,
  .home-visit-card {
    padding: 30px;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
  }

  .whatsapp-float img {
    width: 32px;
  }

}
/* ========================= */
/* Mobile Navigation */
/* ========================= */

@media (max-width: 768px) {

  .navbar {

    position: fixed;

    top: 0;
    left: -100%;

    width: 280px;
    height: 100vh;

    background-color: #0f766e;

    padding: 80px 30px;

    transition: 0.35s ease;

    z-index: 9999;

    display: flex;
    flex-direction: column;
  }

  .navbar.active {

    left: 0;
  }

  .navbar ul {

    display: flex;
    flex-direction: column;

    gap: 25px;
  }

  .navbar ul li a {

    font-size: 1.2rem;

    color: white;
  }

  /* Close Button */

  .close-menu {

    position: absolute;

    top: 20px;
    right: 25px;

    font-size: 2rem;

    color: white;

    cursor: pointer;
  }

  /* Hamburger */

  .menu-toggle {

    display: block;

    font-size: 2.2rem;

    cursor: pointer;

    color: white;

    z-index: 10000;
  }

}
/* ========================= */
/* Hide Close Button on Desktop */
/* ========================= */

.close-menu {
  display: none;
}

/* ========================= */
/* Mobile Only */
/* ========================= */

@media (max-width: 768px) {

  .close-menu {
    display: block;
  }

}
/* ========================= */
/* Appointment Form */
/* ========================= */

.appointment-section {

  background-color: #f8fafc;
}

.appointment-form {

  max-width: 800px;

  margin: auto;

  background: white;

  padding: 50px;

  border-radius: 20px;

  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.appointment-form .form-group {

  margin-bottom: 25px;
}

.appointment-form label {

  display: block;

  margin-bottom: 10px;

  font-weight: 600;

  color: #0f172a;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {

  width: 100%;

  padding: 15px;

  border: 1px solid #d1d5db;

  border-radius: 10px;

  font-size: 1rem;

  transition: 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {

  outline: none;

  border-color: #0f7b72;

  box-shadow: 0 0 0 3px rgba(15,123,114,0.15);
}

.radio-group {

  display: flex;

  gap: 30px;

  margin-top: 10px;
}

.radio-group label {

  display: flex;

  align-items: center;

  gap: 8px;

  font-weight: normal;
}

.appointment-btn {

  width: 100%;

  background-color: #0f7b72;

  color: white;

  border: none;

  padding: 16px;

  border-radius: 10px;

  font-size: 1rem;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.appointment-btn:hover {

  background-color: #0b5f58;

  transform: translateY(-2px);

  box-shadow: 0 8px 18px rgba(15,123,114,0.25);
}

/* ========================= */
/* Mobile Responsive */
/* ========================= */

@media (max-width: 768px) {

  .appointment-form {

    padding: 30px 20px;
  }

  .radio-group {

    flex-direction: column;

    gap: 12px;
  }
}
