:root {
  --roc-teal-900: #0b3a3a;
  --roc-teal-700: #114b5f;
  --roc-teal-500: #1f6e6e;
  --roc-teal-100: #e4f0ee;
  --roc-sage: #8fbfb3;
  --roc-amber: #ef9b4e;
  --roc-amber-dark: #d97f2e;
  --roc-ink: #1c2b33;
  --roc-paper: #faf9f6;
  --roc-white: #ffffff;
  --roc-line: rgba(17, 75, 95, 0.12);
  --roc-shadow: 0 18px 40px rgba(17, 75, 95, 0.12);
  --roc-card-shadow: 0 12px 26px rgba(17, 75, 95, 0.08);
  --roc-radius: 18px;
  --roc-pill: 999px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--roc-paper);
  color: var(--roc-ink);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  color: var(--roc-teal-900);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.container {
  max-width: 1200px;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 70px 0;
}

.bg-soft {
  background: linear-gradient(180deg, rgba(228, 240, 238, 0.7), rgba(250, 249, 246, 0.9));
}

.text-primary-brand {
  color: var(--roc-teal-700);
}

.btn {
  border-radius: var(--roc-pill);
  padding: 0.85rem 1.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--roc-amber);
  border-color: var(--roc-amber);
  color: var(--roc-white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--roc-amber-dark);
  border-color: var(--roc-amber-dark);
  color: var(--roc-white);
}

.btn-outline-primary {
  border-color: rgba(17, 75, 95, 0.2);
  color: var(--roc-teal-700);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--roc-teal-700);
  border-color: var(--roc-teal-700);
  color: var(--roc-white);
}

.btn-light {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
  color: var(--roc-white);
}

.topbar {
  background: var(--roc-teal-900);
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  padding: 0.55rem 0;
}

.topbar a {
  color: rgba(255,255,255,0.82);
}

.navbar {
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--roc-line);
  box-shadow: 0 8px 20px rgba(17, 75, 95, 0.03);
}

.navbar-brand {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--roc-teal-900);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.navbar-brand .brand-accent {
  color: var(--roc-amber);
}

.nav-link {
  color: var(--roc-teal-900);
  font-weight: 500;
  padding: 0.8rem 0.9rem !important;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--roc-teal-700);
}

.navbar .btn-cta {
  border-radius: var(--roc-pill);
  background: var(--roc-amber);
  color: var(--roc-white);
  padding: 0.75rem 1.2rem;
  font-weight: 600;
}

.hero {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, rgba(228, 240, 238, 0.55), rgba(250, 249, 246, 0.9));
}

.hero-panel {
  padding: 2.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--roc-pill);
  background: rgba(17, 75, 95, 0.08);
  color: var(--roc-teal-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-top: 1.3rem;
}

.hero p {
  font-size: 1.08rem;
  color: rgba(28, 43, 51, 0.8);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--roc-teal-900);
  font-weight: 600;
}

.hero-meta-item i {
  color: var(--roc-amber);
  font-size: 1.15rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 24px 24px 24px 96px;
  box-shadow: var(--roc-shadow);
  border: 8px solid rgba(255,255,255,0.7);
}

.hero-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--roc-card-shadow);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  right: -18px;
  bottom: 20px;
  min-width: 200px;
}

.hero-badge strong {
  display: block;
  color: var(--roc-teal-700);
  font-size: 1.8rem;
  line-height: 1;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head .eyebrow {
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.03em;
}

.text-muted-roc {
  color: rgba(28, 43, 51, 0.7);
}

.card-roc {
  background: var(--roc-white);
  border: 1px solid var(--roc-line);
  border-radius: var(--roc-radius);
  box-shadow: var(--roc-card-shadow);
}

.service-card {
  padding: 1.7rem 1.3rem 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(17, 75, 95, 0.12);
}

.icon-chip {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(17, 75, 95, 0.08);
  color: var(--roc-teal-700);
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.link-arrow {
  font-weight: 700;
  color: var(--roc-teal-700);
}

.link-arrow i {
  margin-left: 0.2rem;
}

.feature-box {
  background: var(--roc-white);
  border: 1px solid var(--roc-line);
  border-radius: var(--roc-radius);
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--roc-card-shadow);
}

.feature-box .icon-chip {
  width: 56px;
  height: 56px;
  font-size: 1.45rem;
}

.testimonial-carousel .carousel-inner {
  padding: 1rem 0 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--roc-line);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--roc-card-shadow);
}

