/* ============================================
   La Dentique Care - Shared Stylesheet
   Professional Dental Clinic | Olongapo City
   ============================================ */

/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&family=Roboto:wght@300;400;500;700&family=Open+Sans:wght@400;600;700&family=Herr+Von+Muellerhoff&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-body-text: #5d5d5d;
  --color-secondary-text: #7c7c7c;
  --color-heading: #171717;
  --color-footer-bg: #262626;
  --color-footer-dark: #171717;
  --color-teal: #578793;
  --color-blue: #227bc3;
  --color-light-bg: rgba(236, 236, 236, 0.96);
  --color-overlay-dark: rgba(0, 0, 0, 0.67);
  --color-messenger: #0084ff;

  --font-heading: 'Cabin', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-primary: 'Open Sans', sans-serif;
  --font-decorative: 'Herr Von Muellerhoff', cursive;

  --max-width: 1170px;
  --header-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  max-width: 100vw;
}

body {
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: var(--color-body-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul,
ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 10px;
}

h2 {
  font-size: 35px;
  text-transform: uppercase;
  letter-spacing: 10px;
}

h3 {
  font-size: 28px;
  color: var(--color-black);
}

h4 {
  font-size: 22px;
  color: #111;
}

h5 {
  font-family: var(--font-decorative);
  font-size: 45px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--color-body-text);
}

h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
}

p {
  margin-bottom: 16px;
  line-height: 2;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  background: var(--color-white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -5%;
  width: 110%;
  height: 120px;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(87, 135, 147, 0.7) 0%, transparent 70%);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  pointer-events: none;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.logo img {
  height: 55px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-heading);
  margin-left: 10px;
  line-height: 1.2;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-list a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-heading);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.nav-list a:hover {
  color: var(--color-teal);
  transform: scale(1.1);
}

.nav-list a.active {
  color: #3a6b78;
}

/* Dropdown Menu - base (hidden) */
.nav-list > li {
  position: relative;
}

.nav-dropdown {
  list-style: none;
  display: none;
}

.nav-dropdown a::after {
  display: none;
}

/* Desktop-only dropdown hover behavior */
@media (min-width: 769px) {
  /* Underlines removed — using scale + color instead */
  .nav-list > li:not(.nav-has-dropdown) > a::after,
  .nav-has-dropdown::after {
    display: none;
  }

  /* Dropdown panel */
  .nav-dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--color-teal);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1001;
  }

  .nav-list > li:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown li {
    display: block;
  }

  .nav-dropdown a {
    display: block;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-body-text);
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .nav-dropdown a:hover {
    color: var(--color-teal);
    background: rgba(87, 135, 147, 0.06);
  }

  .dropdown-arrow {
    display: none !important;
  }

  /* Desktop caret triangle */
  .nav-has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .nav-has-dropdown > a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    position: static;
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }

  .nav-has-dropdown:hover > a::after {
    transform: rotate(180deg);
  }
}

/* Dropdown arrow - hidden by default, shown per breakpoint */
.dropdown-arrow {
  display: none;
}

/* Nav CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 10px 20px;
  background: var(--color-messenger);
  color: var(--color-white);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #006fdd;
  color: var(--color-white);
}

.nav-cta i {
  font-size: 14px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-heading);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.48);
  opacity: 0.6;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9px;
  background: var(--color-teal);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 80px 20px;
}

.hero h1 {
  color: var(--color-heading);
  margin-bottom: 20px;
  font-size: 42px;
}

.hero .subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-body-text);
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Dark Overlay */
.hero-dark::before {
  background: var(--color-overlay-dark);
  opacity: 0.7;
}

.hero-dark h1,
.hero-dark .subtitle,
.hero-dark .breadcrumb,
.hero-dark .breadcrumb a,
.hero-dark .breadcrumb span {
  color: var(--color-white);
}

.hero-dark .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero-dark .breadcrumb a,
.hero-dark .breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}

.hero-dark .hero-cta .btn-messenger,
.hero-dark .hero-cta .btn-sms {
  color: var(--color-white);
}

/* Breadcrumb */
.breadcrumb {
  position: relative;
  z-index: 2;
  margin-top: 15px;
}

.breadcrumb a,
.breadcrumb span {
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-body-text);
}

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

.breadcrumb .separator {
  margin: 0 8px;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.hero-cta .btn {
  padding: 12px 24px;
  font-size: 11px;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--color-light-bg);
}

.section-teal {
  background: var(--color-teal);
  color: var(--color-white);
}

