/* ========================================
   FEDEDERM BEAUTY - Inner Pages Styles
======================================== */

/* --- Page Banner / Hero --- */
.page-banner {
  position: relative;
  padding: 196px 0 80px;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 50%, var(--coral) 100%);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  background-size: 80px 80px;
}

.page-banner .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-banner-content {
  max-width: 700px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb .separator {
  font-size: 10px;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-banner h1 em {
  color: var(--peach);
  font-style: italic;
}

.page-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 560px;
}

/* --- Services Main Page --- */
.services-main {
  padding: 80px 0;
}

.services-category {
  margin-bottom: 80px;
}

.services-category:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--beige);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.category-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--brown-dark);
  font-weight: 600;
}

.category-header h2 span {
  color: var(--coral);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--brown-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.service-card-body p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  transition: gap 0.3s;
}

.service-card:hover .service-card-link {
  gap: 10px;
}


/* ======== SERVICE DETAIL PAGE ======== */

.service-detail {
  padding: 80px 0;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

/* Main content area */
.service-content h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--brown-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.service-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--brown-dark);
  margin: 32px 0 12px;
  font-weight: 600;
}

.service-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-hero-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  max-height: 440px;
}

.service-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Benefits list */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.benefits-list li i {
  color: var(--coral);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Process / Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0 32px;
}

.step-card {
  background: var(--beige);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 14px;
}

.step-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 6px;
}

.step-card p {
  font-size: 13px;
  color: #777;
  margin-bottom: 0;
}

/* FAQ section */
.faq-section {
  margin-top: 48px;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--brown-dark);
  transition: color 0.3s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--coral);
}

.faq-question i {
  font-size: 12px;
  transition: transform 0.3s;
  color: var(--coral);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 12px;
}

.faq-answer p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Sidebar --- */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--brown-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.sidebar-services-list {
  list-style: none;
  padding: 0;
}

.sidebar-services-list li {
  margin-bottom: 6px;
}

.sidebar-services-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s;
}

.sidebar-services-list li a:hover,
.sidebar-services-list li a.active {
  background: var(--beige);
  color: var(--coral);
  font-weight: 600;
}

.sidebar-services-list li a i {
  font-size: 12px;
  color: var(--coral);
}

/* CTA sidebar card */
.sidebar-cta {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  color: #fff;
  text-align: center;
}

.sidebar-cta h4 {
  color: #fff;
}

.sidebar-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sidebar-cta .btn-sidebar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.sidebar-cta .btn-sidebar-cta:hover {
  background: var(--peach);
}

/* Info box */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--beige);
  border-radius: 12px;
  margin-bottom: 12px;
}

.info-box:last-child {
  margin-bottom: 0;
}

.info-box i {
  color: var(--coral);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-box div {
  flex: 1;
}

.info-box strong {
  font-size: 14px;
  color: var(--brown-dark);
  display: block;
  margin-bottom: 2px;
}

.info-box span {
  font-size: 13px;
  color: #777;
}

/* Gallery row in detail */
.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.service-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}


/* ======== RESPONSIVE - Inner Pages ======== */