.testimonial-card .stars {
  color: #f4b740;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}

.client-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.client-inline img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.accordion-item {
  border: 1px solid var(--roc-line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.accordion-button {
  font-weight: 600;
  color: var(--roc-teal-900);
}

.accordion-button:not(.collapsed) {
  background: rgba(17, 75, 95, 0.04);
  color: var(--roc-teal-700);
  box-shadow: none;
}

.blog-card {
  overflow: hidden;
  background: var(--roc-white);
  border: 1px solid var(--roc-line);
  border-radius: 18px;
  box-shadow: var(--roc-card-shadow);
  height: 100%;
}

.blog-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.3rem;
}

.tag {
  display: inline-flex;
  border-radius: var(--roc-pill);
  background: rgba(17, 75, 95, 0.08);
  color: var(--roc-teal-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
}

.cta-banner {
  background: linear-gradient(135deg, var(--roc-teal-700), var(--roc-teal-900));
  color: var(--roc-white);
  border-radius: 22px;
  padding: 2.2rem 2rem;
  box-shadow: var(--roc-shadow);
}

.cta-banner h3,
.cta-banner p {
  color: var(--roc-white);
}

.footer {
  background: var(--roc-teal-900);
  color: rgba(255,255,255,0.8);
  padding-top: 4rem;
}

.footer h5, .footer a, .footer li {
  color: rgba(255,255,255,0.9);
}

.footer a:hover {
  color: var(--roc-amber);
}

.footer .brand {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
}

.footer .brand .brand-accent {
  color: var(--roc-amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
  padding: 1.1rem 0 2rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
}

.page-banner {
  background: linear-gradient(180deg, rgba(228, 240, 238, 0.85), rgba(250, 249, 246, 0.95));
  padding: 5rem 0 3rem;
}

.page-banner h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--roc-teal-700);
}

.breadcrumb-item a,
.breadcrumb-item.active {
  color: var(--roc-teal-700);
  font-weight: 600;
}

.story-card,
.info-card,
.values-card {
  background: var(--roc-white);
  border: 1px solid var(--roc-line);
  border-radius: 22px;
  box-shadow: var(--roc-card-shadow);
  padding: 2rem;
  height: 100%;
}

.blog-hero-content {
  max-width: 760px;
}

.blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  color: rgba(17, 75, 95, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
}

.blog-meta-row i {
  margin-right: 0.42rem;
  color: var(--roc-amber-dark);
}

.blog-article-section {
  padding-top: 1.5rem;
}

.blog-article-wrap {
  max-width: 900px;
}

.blog-article-shell {
  background: var(--roc-white);
  border: 1px solid var(--roc-line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--roc-card-shadow);
}

.team-card {
  background: var(--roc-white);
  border: 1px solid var(--roc-line);
  border-radius: 18px;
  padding: 1.7rem;
  box-shadow: var(--roc-card-shadow);
}

.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--roc-teal-100);
}

.team-qualification {
  color: var(--roc-orange);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.appointment-modal {
  overflow: hidden;
  border-radius: 22px;
}

.appointment-modal .modal-header {
  padding: 1.5rem 1.75rem 1.2rem;
}

.appointment-modal .eyebrow {
  font-size: 0.72rem;
}

.modal-subtitle {
  color: rgba(28, 43, 51, 0.68);
  font-size: 0.92rem;
}

.appointment-aside {
  background: var(--roc-teal-700);
  color: var(--roc-white);
  padding: 2rem 1.75rem;
}

.appointment-aside h3 {
  color: var(--roc-white);
  font-size: 1.65rem;
  margin: 1.2rem 0 0.8rem;
}

.appointment-aside p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.appointment-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 1.5rem;
}

.appointment-points {
  margin: 1.5rem 0;
}

.appointment-points li {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
}

.appointment-points i {
  color: #bce5d7;
}

.appointment-phone {
  display: inline-block;
  color: var(--roc-white);
  font-weight: 700;
  font-size: 0.86rem;
}

.appointment-form-wrap {
  padding: 1.75rem;
}

.appointment-form-wrap .form-control,
.appointment-form-wrap .form-select {
  min-height: 46px;
}

.appointment-form-wrap textarea.form-control {
  min-height: 92px;
}

