/* ============================================
   REGISCOM - Styles
   ============================================ */

/* --- Variables & Reset --- */
:root {
  --color-primary: #00993d;
  --color-primary-rgb: 0, 153, 61;
  --color-secondary: #000000;
  --color-secondary-rgb: 0, 0, 0;
  --color-accent: #ffb300;
  --color-accent-rgb: 255, 179, 0;
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #555555;
  --color-border: #e0e0e0;
  --color-bg-alt: #f7f8f9;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button, a, input, textarea, select {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

section[id] {
  scroll-margin-top: 80px;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

@media (min-width: 1240px) {
  .container { padding: 0; }
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background-color: var(--color-bg);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

@media (min-width: 768px) {
  .navbar-inner { padding: 0 40px; }
}

@media (min-width: 1240px) {
  .navbar-inner { padding: 0; }
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.4s ease;
}

.navbar.scrolled .navbar-logo {
  color: var(--color-primary);
}

/* On subpages navbar is always solid */
.navbar.navbar-solid {
  background-color: var(--color-bg);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.navbar.navbar-solid .navbar-logo {
  color: var(--color-primary);
}

.navbar.navbar-solid .navbar-links a {
  color: var(--color-text);
}

.navbar.navbar-solid .navbar-links a:hover {
  color: var(--color-primary);
}

.navbar.navbar-solid .hamburger span {
  background-color: var(--color-text);
}

.navbar-links {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .navbar-links { display: flex; }
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.navbar.scrolled .navbar-links a {
  color: var(--color-text);
}

.navbar-links a:hover {
  color: var(--color-accent);
}

.navbar.scrolled .navbar-links a:hover {
  color: var(--color-primary);
}

/* --- Hamburger --- */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.navbar.scrolled .hamburger span {
  background-color: var(--color-text);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--color-bg);
  z-index: 999;
  transition: right 0.3s ease;
  padding: 100px 32px 32px;
  overscroll-behavior: contain;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--color-text);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--color-primary);
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1200&q=80') center center / cover no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
  z-index: 1;
}

.hero-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.08);
  filter: blur(80px);
  top: 10%;
  left: -5%;
  z-index: 2;
  animation: float 7s ease-in-out infinite;
}

.hero-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.06);
  filter: blur(70px);
  bottom: 15%;
  right: 5%;
  z-index: 2;
  animation: float 8s ease-in-out infinite 1s;
}

.hero-shape-3 {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(60px);
  top: 40%;
  right: 20%;
  z-index: 2;
  animation: float 6s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: 3px;
  margin-bottom: 24px;
  text-wrap: balance;
  animation: fadeInUp 0.8s ease forwards;
}

@media (min-width: 768px) {
  .hero-content h1 { font-size: 4rem; letter-spacing: 4px; }
}

.hero-content .hero-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Page Header (subpages) --- */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1a3a1a 100%);
  overflow: hidden;
  text-align: center;
}

.page-header .shape-dec-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.08);
  filter: blur(80px);
  top: -10%;
  right: -5%;
  animation: float 7s ease-in-out infinite;
}

.page-header .shape-dec-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.06);
  filter: blur(70px);
  bottom: -10%;
  left: 5%;
  animation: float 8s ease-in-out infinite 1s;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 3px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .page-header h1 { font-size: 3.5rem; }
}

.page-header p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-header .heading-line {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-accent);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.breadcrumb a, .breadcrumb span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background-color: var(--color-primary);
  padding: 16px 40px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease 0.4s forwards, pulse 2.5s infinite 1.2s;
  opacity: 0;
}

.btn-primary:hover {
  background-color: #007a31;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.3);
}

.btn-primary.no-animate {
  animation: none;
  opacity: 1;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(var(--color-primary-rgb), 0.15); }
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-primary);
  background-color: transparent;
  padding: 14px 38px;
  border-radius: 4px;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto 20px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

/* --- Section Separator --- */
.section-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(var(--color-primary-rgb), 0.2), transparent);
}

/* --- Section Heading --- */
.section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--color-text);
  line-height: 1.2;
  text-wrap: balance;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-heading h2 { font-size: 2.5rem; }
}

.section-heading .heading-line {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  margin: 0 auto 16px;
}

.section-heading p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Why Section --- */
.section-why {
  padding: 96px 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.section-why .shape-dec {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.section-why .shape-dec-1 {
  width: 250px;
  height: 250px;
  background: rgba(var(--color-primary-rgb), 0.04);
  top: 5%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.section-why .shape-dec-2 {
  width: 180px;
  height: 180px;
  background: rgba(var(--color-accent-rgb), 0.04);
  bottom: 10%;
  left: -3%;
  animation: float 7s ease-in-out infinite 1s;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
  background: #ffffff;
  padding: 40px 28px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--color-primary);
}

.why-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.08);
  margin-bottom: 24px;
}

