/* =========================
   ALTORA CARE - MAIN STYLES
   ========================= */

:root {
  --navy: #10224d;
  --teal: #14a6a1;
  --orange: #f5a623;
  --pink: #f05c8b;
  --mint: #84cdb4;

  --dark: #263630;
  --text: #5f6f68;

  --cream: #fffaf3;
  --soft-teal: #edf9f7;
  --soft-orange: #fff4e5;
  --soft-pink: #fff0f5;
  --soft-mint: #eef8f3;

  --white: #ffffff;
  --border: #e6ece8;
}


/* =========================
   RESET
   ========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: #ffffff;
  line-height: 1.6;
}

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

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


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

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);

  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  min-height: 88px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
}

.logo-link {
  display: block;
}

.logo {
  width: 160px;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  color: var(--navy);

  font-size: 15px;
  font-weight: 600;

  transition: 0.2s ease;
}

.main-nav a:hover {
  color: var(--teal);
}

.nav-button {
  background: var(--teal);
  color: #ffffff !important;

  padding: 11px 20px;
  border-radius: 30px;
}

.nav-button:hover {
  background: var(--navy);
}


/* =========================
   MOBILE MENU BUTTON
   ========================= */

.menu-toggle {
  display: none;

  width: 46px;
  height: 46px;

  border: none;
  background: var(--soft-teal);

  border-radius: 50%;

  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;
}

.menu-toggle span {
  width: 21px;
  height: 2px;

  background: var(--navy);

  border-radius: 10px;

  display: block;
}


/* =========================
   COMMON TYPOGRAPHY
   ========================= */

.eyebrow {
  color: var(--teal);

  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;

  margin-bottom: 16px;
}

.eyebrow.light {
  color: #ffffff;
}

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

.section-heading h2,
.why-altora h2,
.cta h2,
.about-content h2,
.support-two-column h2,
.location-box h2,
.service-area-box h2,
.contact-info h2 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;

  letter-spacing: -1.5px;

  margin-bottom: 18px;

  color: var(--navy);
}

.section-heading > p:last-child {
  color: var(--text);
  font-size: 18px;
}


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

.button {
  display: inline-block;

  text-decoration: none;
  font-weight: 700;

  padding: 14px 25px;

  border-radius: 30px;

  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary-button {
  background: var(--teal);
  color: #ffffff;
}

.primary-button:hover {
  background: var(--navy);
}

.secondary-button {
  background: #ffffff;
  color: var(--navy);

  border: 2px solid var(--teal);
}

.white-button {
  background: #ffffff;
  color: var(--navy);

  white-space: nowrap;
}


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

.hero {
  padding: 80px 0 90px;

  background:
    linear-gradient(
      135deg,
      #edf9f7 0%,
      #fff7ec 50%,
      #fff1f6 100%
    );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 70px;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.02;

  letter-spacing: -3px;

  margin-bottom: 25px;

  color: var(--navy);
}

.hero h1 span {
  color: var(--teal);
}

.hero-text {
  max-width: 550px;

  font-size: 19px;
  color: var(--text);

  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;

  gap: 14px;

  flex-wrap: wrap;
}

.hero-image-container {
  position: relative;
}

.hero-image-container::before {
  content: "";

  position: absolute;

  width: 130px;
  height: 130px;

  border-radius: 50%;

  background: var(--orange);

  top: -30px;
  right: -30px;

  opacity: 0.85;

  z-index: 0;
}

.hero-image-container::after {
  content: "";

  position: absolute;

  width: 85px;
  height: 85px;

  border-radius: 50%;

  background: var(--pink);

  bottom: -25px;
  left: -25px;

  opacity: 0.8;

  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 525px;

  object-fit: cover;

  border-radius: 28px;

  display: block;

  position: relative;
  z-index: 1;

  box-shadow: 0 18px 45px rgba(28, 57, 48, 0.12);
}


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

.services {
  padding: 100px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

.service-card {
  padding: 42px;

  border-radius: 24px;

  border: 1px solid var(--border);

  transition: 0.2s ease;
}

.service-card:nth-child(1) {
  background: var(--soft-teal);
}

.service-card:nth-child(2) {
  background: var(--soft-orange);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--teal);
  color: #ffffff;

  font-weight: 700;

  margin-bottom: 28px;
}

.service-card:nth-child(2) .service-icon {
  background: var(--orange);
}

.service-card h3 {
  font-size: 27px;

  margin-bottom: 13px;

  color: var(--navy);
}

.service-card p {
  color: var(--text);

  margin-bottom: 24px;
}

.service-card a {
  color: var(--teal);

  text-decoration: none;

  font-weight: 700;
}


/* =========================
   WHY ALTORA
   ========================= */

.why-altora {
  background: var(--soft-mint);

  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 80px;
}

.why-description {
  color: var(--text);

  font-size: 18px;

  max-width: 500px;
}

.benefits {
  display: flex;

  flex-direction: column;
}

.benefit {
  display: flex;

  gap: 18px;

  padding: 20px 0;

  border-bottom: 1px solid #d7e6de;
}

.benefit span {
  width: 34px;
  height: 34px;

  min-width: 34px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--teal);
  color: #ffffff;

  font-size: 17px;
  font-weight: bold;
}