@media (max-width: 767.98px) {
  .appointment-modal .modal-header {
    padding: 1.25rem 1.25rem 1rem;
  }

  .appointment-aside {
    padding: 1.25rem;
  }

  .appointment-aside h3 {
    font-size: 1.35rem;
    margin: 0.8rem 0 0.35rem;
  }

  .appointment-aside p {
    margin-bottom: 0.75rem;
  }

  .appointment-points {
    display: none;
  }

  .appointment-phone {
    font-size: 0.8rem;
  }

  .appointment-form-wrap {
    padding: 1.25rem;
  }
}

.section-lead {
  max-width: 620px;
  color: rgba(28, 43, 51, 0.72);
}

.confirmation-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--roc-soft), var(--roc-white));
}

.confirmation-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  background: var(--roc-white);
  border: 1px solid var(--roc-line);
  border-radius: 22px;
  box-shadow: var(--roc-card-shadow);
}

.confirmation-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--roc-teal-100);
  color: var(--roc-teal-700);
  font-size: 2.2rem;
}

.confirmation-card h1 {
  max-width: 560px;
  margin: 1rem auto;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.confirmation-card > p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(28, 43, 51, 0.74);
  font-size: 1.05rem;
}

.confirmation-contact {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
  margin-top: 1.7rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--roc-soft);
  color: var(--roc-teal-700);
}

.confirmation-contact span {
  color: rgba(28, 43, 51, 0.68);
}

.blog-article-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--roc-line);
}

.blog-article-content {
  padding: 2.2rem 2.6rem 2.5rem;
  line-height: 1.9;
}

.blog-article-content p {
  font-size: 1.04rem;
  color: rgba(28, 43, 51, 0.82);
}

.blog-article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
}

.blog-article-content ul {
  padding-left: 1.2rem;
  margin: 1.2rem 0 1.5rem;
}

.blog-article-content li {
  margin-bottom: 0.7rem;
  padding-left: 0.25rem;
  color: rgba(28, 43, 51, 0.85);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.stat-box {
  background: var(--roc-white);
  border: 1px solid var(--roc-line);
  border-radius: 18px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--roc-card-shadow);
}

.stat-box .value {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 700;
  color: var(--roc-teal-700);
  font-family: 'Fraunces', serif;
}

.service-detail-card {
  background: var(--roc-white);
  border: 1px solid var(--roc-line);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--roc-card-shadow);
  margin-bottom: 1.5rem;
}

.service-booking {
  margin-top: 1rem;
  display: none;
}

.service-booking.open {
  display: block;
}

.booking-form {
  background: rgba(17, 75, 95, 0.02);
  border: 1px solid var(--roc-line);
  border-radius: 16px;
  padding: 1.25rem;
}

.booking-success,
.form-success,
.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
}

.booking-success.show,
.form-success.show {
  display: block;
  background: rgba(31, 110, 110, 0.08);
  color: var(--roc-teal-700);
  border: 1px solid rgba(31, 110, 110, 0.18);
}

.form-error.show {
  display: block;
  background: rgba(217, 127, 46, 0.08);
  color: #9a4d17;
  border: 1px solid rgba(217, 127, 46, 0.18);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.filter-chip {
  border: 1px solid var(--roc-line);
  background: var(--roc-white);
  color: var(--roc-teal-700);
  border-radius: var(--roc-pill);
  padding: 0.65rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.filter-chip.active {
  background: var(--roc-teal-700);
  color: var(--roc-white);
  border-color: var(--roc-teal-700);
}

.blog-card.hidden {
  display: none;
}

.contact-card {
  background: var(--roc-white);
  border: 1px solid var(--roc-line);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--roc-card-shadow);
}

.contact-cta {
  border: 1px solid rgba(17, 75, 95, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 75, 95, 0.02), rgba(228, 240, 238, 0.25));
  padding: 2rem;
}

.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--roc-line);
  box-shadow: var(--roc-card-shadow);
}

.social-icon {
  color: var(--roc-white);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--roc-white);
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.25);
  z-index: 1050;
  font-size: 1.6rem;
}

.back-to-top {
  position: fixed;
  right: 92px;
  bottom: 28px;
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: var(--roc-teal-700);
  color: var(--roc-white);
  box-shadow: 0 12px 24px rgba(17, 75, 95, 0.2);
  z-index: 1040;
}

.back-to-top.visible {
  display: grid;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 3.2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .navbar .btn-cta {
    margin-top: 0.75rem;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 70px 0;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 0.7rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    text-align: center;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }

  .back-to-top {
    right: 78px;
    bottom: 18px;
  }
}