@media (max-width: 1024px) {
  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-intro-img img {
    height: 400px;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-why-img {
    order: -1;
  }

  .about-why-img img {
    height: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    padding: 130px 0 50px;
    min-height: 240px;
  }

  .page-banner h1 {
    font-size: 32px;
  }

  .page-banner p {
    font-size: 15px;
  }

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

  .category-header h2 {
    font-size: 26px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .service-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .service-sidebar {
    grid-template-columns: 1fr;
  }

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

  .stat-number {
    font-size: 36px;
  }

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

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

  .value-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .about-stats {
    padding: 40px 0;
  }

  .about-values {
    padding: 50px 0;
  }

  .section-header-center h2,
  .about-intro-text h2,
  .about-why-text h2,
  .contact-form-wrapper h2 {
    font-size: 28px;
  }

  .about-intro-img img {
    height: 320px;
  }

  .about-why-img img {
    height: 320px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-banner h1 {
    font-size: 28px;
  }

  .service-content h2 {
    font-size: 24px;
  }

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

  .service-gallery {
    grid-template-columns: 1fr;
  }

  .service-gallery img {
    height: 200px;
  }

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

  .stat-number {
    font-size: 30px;
  }

  .about-intro-img img,
  .about-why-img img {
    height: 260px;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}

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

/* Section header centered */
.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header-center h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--brown-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-header-center p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* About Intro */
.about-intro {
  padding: 80px 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--brown-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-intro-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
  transition: background 0.3s;
}

.about-cta-btn:hover {
  background: var(--peach);
  color: #fff;
}

.about-intro-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Stats Section */
.about-stats {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* Values Section */
.about-values {
  padding: 80px 0;
  background: var(--cream);
}

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

.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 28px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--brown-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Team Section */
.about-team {
  padding: 80px 0;
}

.about-team .section-header-center p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Us */
.about-why {
  padding: 80px 0;
  background: var(--cream);
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-why-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--brown-dark);
  font-weight: 600;
  margin-bottom: 32px;
}

.about-why-text h2 em {
  color: var(--coral);
  font-style: italic;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.why-list li i {
  color: var(--coral);
  font-size: 22px;
  margin-top: 2px;
  flex-shrink: 0;
}

.why-list li strong {
  display: block;
  font-size: 16px;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.why-list li span {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.about-why-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-why-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* ---- About Page Responsive (must come after base styles) ---- */
@media (max-width: 1024px) {
  .about-intro-grid,
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-why-img { order: -1; }
  .about-intro-img img { height: 400px; }
  .about-why-img img { height: 400px; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-number { font-size: 36px; }
}

@media (max-width: 768px) {
  .about-intro { padding: 50px 0; }
  .about-why { padding: 50px 0; }
  .about-stats { padding: 40px 0; }
  .about-intro-img img,
  .about-why-img img { height: 320px; }
  .about-intro-text h2,
  .about-why-text h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .about-intro-img img,
  .about-why-img img { height: 260px; }
  .stat-number { font-size: 30px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}


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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--brown-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-form-wrapper > p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(196, 122, 90, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form .btn-submit:hover {
  background: var(--peach);
}

/* Contact Info Cards */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.3s;
}

.contact-info-card:hover {
  box-shadow: var(--shadow);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--brown-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.contact-info-card p a {
  color: var(--coral);
  font-weight: 500;
}

.contact-info-card p a:hover {
  text-decoration: underline;
}

/* Contact Social */
.contact-social {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-social h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--brown-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

.contact-social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(196, 122, 90, 0.35);
}

/* Map Section */
.contact-map {
  padding: 0 0 80px;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

/* ======== CONTACT GENERAL GRID ======== */
.contact-general-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-form-section {
  padding: 80px 0;
  background: var(--cream);
}

/* ======== BRANCHES SECTION ======== */
.branches-section {
  padding: 80px 0;
  background: #fff;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.branch-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.branch-card:hover {
  box-shadow: 0 12px 40px rgba(44, 24, 16, 0.12);
  transform: translateY(-4px);
}

.branch-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 0;
}

.branch-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--coral), var(--peach));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.branch-card-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 2px;
}

.branch-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  background: rgba(196, 122, 90, 0.1);
  padding: 2px 10px;
  border-radius: 20px;
}

.branch-card-body {
  padding: 20px 24px;
  flex: 1;
}

.branch-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.branch-detail:last-child {
  margin-bottom: 0;
}

.branch-detail i {
  color: var(--coral);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.branch-detail p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.branch-detail p a {
  color: var(--coral);
  font-weight: 500;
}

.branch-detail p a:hover {
  text-decoration: underline;
}

.branch-card-map {
  padding: 0;
  line-height: 0;
}

.branch-card-map iframe {
  display: block;
  width: 100%;
  border: 0;
}

.branch-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--brown-dark);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}

.branch-directions-btn:hover {
  background: var(--coral);
}

.branch-directions-btn i {
  font-size: 16px;
}

/* Branches responsive */
@media (max-width: 1024px) {
  .branches-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 48px;
  }

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

@media (max-width: 768px) {
  .branches-section {
    padding: 60px 0;
  }

  .branch-card-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .contact-general-grid {
    grid-template-columns: 1fr;
  }

  .branches-grid {
    max-width: 100%;
  }
}


/* ======== RESULTS PAGE - Before/After ======== */
.results-section {
  padding: 80px 0;
}

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

.result-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.result-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.result-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.result-card:hover .result-card-img img {
  transform: scale(1.05);
}

.result-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(44,24,16,0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.result-badge i {
  font-size: 10px;
}

.result-card-body {
  padding: 24px;
}

.result-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--brown-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.result-card-body p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}


/* ======== RESULTS PAGE - Reviews Full ======== */
.reviews-full-section {
  padding: 80px 0;
  background: var(--cream);
}

.reviews-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card-full {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card-full:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 14px;
}

.review-stars span {
  margin-left: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown-dark);
}

.review-card-full .review-text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-avatar-full {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.review-card-full .review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card-full .review-author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 2px;
}

.review-service {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-service i {
  font-size: 10px;
  color: var(--coral);
}


/* ======== RESULTS PAGE - CTA ======== */
.results-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 50%, var(--coral) 100%);
  text-align: center;
}

.results-cta-content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

.results-cta-content h2 em {
  font-style: italic;
  color: var(--peach);
}

.results-cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.btn-cta-results {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.btn-cta-results:hover {
  background: var(--peach);
  transform: translateY(-2px);
}


/* ======== BLOG PAGE ======== */
.blog-section {
  padding: 80px 0;
}

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

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.blog-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--brown-dark);
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.blog-card-body > p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  font-size: 11px;
  color: var(--coral);
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  transition: gap 0.3s;
}

.blog-card:hover .blog-read-more {
  gap: 10px;
}


/* ======== NEWSLETTER SECTION ======== */
.newsletter-section {
  padding: 80px 0;
  background: var(--beige);
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.newsletter-text h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--brown-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.newsletter-text h2 em {
  font-style: italic;
  color: var(--coral);
}

.newsletter-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.newsletter-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-input-wrap i {
  position: absolute;
  left: 16px;
  color: var(--text-light);
  font-size: 14px;
}

.newsletter-input-wrap input {
  padding: 14px 18px 14px 42px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  width: 280px;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-input-wrap input:focus {
  border-color: var(--coral);
}

.btn-newsletter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
}

.btn-newsletter:hover {
  background: var(--brown);
  transform: translateY(-1px);
}


/* ======== RESPONSIVE - Results & Blog Pages ======== */
@media (max-width: 1024px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-full-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .results-section { padding: 60px 0; }
  .reviews-full-section { padding: 60px 0; }
  .blog-section { padding: 60px 0; }
  .newsletter-section { padding: 60px 0; }
  .results-grid { grid-template-columns: 1fr; }
  .reviews-full-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .results-cta { padding: 60px 0; }
  .results-cta-content h2 { font-size: 30px; }
  .newsletter-content { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-input-wrap input { width: 100%; }
  .btn-newsletter { justify-content: center; }
}

@media (max-width: 480px) {
  .result-card-img { height: 200px; }
  .blog-card-img { height: 180px; }
  .review-card-full { padding: 20px; }
  .results-cta-content h2 { font-size: 26px; }
  .newsletter-text h2 { font-size: 26px; }
}


/* Large screens */
@media (min-width: 1440px) {
  .page-banner h1 { font-size: 54px; }
  .service-detail-layout { grid-template-columns: 1fr 400px; gap: 70px; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
  .results-grid { gap: 28px; }
  .blog-grid { gap: 28px; }
}

@media (min-width: 1920px) {
  .page-banner { padding: 200px 0 100px; min-height: 400px; }
  .page-banner h1 { font-size: 60px; }
  .service-detail { padding: 100px 0; }
  .service-detail-layout { grid-template-columns: 1fr 440px; gap: 80px; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 32px; }
  .service-card-img { height: 260px; }
  .results-section { padding: 100px 0; }
  .reviews-full-section { padding: 100px 0; }
  .blog-section { padding: 100px 0; }
  .result-card-img { height: 280px; }
  .blog-card-img { height: 260px; }
}


/* ========================================
   RESULTS PAGE - Before/After Sliders
======================================== */

/* Stats Bar */
.results-stats {
  background: var(--brown-dark);
  padding: 48px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Filter Tabs */
.results-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--cream);
  color: var(--brown-dark);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: var(--font-body);
}

.filter-btn:hover {
  background: var(--beige);
  border-color: var(--coral);
}

.filter-btn.active {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.filter-btn i {
  margin-right: 6px;
  font-size: 12px;
}

/* Before/After Grid */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Before/After Card */
.ba-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Before/After Slider */
.ba-slider {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  z-index: 1;
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
}

.ba-label-before {
  left: 16px;
  background: rgba(44,24,16,0.8);
  color: #fff;
}

.ba-label-after {
  right: 16px;
  background: var(--coral);
  color: #fff;
}

/* Slider Handle */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: col-resize;
}

.ba-handle-line {
  flex: 1;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  flex-shrink: 0;
  color: var(--brown-dark);
  font-size: 14px;
}

/* Card Info */
.ba-info {
  padding: 24px;
}

.ba-category-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--cream);
  color: var(--coral);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 12px;
}

.ba-category-tag i {
  margin-right: 4px;
  font-size: 10px;
}

.ba-info h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.ba-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.ba-meta {
  display: flex;
  gap: 20px;
}

.ba-meta span {
  font-size: 13px;
  color: var(--brown);
  font-weight: 500;
}

.ba-meta i {
  margin-right: 5px;
  color: var(--coral);
  font-size: 12px;
}

/* Info Note */
.ba-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--coral);
}

.ba-note i {
  color: var(--coral);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ba-note p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Results Page Responsive ---- */
@media (max-width: 1024px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ba-slider { height: 320px; }
  .stats-row { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .stat-number { font-size: 36px; }
}

@media (max-width: 768px) {
  .ba-grid { grid-template-columns: 1fr; gap: 24px; }
  .ba-slider { height: 300px; }
  .ba-info h3 { font-size: 20px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 32px; }
  .stat-label { font-size: 12px; }
  .results-stats { padding: 36px 0; }
  .results-filter { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 13px; }
}

@media (max-width: 480px) {
  .ba-slider { height: 260px; }
  .ba-info { padding: 18px; }
  .ba-handle-circle { width: 38px; height: 38px; font-size: 12px; }
  .ba-meta { flex-direction: column; gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 12px; }
  .stat-item { padding: 10px; }
  .stat-number { font-size: 28px; }
}