.section-teal h2,
.section-teal h3,
.section-teal h4 {
  color: var(--color-white);
}

.section-teal p {
  color: rgba(255, 255, 255, 0.9);
}

.section-dark {
  background: var(--color-heading);
  color: var(--color-white);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  margin-bottom: 15px;
}

.section-title p {
  color: var(--color-secondary-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Two Column Layout */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.col-half {
  flex: 1;
  min-width: 300px;
}

.col-left {
  flex: 0 0 45%;
}

.col-right {
  flex: 0 0 55%;
}

.col-quarter {
  flex: 0 0 25%;
}

.col-three-quarter {
  flex: 0 0 calc(75% - 40px);
}

/* ============================================
   CONTENT BLOCKS - UX SPACING
   ============================================ */
.content-block {
  margin-bottom: 50px;
}

.content-block h2 {
  margin-bottom: 25px;
  font-size: 28px;
  letter-spacing: 5px;
}

.content-block h3 {
  margin-bottom: 20px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.content-block h4 {
  margin-bottom: 15px;
}

.content-block p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-block ul {
  list-style: none;
  padding: 0;
}

.content-block ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.8;
}

.content-block ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-size: 12px;
}

.content-block ol {
  list-style: decimal inside;
  padding-left: 20px;
}

.content-block ol li {
  margin-bottom: 16px;
  line-height: 1.8;
  padding-left: 5px;
}

/* ============================================
   SERVICE CONTENT
   ============================================ */
.service-content {
  padding-top: 0;
}

/* Service page two-column layout */
.service-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.service-main {
  flex: 1;
  min-width: 0;
}

.service-sidebar {
  flex: 0 0 320px;
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}

.appointment-form {
  background: #fff;
  border: 2px solid var(--color-teal);
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 4px 20px rgba(87, 135, 147, 0.12);
}

.appointment-form h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.appointment-form .form-group {
  margin-bottom: 16px;
}

.appointment-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.appointment-form input,
.appointment-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-body-text);
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.appointment-form input:focus,
.appointment-form textarea:focus {
  outline: none;
  border-color: var(--color-teal);
}

.appointment-form textarea {
  resize: vertical;
  min-height: 80px;
}

.appointment-form .btn-submit {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--color-teal);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.appointment-form .btn-submit:hover {
  background: #3a6b78;
}

.appointment-form .form-note {
  text-align: center;
  font-size: 11px;
  color: #999;
  margin-top: 12px;
}

.service-breadcrumb {
  background: #f8f8f8;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
}

.service-breadcrumb nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-body-text);
}

.service-breadcrumb a {
  color: var(--color-teal);
  text-decoration: none;
}

.service-breadcrumb a:hover {
  text-decoration: underline;
}

.service-breadcrumb .separator {
  margin: 0 8px;
  color: #999;
}

/* ============================================
   SERVICE CARDS (Services Overview Page)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 0;
}

.service-card {
  display: block;
  position: relative;
  min-height: 120px;
  overflow: hidden;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  transition: background 0.3s ease;
  z-index: 1;
}

.service-card:hover::before {
  background: rgba(0, 0, 0, 0.4);
}

.service-card:hover {
  transform: scale(1.02);
  z-index: 3;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.service-card:hover .card-content {
  border-bottom: 3px solid var(--color-teal);
}

.service-card .card-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 30px 25px;
  height: 100%;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.service-card .card-icon {
  width: 50px;
  height: 50px;
  background: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-card .card-icon i {
  color: var(--color-white);
  font-size: 18px;
}

.service-card h4 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0;
}

/* ============================================
   SERVICES PAGE GRID
   ============================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 25px 35px;
  background: var(--color-white);
  border: 1px solid #eee;
  text-decoration: none;
  transition: all 0.3s ease;
}

.svc-card:hover {
  border-color: var(--color-teal);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.svc-icon {
  width: 70px;
  height: 70px;
  border: 2px solid var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.svc-card:hover .svc-icon {
  background: var(--color-teal);
}

.svc-icon i {
  font-size: 24px;
  color: var(--color-teal);
  transition: color 0.3s ease;
}

.svc-card:hover .svc-icon i {
  color: var(--color-white);
}

.svc-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-heading);
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 13px;
  color: var(--color-secondary-text);
  line-height: 1.7;
  margin-bottom: 15px;
  flex-grow: 1;
}

.svc-link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-teal);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.svc-card:hover .svc-link {
  color: var(--color-heading);
}

.svc-link i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.svc-card:hover .svc-link i {
  transform: translateX(4px);
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-messenger,
.btn-primary {
  background: var(--color-messenger);
  color: var(--color-white);
}

.btn-messenger:hover,
.btn-primary:hover {
  background: #006fdd;
  color: var(--color-white);
}

.btn-secondary,
.btn-sms {
  background: var(--color-heading);
  color: var(--color-white);
}

.btn-secondary:hover,
.btn-sms:hover {
  background: #333;
  color: var(--color-white);
}

.btn-teal {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn-teal:hover {
  background: #466e78;
  color: var(--color-white);
}

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

.btn-outline:hover {
  background: var(--color-heading);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-heading);
}

.btn-white:hover {
  background: #f0f0f0;
  color: var(--color-heading);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--color-teal);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 10px;
  font-size: 28px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 16px;
}

/* Content CTA (end of service content) */
.content-cta {
  text-align: center;
  padding: 40px 0 0;
  margin-top: 10px;
}

