* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #FAFAFA;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-radius: 50px;
  justify-content: space-between;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 0.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: flex-start;
  margin-left: 0;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50px;
  display: inline-block;
}

.logo h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1B2B;
  font-family: "Instrument Serif", serif;
  margin: 0;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 10;
}

.nav-actions {
  position: absolute;
  right: 1rem;
  top: 50%;
  margin-right: -4%;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  align-items: center;
  z-index: 20;
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
}

.btn-contact-nav span,
.btn-contact-hero span {
  display: inline-block;
}

.nav-menu a {
  text-decoration: none;
  color: #0B1B2B;
  font-weight: 700;
  font-family: "Instrument Serif", serif;
  font-size: 1.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: .3s ease;
}

.nav-menu a:hover {
  color: #000;
}

.nav-menu a:hover::after {
  width: 100%;
}

.btn-appointment-nav {
  background: #1976D2;
  color: white;
  padding: .8rem 1.3rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-contact-nav {
  background: linear-gradient(90deg, #3FB5E6 0%, #1976D2 100%);
  color: #ffffff;
  border: none;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  box-shadow: 0 8px 26px rgba(25,118,210,0.18);
}

.btn-contact-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(25,118,210,0.22);
  opacity: .98;
}

.btn-contact-nav:focus {
  outline: none;
  box-shadow: 0 0 0 5px rgba(25,118,210,0.12);
}

.btn-appointment-nav:hover {
  background: #00aaff;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #0B1B2B;
  border-radius: 3px;
  transition: 0.3s;
}

/* Hamburger active state */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Navigation */
@media(max-width: 768px){
  .nav-menu {
    display: none;
    position: static;
    transform: none;
  }

  .nav-menu.active {
    display: flex;
    position: fixed;
    left: 0;
    top: 64px;
    width: 100%;
    flex-direction: column;
    background: whitesmoke;
    text-align: center;
    gap: 1rem;
    padding: 2rem 0;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .nav-actions {
    position: static;
    margin-left: auto;
    gap: .5rem;
  }

  .btn-appointment-nav, .btn-contact-nav {
    position: static;
    transform: none;
    right: auto;
    top: auto;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    background: rgb(233, 233, 233) transparent;
    border-bottom: none;
    box-shadow: none;
    border-radius: 50px;
  }

  .nav-container {
    padding: 1rem 1.25rem 0.75rem;
    max-width: 100%;
    position: relative;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50px;
    object-fit: cover;
  }

  .logo h2 {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .nav-menu {
    display: none;
  }

  .btn-appointment-nav {
    display: none;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
    gap: 5px;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
    background: #0B1B2B;
  }
}

/* ============================================
   CONTACT SECTION
============================================ */

/* Contact/Appointment Section */
.contact-section {
    padding: 1rem 4rem;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    margin-top: -8rem;
}

/* Subtle background decoration */
.contact-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-container {
    max-width: 1400px;
    text-align: left;
    position: relative;
    z-index: 1;
}

/* Header */
.contact-header {
    text-align: left;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: rgba(25, 118, 210, 0.06);
    border: 1px solid rgba(25, 118, 210, 0.15);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1976D2;
    margin-bottom: 0.5rem;
}

.section-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #1976D2;
    border-radius: 50%;
}

.contact-title {
    font-family: "instrument Serif", serif;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.2;
    color: #0a0a0a;
    margin-bottom: 1rem;
    letter-spacing: 0.5;
}

.contact-subtitle {
    font-size: 1.05rem;
    text-align: left;
    color: #2d2d2d;
    max-width: 700px;
}

/* Two Column Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

/* Left Column - Info */
.contact-info {
    position: sticky;
    top: 2rem;
}

.info-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

/* EMOTIONAL LINE - NEW */
.info-emotional {
    font-size: 1.05rem;
    color: #1976D2;
    margin-bottom: 1rem;
    font-weight: 500;
    font-style: italic;
}

.info-text {
    font-size: 1rem;
    color: #2d2d2d;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.detail-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #F7FBFF 0%, #EEF7FF 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(11,27,43,0.06);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.detail-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #1976D2;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Premium variant for contact icons */
.detail-icon.premium {
  background: linear-gradient(135deg, #eefbff 0%, #1976D2 100%);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 208, 245, 0.14);
  border: 1px solid rgba(0, 192, 245, 0.12);
  transform: translateZ(0);
}

.detail-icon.premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 233, 245, 0.16);
}

.premium-icon {
  color: #0099b4;
  filter: drop-shadow(0 10px 24px rgba(0, 168, 180, 0.12));
}

.premium-icon path,
.premium-icon circle,
.premium-icon rect,
.premium-icon line,
.premium-icon polyline,
.premium-icon polygon {
  stroke: currentColor;
  fill: none;
}

.detail-icon.premium::after {
  content: '★';
  position: absolute;
  top: -6px;
  right: -6px;
  background: #fff;
  color: #F5B400;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border: 2px solid rgba(255,255,255,0.6);
}

.detail-content {
    flex: 1;
    padding-top: 0.25rem;
}

.detail-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.detail-value {
    font-size: 1.05rem;
    color: #0a0a0a;
    font-weight: 500;
    line-height: 1.6;
}

.detail-value a {
    color: #1976D2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-value a:hover {
    color: #1565C0;
}

/* Right Column - Form */
.appointment-form-wrapper {
    background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 2rem 3rem;
    margin-top: -13rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

/* TRUST BADGES ROW - NEW */
.trust-badges {
    display: flex;
    justify-content: space-around;
    gap: 1.5rem;
    padding: 1.5rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4a5568;
    font-weight: 500;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    fill: #4CAF50;
    flex-shrink: 0;
}

/* FORM SECTION DIVIDERS - NEW */
.form-section {
    margin-bottom: 1rem;
}

.form-section:last-of-type {
    margin-bottom: 0;
}

.form-section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1976D2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-bottom: 0.50rem;
    margin-top: -1.5rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.50rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.65rem;
}

.form-label .required {
    color: #DC2626;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1.25rem;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    color: #0a0a0a;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #1976D2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231976D2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* HERO TREATMENT INPUT - NEW */
.treatment-group {
    background: linear-gradient(135deg, rgba(235, 245, 251, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(25, 118, 210, 0.1);
    margin-bottom: 2rem;
}

.treatment-group .form-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.treatment-helper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #1976D2;
    margin-bottom: 1rem;
    font-weight: 500;
}

.treatment-helper svg {
    width: 16px;
    height: 16px;
    fill: #1976D2;
}

.treatment-group .form-select {
    padding: 1.15rem 1.25rem;
    font-weight: 500;
}

.treatment-info {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.75rem;
    font-style: italic;
    line-height: 1.5;
}

/* Two Column Form Fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 1.3rem 2rem;
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(25, 118, 210, 0.25);
    margin-top: 1rem;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(25, 118, 210, 0.35);
}

.submit-button:active {
    transform: translateY(-1px);
}

/* MICRO-TRUST UNDER BUTTON - NEW */
.button-trust {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 1rem;
    font-weight: 500;
}

/* Form Note */
.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        position: static;
    }

    .contact-title {
        font-size: 2.8rem;
    }

    .trust-badges {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 2rem;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .appointment-form-wrapper {
        padding: 2rem 1.75rem;
    }

    .treatment-group {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .info-heading {
        font-size: 1.75rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-item {
        justify-content: center;
    }
}

/* ============================================
   FOOTER SECTION
============================================ */

.footer {
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
    color: #ffffff;
    padding: 5rem 5% 2rem;
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.footer::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    display: block;
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1976D2 0%, #42A5F5 100%);
    border-radius: 2px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.75rem;
    font-weight: 300;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(25, 118, 210, 0.15);
    border: 1px solid rgba(25, 118, 210, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    color: #42A5F5;
    font-weight: 500;
}

.footer-badge svg {
    width: 16px;
    height: 16px;
    fill: #42A5F5;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 400;
}

.footer-links li a:hover {
    color: #42A5F5;
    transform: translateX(3px);
}

/* Contact Info Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.contact-label svg {
    width: 14px;
    height: 14px;
    fill: #42A5F5;
}

.contact-value {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.5;
}

.contact-value a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #42A5F5;
}

.contact-address {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Hours Box */
.hours-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 0.5rem;
}

.hours-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.hours-time {
    font-size: 1.15rem;
    font-weight: 600;
    color: #42A5F5;
    margin-bottom: 0.5rem;
}

.hours-closed {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.footer-credentials {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    margin-top: 0.25rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-legal a:hover {
    color: #42A5F5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        gap: 3rem;
    }

    .footer-brand {
        padding-right: 1rem;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: 4rem 5% 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 5% 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-logo {
        font-size: 1.75rem;
    }

    .footer-title {
        font-size: 1.15rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 5% 1.5rem;
    }

    .footer-main {
        gap: 2rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .contact-value {
        font-size: 0.95rem;
    }
}


/* PAGE LOADER */
.page-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #FFF; z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease; }
.loader-content { text-align: center; }
.loader-logo { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: #1976D2; margin-bottom: 1.5rem; animation: logoFade 1.5s ease-in-out infinite; }
.loader-line { width: 200px; height: 3px; background: rgba(25, 118, 210, 0.1); border-radius: 10px; overflow: hidden; margin: 0 auto; }
.loader-progress { height: 100%; width: 0; background: linear-gradient(90deg, #1976D2 0%, #4299E1 100%); animation: loadProgress 1.2s ease-out forwards; }
@keyframes logoFade { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes loadProgress { to { width: 100%; } }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.text-reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.text-reveal.visible { opacity: 1; transform: translateY(0); }

/* BADGE */
.section-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.5rem; background: rgba(25, 118, 210, 0.06); border: 1px solid rgba(25, 118, 210, 0.15); border-radius: 30px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #1976D2; margin-bottom: 1.5rem; }
.section-badge::before { content: ''; width: 6px; height: 6px; background: #1976D2; border-radius: 50%; animation: badgePulse 2.5s ease-in-out infinite; }
@keyframes badgePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

/* HERO */
.services-hero { background: linear-gradient(135deg, #F8FAFB 0%, #FFF 100%); padding: 7rem 4rem 6rem; position: relative; overflow: hidden; }
.services-hero::before { content: ''; position: absolute; top: -10%; right: -5%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(25, 118, 210, 0.03) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: 3.75rem; font-weight: 700; color: #0a0a0a; margin-bottom: 1.75rem; line-height: 1.15; letter-spacing: -0.02em; }
.hero-description { font-size: 1.1rem; color: #4a5568; line-height: 1.85; margin-bottom: 2rem; }
.hero-trust-line { font-size: 1.05rem; color: #1976D2; font-style: italic; font-weight: 500; }
.hero-image { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); position: relative; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-image:hover { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12); transform: translateY(-5px); }
.hero-image img { width: 100%; height: 500px; object-fit: cover; }
.parallax-wrapper { overflow: hidden; position: relative; }
.parallax-image { transform: scale(1.15); transition: transform 0.1s ease-out; will-change: transform; }

/* HOW TO READ */
.category-nav { padding: 5rem 4rem; background: #fff; }
.category-container { max-width: 1400px; margin: 0 auto; }
.how-to-read-title { text-align: center; margin-bottom: 3rem; }
.how-to-read-title h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.75rem; color: #0B1B2B; font-weight: 600; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.category-card { background: linear-gradient(135deg, #F8FAFB 0%, #FFF 100%); border: 1px solid rgba(0, 0, 0, 0.05); border-radius: 24px; padding: 2.5rem 2rem; text-align: center; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.category-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #1976D2 0%, #4299E1 100%); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.category-card:hover::before { transform: scaleX(1); }
.category-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); background: #fff; }
.category-icon { width: 68px; height: 68px; background: linear-gradient(135deg, #EEF7FF 0%, #D6EAF8 100%); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 8px 20px rgba(25, 118, 210, 0.15); }
.category-card:hover .category-icon { transform: scale(1.1) rotate(-5deg); background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%); box-shadow: 0 12px 32px rgba(25, 118, 210, 0.3); }
.category-icon svg { width: 32px; height: 32px; stroke: #1976D2; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.5s ease; }
.category-card:hover .category-icon svg { stroke: #fff; }
.category-name { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 600; color: #0a0a0a; margin-bottom: 0.5rem; }
.category-subtitle { font-size: 0.9rem; color: #64748b; font-weight: 400; }

/* FILTERS (STICKY) */
.filter-section { padding: 1.5rem 0; background: white; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
.filter-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.filter-btn { padding: 0.75rem 1.75rem; border: 2px solid #e5e7eb; background: white; color: #4b5563; font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600; border-radius: 50px; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); white-space: nowrap; }
.filter-btn:hover { border-color: #1976D2; color: #1976D2; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(25, 118, 210, 0.15); }
.filter-btn.active { background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%); border-color: #1976D2; color: white; box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3); }

/* CASES SECTION */
.treatments-section { padding: 5rem 4rem; margin-bottom: 6rem; background: linear-gradient(180deg, #FAFAFA 0%, #F5F7FA 100%); }
.treatments-container { max-width: 1200px; margin: 0 auto; }
.case-studies-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; max-width: 950px; margin: 0 auto; }

/* CASE CARD */
.case-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; border: 1px solid rgba(0, 0, 0, 0.05); }
.case-card:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12); transform: translateY(-6px); border-color: rgba(25, 118, 210, 0.2); }
.case-number { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); padding: 0.6rem 1.25rem; border-radius: 50px; font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700; color: #1976D2; z-index: 10; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); letter-spacing: 0.5px; }

/* BEFORE/AFTER IMAGES */
.case-images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: relative; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
.case-image-item { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.case-image-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.case-card:hover .case-image-item img { transform: scale(1.08); }
.image-badge { position: absolute; bottom: 1.25rem; left: 1.25rem; padding: 0.6rem 1.25rem; border-radius: 50px; font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; backdrop-filter: blur(10px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }
.image-badge.before { background: rgba(239, 68, 68, 0.95); color: white; }
.image-badge.after { background: rgba(34, 197, 94, 0.95); color: white; }

/* CASE INFO */
.case-info { padding: 2.5rem; }
.case-tag-duration { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 2px solid #f3f4f6; }
.case-tag { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.5rem; background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%); color: white; font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 700; border-radius: 50px; box-shadow: 0 4px 12px rgba(25, 118, 210, 0.25); }
.case-duration { font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: #6b7280; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }
.case-duration::before { content: '⏱'; font-size: 1.1rem; }

/* DETAILS */
.case-details-section { display: grid; gap: 2rem; margin-bottom: 2.5rem; }
.detail-block { position: relative; padding-left: 1.5rem; }
.detail-block::before { content: ''; position: absolute; left: 0; top: 0.35rem; width: 4px; height: calc(100% - 0.35rem); background: linear-gradient(180deg, #1976D2 0%, #4299E1 100%); border-radius: 10px; }
.detail-title { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 700; color: #1976D2; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 0.75rem; }
.detail-text { font-family: 'Outfit', sans-serif; font-size: 1rem; line-height: 1.75; color: #374151; }
.treatment-list-case { list-style: none; padding: 0; margin: 0.5rem 0 0 0; display: flex; flex-direction: column; gap: 0.65rem; }
.treatment-list-case li { font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: #374151; padding-left: 2rem; position: relative; line-height: 1.6; }
.treatment-list-case li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: linear-gradient(135deg, #1976D2 0%, #4299E1 100%); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.75rem; box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3); }

/* REVIEW BOX */
.case-review-box { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 2rem; border-radius: 16px; position: relative; border: 1px solid rgba(0, 0, 0, 0.05); }
.quote-icon { width: 36px; height: 36px; fill: #1976D2; opacity: 0.25; margin-bottom: 1rem; }
.review-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; line-height: 1.8; color: #1a1a1a; margin-bottom: 1rem; font-style: italic; font-weight: 500; }
.review-author { font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700; color: #1976D2; display: flex; align-items: center; gap: 0.5rem; }
.review-author::before { content: '—'; color: #6b7280; }

/* HIDDEN/LOAD MORE */
.hidden-cases { display: none; grid-column: 1; }
.hidden-cases.visible { display: grid; grid-template-columns: 1fr; gap: 3.5rem; animation: fadeInCases 0.6s ease-out; }
@keyframes fadeInCases { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.load-more-wrapper { grid-column: 1; display: flex; justify-content: center; margin-top: 2rem;margin-bottom: 4rem;}
.btn-load-more { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem 3rem; background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%); color: white; font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; border: none; border-radius: 50px; cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 6px 20px rgba(25, 118, 210, 0.3); }
.btn-load-more:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(25, 118, 210, 0.4); }
.btn-load-more svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2.5; transition: transform 0.3s ease; }
.btn-load-more:hover svg { transform: translateY(3px); }

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-title { font-size: 3.2rem; }
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .filter-section { top: 0; }
}

@media (max-width: 768px) {
  .services-hero { padding: 4rem 1.5rem 3rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-image img { height: 320px; }
  .category-nav { padding: 3.5rem 1.5rem; }
  .category-grid { grid-template-columns: 1fr; }
  .filter-section { padding: 1rem 0; }
  .filter-container { padding: 0 1rem; gap: 0.65rem; overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; }
  .filter-btn { font-size: 0.85rem; padding: 0.65rem 1.35rem; flex-shrink: 0; }
  .treatments-section { padding: 3rem 1.5rem; }
  .case-images-grid { grid-template-columns: 1fr; }
  .case-number { top: 1rem; right: 1rem; font-size: 0.75rem; padding: 0.5rem 1rem; }
  .image-badge { font-size: 0.7rem; padding: 0.5rem 1rem; bottom: 1rem; left: 1rem; }
  .case-info { padding: 1.75rem; }
  .case-tag-duration { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .detail-text { font-size: 0.95rem; }
  .review-quote { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .how-to-read-title h2 { font-size: 2rem; }
  .case-studies-grid { gap: 2.5rem; }
  .case-info { padding: 1.5rem; }
  .load-more-wrapper { margin-bottom: 8rem; padding: 1px  1px; }
}

.logo h2 span {
  color: #1CA7EC; /* accent blue */
}