.benefit:nth-child(2) span {
  background: var(--orange);
}

.benefit:nth-child(3) span {
  background: var(--pink);
}

.benefit:nth-child(4) span {
  background: var(--mint);
}

.benefit h3 {
  margin-bottom: 3px;

  color: var(--navy);
}

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


/* =========================
   GENERAL PAGE HERO
   ========================= */

.page-hero {
  padding: 90px 0;

  background:
    linear-gradient(
      120deg,
      var(--soft-teal),
      var(--cream),
      var(--soft-pink)
    );
}

.page-hero h1 {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;

  letter-spacing: -2px;

  max-width: 850px;

  margin-bottom: 24px;

  color: var(--navy);
}

.page-hero-text {
  max-width: 700px;

  font-size: 20px;

  color: var(--text);

  margin-bottom: 28px;
}


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

.about-section {
  padding: 100px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 80px;
}

.about-content p {
  color: var(--text);

  font-size: 18px;

  margin-bottom: 22px;
}


/* ABOUT VALUES */

.values-section {
  padding: 100px 0;

  background: #f9fbfa;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 22px;
}

.value-card {
  padding: 35px;

  border-radius: 22px;
}

.value-card:nth-child(1) {
  background: var(--soft-teal);
}

.value-card:nth-child(2) {
  background: var(--soft-orange);
}

.value-card:nth-child(3) {
  background: var(--soft-pink);
}

.value-card:nth-child(4) {
  background: var(--soft-mint);
}

.value-card h3 {
  font-size: 23px;

  margin-bottom: 10px;

  color: var(--navy);
}

.value-card p {
  color: var(--text);
}


/* ABOUT LOCATION */

.about-location {
  padding: 90px 0;
}

.location-box {
  background:
    linear-gradient(
      135deg,
      var(--navy),
      #184965
    );

  color: #ffffff;

  padding: 55px;

  border-radius: 28px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 40px;
}

.location-box h2 {
  color: #ffffff;
}

.location-box p {
  max-width: 700px;

  color: #dbe7e4;

  font-size: 18px;
}

.location-box .eyebrow {
  color: var(--mint);
}


/* =========================
   SUPPORT PAGES
   ========================= */

.support-intro {
  padding: 100px 0;
}

.support-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 80px;
}

.support-copy p {
  font-size: 18px;

  color: var(--text);

  margin-bottom: 22px;
}

.support-features {
  background: #f8faf9;

  padding: 100px 0;
}

.support-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}

.support-card {
  border-radius: 22px;

  padding: 34px;

  transition: 0.2s ease;
}

.support-card:nth-child(6n + 1) {
  background: var(--soft-teal);
}

.support-card:nth-child(6n + 2) {
  background: var(--soft-orange);
}

.support-card:nth-child(6n + 3) {
  background: var(--soft-pink);
}

.support-card:nth-child(6n + 4) {
  background: var(--soft-mint);
}

.support-card:nth-child(6n + 5) {
  background: #f4f1ff;
}

.support-card:nth-child(6n + 6) {
  background: #fff8e8;
}

.support-card:hover {
  transform: translateY(-4px);
}

.support-card span {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  border-radius: 50%;

  background: var(--navy);
  color: #ffffff;

  font-size: 13px;
  font-weight: 700;

  margin-bottom: 25px;
}

.support-card:nth-child(2) span {
  background: var(--orange);
}

.support-card:nth-child(3) span {
  background: var(--pink);
}

.support-card:nth-child(4) span {
  background: var(--mint);
}

.support-card:nth-child(5) span {
  background: var(--teal);
}

.support-card:nth-child(6) span {
  background: var(--orange);
}

.support-card h3 {
  font-size: 22px;

  margin-bottom: 12px;

  color: var(--navy);
}

.support-card p {
  color: var(--text);
}

.support-approach {
  padding: 100px 0;

  background: var(--soft-teal);
}

.service-area-section {
  padding: 90px 0 20px;
}

.service-area-box {
  background:
    linear-gradient(
      135deg,
      var(--soft-orange),
      var(--soft-pink)
    );

  border-radius: 28px;

  padding: 55px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 40px;
}

.service-area-box p {
  max-width: 680px;

  font-size: 18px;

  color: var(--text);
}


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

.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: start;
}

.contact-info > p {
  font-size: 18px;

  color: var(--text);

  max-width: 520px;

  margin-bottom: 35px;
}


/* CONTACT DETAILS */

.contact-details {
  display: flex;

  flex-direction: column;

  gap: 0;
}

.contact-detail {
  padding: 22px 0;

  border-bottom: 1px solid var(--border);
}

.contact-detail:first-child {
  border-top: 1px solid var(--border);
}

.contact-detail h3 {
  color: var(--navy);

  font-size: 19px;

  margin-bottom: 4px;
}

.contact-detail p {
  color: var(--text);

  font-size: 17px;
}

.contact-detail a {
  text-decoration: none;

  color: var(--teal);

  font-weight: 600;
}