.content-cta p {
  font-size: 15px;
  color: var(--color-heading);
  margin-bottom: 15px;
  font-weight: 500;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 80px 0;
}

.faq-section > h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 25px 0;
}

.faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--color-teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 10px;
}

.faq-answer p {
  color: var(--color-body-text);
  line-height: 1.8;
}

/* ============================================
   RELATED SERVICES
   ============================================ */
.related-services {
  padding: 80px 0;
  background: var(--color-light-bg);
}

.related-services h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.related-card {
  background: var(--color-white);
  padding: 30px;
  text-align: center;
  border: 1px solid #eee;
  transition: box-shadow 0.3s ease;
}

.related-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.related-card i {
  display: block;
  font-size: 36px;
  color: var(--color-teal);
  margin-bottom: 15px;
}

.related-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.related-card p {
  font-size: 13px;
  color: var(--color-secondary-text);
  margin-bottom: 15px;
}

.related-card a {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-teal);
}

.related-card a:hover {
  color: var(--color-heading);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-footer-dark);
  padding-top: 60px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  background: var(--color-footer-bg);
  padding: 50px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h5 {
  font-family: var(--font-decorative);
  font-size: 35px;
  color: var(--color-white);
  margin-bottom: 5px;
}

.footer-col h6 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-info {
  list-style: none;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}

.footer-info li i {
  color: var(--color-teal);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-white);
}

.footer-map-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-map-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.footer-map-links a:hover {
  background: var(--color-teal);
}