.why-card .card-icon .material-icons {
  font-size: 28px;
  color: var(--color-primary);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Counters --- */
.counters {
  padding: 64px 0;
  background: var(--color-secondary);
  position: relative;
}

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

@media (min-width: 768px) {
  .counters-grid { grid-template-columns: repeat(4, 1fr); }
}

.counter-item {
  text-align: center;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .counter-number { font-size: 3rem; }
}

.counter-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Process --- */
.section-process {
  padding: 96px 0;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.section-process .shape-dec-1 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.03);
  filter: blur(70px);
  bottom: 10%;
  right: 5%;
  animation: float 7s ease-in-out infinite;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .process-layout { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.process-image {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.process-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.process-image:hover img {
  transform: scale(1.03);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.step-content p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Services --- */
.section-services {
  padding: 96px 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.section-services .shape-dec-1 {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.04);
  filter: blur(80px);
  top: 15%;
  left: -3%;
  animation: float 8s ease-in-out infinite;
}

.section-services .shape-dec-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.04);
  filter: blur(70px);
  bottom: 10%;
  right: -2%;
  animation: float 7s ease-in-out infinite 1.5s;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--color-primary);
}

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

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

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

.service-card-body {
  padding: 32px 28px;
}

.service-card-body .service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.08);
  margin-bottom: 16px;
}

.service-card-body .service-icon .material-icons {
  font-size: 22px;
  color: var(--color-primary);
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card-body p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Gallery --- */
.section-gallery {
  padding: 96px 0;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.section-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(var(--color-primary-rgb), 0.03), transparent 60%);
  z-index: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* --- Testimonials --- */
.section-testimonials {
  padding: 96px 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.section-testimonials .shape-dec-1 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.04);
  filter: blur(70px);
  top: 20%;
  left: 5%;
  animation: float 7s ease-in-out infinite;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--color-primary);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.4;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-stars .material-icons {
  font-size: 18px;
  color: var(--color-accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.testimonial-author-info span {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* --- FAQ --- */
.section-faq {
  padding: 96px 0;
  background: var(--color-bg-alt);
  position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  gap: 16px;
  transition: color 0.3s ease;
}

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

.faq-question .material-icons {
  font-size: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--color-primary);
}

.faq-question[aria-expanded="true"] .material-icons {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Contact --- */
.section-contact {
  padding: 96px 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.section-contact .shape-dec-1 {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.03);
  filter: blur(80px);
  top: 10%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 14px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

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

.btn-submit {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: var(--color-primary);
  padding: 16px 40px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  align-self: flex-start;
}

.btn-submit:hover {
  background-color: #007a31;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.3);
}

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(var(--color-primary-rgb), 0.08);
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-success.visible {
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item .info-icon .material-icons,
.contact-info-item .info-icon .fab {
  font-size: 22px;
  color: var(--color-primary);
}

.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.contact-info-item a:hover {
  color: var(--color-primary);
}

.contact-map {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
}

/* --- About Page Specifics --- */
.about-intro {
  padding: 96px 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

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

@media (min-width: 1024px) {
  .about-intro-layout { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.about-intro-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.about-intro-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Mission / Vision */
.mission-vision {
  padding: 96px 0;
  background: var(--color-bg-alt);
}

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

@media (min-width: 768px) {
  .mv-grid { grid-template-columns: 1fr 1fr; }
}

.mv-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 48px 36px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.mv-card .mv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.08);
  margin-bottom: 24px;
}

.mv-card .mv-icon .material-icons {
  font-size: 32px;
  color: var(--color-primary);
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-text);
  margin-bottom: 16px;
}

.mv-card p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Team */
.team-section {
  padding: 96px 0;
  background: var(--color-bg);
}

.team-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 48px 36px;
  transition: box-shadow 0.3s ease;
}

.team-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.team-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 4px solid rgba(var(--color-primary-rgb), 0.15);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.team-card .team-role {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-card p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Services Page Specifics --- */
.services-full {
  padding: 96px 0;
  background: var(--color-bg);
}

.services-full-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.service-full-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-full-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--color-primary);
}

.service-full-item .sfi-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(var(--color-primary-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-full-item .sfi-icon .material-icons {
  font-size: 24px;
  color: var(--color-primary);
}

.service-full-item h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.service-full-item p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* CTA Section */
.section-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1a3a1a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-cta p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto 32px;
}

.section-cta .btn-primary {
  animation: none;
  opacity: 1;
}

/* --- Quote Section --- */
.section-quote {
  padding: 80px 0;
  background: rgba(var(--color-primary-rgb), 0.04);
  text-align: center;
  position: relative;
}

.section-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 24px;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .section-quote blockquote { font-size: 1.75rem; }
}

.section-quote .quote-line {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  margin: 0 auto;
}

/* --- Footer --- */
.footer {
  background: var(--color-secondary);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-social a i {
  font-size: 16px;
  color: #ffffff;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  animation: whatsappPulse 2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
  font-size: 28px;
  color: #ffffff;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