.contact-detail a:hover {
  color: var(--navy);
}


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

.contact-form-wrapper {
  width: 100%;

  background:
    linear-gradient(
      145deg,
      var(--soft-teal),
      #ffffff,
      var(--soft-orange)
    );

  padding: 40px;

  border-radius: 28px;

  box-shadow: 0 14px 40px rgba(16, 34, 77, 0.08);
}

.contact-form {
  width: 100%;

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.form-group {
  width: 100%;

  display: flex;

  flex-direction: column;

  gap: 8px;
}

.form-group label {
  display: block;

  font-weight: 700;

  color: var(--navy);

  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  display: block;

  padding: 15px 16px;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 16px;

  color: var(--dark);

  background: #ffffff;

  border: 1px solid #dce5e1;

  border-radius: 12px;

  outline: none;

  min-height: 52px;
}

.form-group textarea {
  min-height: 150px;

  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);

  box-shadow: 0 0 0 3px rgba(20, 166, 161, 0.10);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa6a1;
}

.form-button {
  width: 100%;

  border: none;

  cursor: pointer;

  font-size: 16px;

  text-align: center;

  margin-top: 5px;
}


/* =========================
   CTA
   ========================= */

.cta {
  padding: 90px 0;
}

.cta-box {
  background:
    linear-gradient(
      135deg,
      var(--teal),
      var(--navy)
    );

  color: #ffffff;

  border-radius: 28px;

  padding: 60px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

.cta-box h2 {
  color: #ffffff;
}

.cta-box p {
  max-width: 620px;

  opacity: 0.92;
}


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

.site-footer {
  background: var(--navy);

  color: #ffffff;

  padding: 70px 0 25px;

  border-top: 6px solid var(--teal);
}

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 60px;
}

.footer-logo {
  width: 160px;

  margin-bottom: 20px;
}

.footer-grid p {
  color: #d4dced;

  max-width: 400px;
}

.footer-grid h4 {
  margin-bottom: 16px;

  color: var(--mint);
}

.footer-grid a {
  display: block;

  text-decoration: none;

  color: #d4dced;

  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 55px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  display: flex;
  justify-content: space-between;

  gap: 30px;

  font-size: 12px;

  color: #aeb9cd;
}


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

@media (max-width: 950px) {

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

}


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

@media (max-width: 850px) {

  .container {
    width: 92%;
  }

  .nav-container {
    min-height: 74px;

    padding: 12px 0;
  }

  .logo {
    width: 145px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;

    position: absolute;

    top: 74px;
    right: 0;

    width: min(330px, 92vw);

    background: #ffffff;

    padding: 18px;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(16, 34, 77, 0.15);

    flex-direction: column;

    align-items: stretch;

    gap: 4px;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 13px 14px;

    border-radius: 11px;

    font-size: 16px;
  }

  .main-nav a:hover {
    background: var(--soft-teal);
  }

  .main-nav .nav-button {
    text-align: center;

    margin-top: 7px;
  }


  /* HERO */

  .hero {
    padding: 55px 0 65px;
  }

  .hero-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-image {
    height: 380px;
  }


  /* GRIDS */

  .service-grid,
  .why-grid,
  .about-content,
  .support-two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .about-content,
  .support-two-column,
  .contact-grid {
    gap: 45px;
  }

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


  /* ABOUT / LOCATION */

  .location-box {
    flex-direction: column;

    align-items: flex-start;

    padding: 38px 30px;
  }


  /* CONTACT */

  .contact-section {
    padding: 65px 0;
  }

  .contact-form-wrapper {
    padding: 30px 24px;
  }

  .contact-detail {
    padding: 18px 0;
  }


  /* CTA */

  .cta-box {
    padding: 40px 30px;

    align-items: flex-start;

    flex-direction: column;
  }


  /* FOOTER */

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

    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
  }

}


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

@media (max-width: 700px) {

  .page-hero {
    padding: 60px 0;
  }

  .page-hero h1 {
    font-size: 43px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .services,
  .why-altora,
  .about-section,
  .values-section,
  .support-intro,
  .support-features,
  .support-approach {
    padding: 65px 0;
  }

  .support-card-grid {
    grid-template-columns: 1fr;
  }

  .service-area-box {
    flex-direction: column;

    align-items: flex-start;

    padding: 35px 28px;
  }

  .service-card,
  .support-card,
  .value-card {
    padding: 28px;
  }

  .cta {
    padding: 65px 0;
  }

}


/* =========================
   EXTRA SMALL MOBILE
   ========================= */

@media (max-width: 480px) {

  .container {
    width: 92%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 39px;

    letter-spacing: -1.5px;
  }

  .hero-text,
  .page-hero-text {
    font-size: 17px;
  }

  .hero-image {
    height: 330px;

    border-radius: 20px;
  }

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

  .hero-buttons .button {
    width: 100%;

    text-align: center;
  }

  .contact-form-wrapper {
    padding: 24px 18px;

    border-radius: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;

    padding: 14px;
  }

  .cta-box {
    border-radius: 22px;
  }

}