/* Footer Map */
.footer-map {
  width: 100%;
  height: 200px;
  margin-top: 15px;
  border-radius: 4px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Payment Methods */
.footer-payments {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-payments h6 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}

.payment-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.payment-icon i {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.value-card {
  text-align: center;
  padding: 30px;
}

.value-card i {
  font-size: 36px;
  color: var(--color-teal);
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 13px;
  color: var(--color-secondary-text);
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-card {
  text-align: center;
  padding: 30px;
  background: var(--color-white);
  border: 1px solid #eee;
}

.contact-card i {
  font-size: 30px;
  color: var(--color-teal);
  margin-bottom: 15px;
}

.contact-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
  font-size: 14px;
  color: var(--color-body-text);
}

.map-container {
  width: 100%;
  height: 400px;
  border: none;
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-teal { color: var(--color-teal); }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================
   RESPONSIVE - TABLET & MOBILE (768px)
   Primary mobile-first optimization
   70% of users are on mobile
   ============================================ */
@media (max-width: 768px) {
  .service-layout {
    flex-direction: column;
  }

  .service-sidebar {
    flex: 1 1 100%;
    position: static;
    width: 100%;
  }

  /* Typography - mobile optimized */
  h1 {
    font-size: 26px;
    letter-spacing: 4px;
  }

  h2 {
    font-size: 22px;
    letter-spacing: 4px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  .content-block h2 {
    font-size: 22px;
    letter-spacing: 3px;
  }

  /* Hero - mobile */
  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-content {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 24px;
    letter-spacing: 4px;
    margin-bottom: 15px;
  }

  .hero .subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .breadcrumb {
    margin-top: 12px;
  }

  /* Hero CTA under breadcrumb - stack on mobile */
  .hero-cta {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Sections - tighter on mobile */
  .section {
    padding: 50px 0;
  }

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

  .content-block {
    margin-bottom: 40px;
  }

  .service-content {
    padding-top: 0;
  }

  /* ===== MOBILE NAVIGATION ===== */
  .logo-text {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    z-index: 1002;
    position: relative;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-heading);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  /* Hamburger → X animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  /* Mobile nav overlay */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.active {
    right: 0;
  }

  /* Dark backdrop when nav is open */
  .main-nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: -1;
  }

  .main-nav.active::before {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 80px 0 30px;
  }

  .nav-list > li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-list > li > a {
    display: block;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-bottom: none;
    transition: color 0.2s ease;
  }

  .nav-list > li > a:hover {
    color: var(--color-teal);
  }

  /* Logo on mobile */
  .logo img {
    height: 55px;
  }

  /* Mobile dropdown - collapsed, tap to expand */
  .nav-has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
  }

  /* Hide desktop caret on mobile */
  .nav-has-dropdown > a::after {
    display: none;
  }

  /* Show mobile chevron arrow */
  .nav-has-dropdown > a .dropdown-arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-body-text);
    border-bottom: 2px solid var(--color-body-text);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .nav-has-dropdown.open > a .dropdown-arrow {
    transform: rotate(-135deg);
  }

  .nav-dropdown {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: #f5f5f5;
    transition: max-height 0.35s ease;
  }

  .nav-has-dropdown.open .nav-dropdown {
    max-height: 600px;
  }

  .nav-dropdown li {
    display: block;
  }

  .nav-dropdown a {
    display: block;
    padding: 13px 24px 13px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-body-text);
    white-space: normal;
    min-height: 44px;
    line-height: 1.4;
  }

  .nav-dropdown a:active {
    color: var(--color-teal);
    background: rgba(87, 135, 147, 0.08);
  }

  /* Mobile CTA in nav - add messenger button at bottom */
  .nav-list::after {
    content: '';
    display: block;
    padding: 20px 24px 0;
  }

  /* Layout - stack everything */
  .row {
    flex-direction: column;
    gap: 25px;
  }

  .col-left,
  .col-right,
  .col-quarter,
  .col-three-quarter,
  .col-half {
    flex: 1 1 100%;
    min-width: 0;
  }

  /* CTA Section - mobile */
  .cta-section {
    padding: 50px 0;
  }

  .cta-section h2 {
    font-size: 22px;
    letter-spacing: 4px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 13px;
  }

  /* FAQ - mobile friendly touch targets */
  .faq-section {
    padding: 50px 0;
  }

  .faq-question {
    font-size: 15px;
    padding: 10px 0;
    min-height: 48px;
  }

  .faq-item {
    padding: 18px 0;
  }

  /* Content CTA - mobile */
  .content-cta .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  /* Footer - mobile */
  .site-footer {
    padding-top: 40px;
  }

  .footer-inner {
    padding: 35px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    min-width: 0;
  }

  .footer-col h5 {
    font-size: 28px;
  }

  .footer-col h6 {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .footer-map-links {
    flex-direction: column;
    gap: 8px;
  }

  .footer-map-links a {
    justify-content: center;
    padding: 12px 16px;
    font-size: 12px;
  }

  /* Services Grid - overview page */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .svc-card {
    padding: 30px 16px 25px;
  }

  .svc-icon {
    width: 56px;
    height: 56px;
  }

  .svc-icon i {
    font-size: 20px;
  }

  .svc-card h4 {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .service-card {
    min-height: 100px;
  }

  /* Related Grid */
  .related-services {
    padding: 50px 0;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .related-card {
    padding: 24px 16px;
  }

  .related-card i {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .related-card h4 {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .related-card p {
    font-size: 12px;
  }

  /* About page - values grid */
  .about-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .value-card {
    padding: 20px 15px;
  }

  /* Contact page */
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 280px;
  }

  /* Tap-friendly: all interactive elements min 44px */
  a, button, .btn, .faq-question {
    min-height: 44px;
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (500px)
   ============================================ */
@media (max-width: 500px) {
  h1 {
    font-size: 22px;
    letter-spacing: 3px;
  }

  h2 {
    font-size: 19px;
    letter-spacing: 3px;
  }

  .content-block h2 {
    font-size: 19px;
    letter-spacing: 2px;
  }

  .hero-content {
    padding: 50px 16px;
  }

  .hero h1 {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .container {
    padding: 0 16px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    font-size: 12px;
  }

  .section {
    padding: 40px 0;
  }

  .content-block {
    margin-bottom: 35px;
  }

  /* Related - single column on small phones */
  .related-grid {
    grid-template-columns: 1fr;
  }

  /* About values - single column */
  .about-values {
    grid-template-columns: 1fr;
  }

  /* Services page grid - single column */
  .svc-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-col h5 {
    font-size: 24px;
  }

  .footer-info li {
    font-size: 12px;
  }
}
