/* =========================================================
   DR. MAFT — INTERNATIONAL MEDICAL ADVISOR
   Main Website Styles
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #1d2939;
  line-height: 1.7;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e7ebef;
  backdrop-filter: blur(12px);
}

.nav-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  min-width: 250px;
}

.brand-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #123b4a;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: #667085;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.navigation a {
  color: #344054;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.navigation a:hover {
  color: #137c8b;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(19, 124, 139, 0.12), transparent 35%),
    linear-gradient(135deg, #f8fcfd 0%, #ffffff 55%, #f3f8f9 100%);
  border-bottom: 1px solid #e8eef0;
}

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

.hero-text {
  max-width: 780px;
}

.eyebrow {
  color: #137c8b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.95;
  font-weight: 900;
  color: #123b4a;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}

.hero h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.2;
  font-weight: 600;
  color: #344054;
  margin-bottom: 20px;
}

.hero-text > p strong {
  font-size: 1.1rem;
  color: #123b4a;
}

.hero-description {
  max-width: 690px;
  margin-top: 18px;
  font-size: 1.08rem;
  color: #667085;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: #137c8b;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(19, 124, 139, 0.18);
}

.btn-primary:hover {
  background: #0f6673;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  color: #123b4a;
  border: 1px solid #cfd8dc;
}

.btn-secondary:hover {
  border-color: #137c8b;
  color: #137c8b;
  transform: translateY(-2px);
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 95px 0;
}

.section-alt {
  background: #f7fafb;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading h2 {
  color: #123b4a;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  color: #667085;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-content {
  max-width: 850px;
}

.about-content p {
  color: #475467;
  font-size: 1.06rem;
  margin-bottom: 20px;
}


/* =========================================================
   CREDENTIALS
   ========================================================= */

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.credential-card {
  background: #ffffff;
  border: 1px solid #e5eaed;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.04);
}

.credential-card h3 {
  color: #123b4a;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.credential-card p {
  color: #667085;
  font-size: 0.96rem;
  margin-bottom: 10px;
}

.credential-card p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   SERVICES
   ========================================================= */

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

.service-card {
  padding: 30px;
  border: 1px solid #e5eaed;
  border-radius: 14px;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(16, 24, 40, 0.08);
}

.service-card h3 {
  color: #123b4a;
  font-size: 1.18rem;
  line-height: 1.3;
  margin-bottom: 13px;
}

.service-card p {
  color: #667085;
  font-size: 0.95rem;
}


/* =========================================================
   CONSULTATION
   ========================================================= */

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

.consultation-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  background: #ffffff;
  border: 1px solid #dfe7ea;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(16, 24, 40, 0.05);
}

.consultation-card h3 {
  min-height: 58px;
  color: #123b4a;
  font-size: 1.15rem;
  line-height: 1.35;
}

.price {
  color: #137c8b;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 22px 0;
}

.consultation-card p {
  color: #667085;
  font-size: 0.95rem;
  margin-bottom: 28px;
  flex-grow: 1;
}

.consultation-card .btn {
  width: 100%;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  position: relative;
  padding: 28px;
  border-top: 3px solid #137c8b;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.05);
}

.process-card span {
  display: block;
  color: #137c8b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.process-card h3 {
  color: #123b4a;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.process-card p {
  color: #667085;
  font-size: 0.92rem;
}


/* =========================================================
   PRIVACY
   ========================================================= */

.privacy-content {
  max-width: 850px;
  padding: 35px;
  background: #ffffff;
  border: 1px solid #e3eaed;
  border-radius: 14px;
}

.privacy-content p {
  color: #667085;
  margin-bottom: 18px;
}

.privacy-content p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-content {
  max-width: 700px;
  padding: 35px;
  background: #f7fafb;
  border: 1px solid #e3eaed;
  border-radius: 14px;
}

.contact-content p {
  color: #475467;
  margin-bottom: 14px;
}

.contact-content p:first-child {
  margin-bottom: 24px;
}

.contact-content a {
  color: #137c8b;
  font-weight: 600;
}

.contact-content a:hover {
  text-decoration: underline;
}


/* =========================================================
   DISCLAIMER
   ========================================================= */

.disclaimer {
  padding: 45px 0;
  background: #123b4a;
  color: #dce8eb;
}

.disclaimer p {
  max-width: 950px;
  margin: 0 auto 15px;
  font-size: 0.88rem;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 45px 0;
  text-align: center;
  background: #0d2d38;
  color: #b8c9ce;
}

.site-footer p {
  margin-bottom: 7px;
}

.site-footer strong {
  color: #ffffff;
  font-size: 1.2rem;
}

.site-footer .copyright {
  margin-top: 22px;
  font-size: 0.82rem;
  color: #829da5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .nav-container {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .navigation {
    justify-content: flex-start;
    gap: 14px 20px;
  }

  .hero {
    min-height: auto;
  }

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

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

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

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

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


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .container {
    width: min(92%, 520px);
  }

  .site-header {
    position: relative;
  }

  .nav-container {
    min-height: auto;
    padding: 20px 0;
  }

  .brand-title {
    font-size: 1.55rem;
  }

  .brand-subtitle {
    font-size: 0.63rem;
  }

  .navigation {
    width: 100%;
    gap: 10px 16px;
  }

  .navigation a {
    font-size: 0.82rem;
  }

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

  .hero h1 {
    font-size: 3.7rem;
  }

  .hero h2 {
    font-size: 1.55rem;
  }

  .hero-description {
    font-size: 1rem;
  }

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

  .hero-buttons .btn {
    width: 100%;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

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

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

  .credential-card,
  .service-card,
  .consultation-card,
  .privacy-content,
  .contact-content {
    padding: 25px;
  }

  .disclaimer {
    padding: 35px 0;
  }
}
