/* Boca Lock & Key - style.css */

:root {
  --primary: #263238;
  --accent: #00c853;
  --text: #333333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ========== RESET / NORMALIZE ========== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--light-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  color: var(--primary);
}

/* ========== CONTAINER ========== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== SITE HEADER ========== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color var(--transition), box-shadow var(--transition);
  height: 80px;
}

.site-header.scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.site-logo img {
  height: 44px;
  width: auto;
  background-color: var(--white);
  border-radius: 6px;
  padding: 2px;
}

.site-logo-text {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  white-space: nowrap;
  transition: color var(--transition);
}

.site-header.scrolled .site-logo-text {
  color: var(--primary);
}

/* Navigation — hidden on all screen sizes by default */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(38, 50, 56, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 999;
}

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

.nav-list {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.site-nav.active .nav-list {
  display: flex;
}

.nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  padding: 10px 20px;
  transition: color var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background-color: var(--accent);
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Nav CTA (phone link) */

.nav-cta {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  background: none;
  border: none;
  padding: 8px 0;
  transition: color var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header.scrolled .nav-cta {
  color: var(--primary);
}

.nav-cta:hover {
  color: var(--accent);
}

.nav-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Menu Toggle (hamburger) */

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  z-index: 1001;
  cursor: pointer;
  margin-left: 16px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background-color var(--transition);
}

.site-header.scrolled .menu-toggle span {
  background-color: var(--primary);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--white);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--white);
}

/* ========== HERO ========== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(38, 50, 56, 0.7) 0%,
    rgba(38, 50, 56, 0.5) 50%,
    rgba(38, 50, 56, 0.8) 100%
  );
  z-index: 1;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.35);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 200, 83, 0.5);
  background-color: #00b848;
}

/* Scroll indicator */

.hero::after {
  content: '';
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  z-index: 3;
  animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(12px);
  }
}

/* ========== PAGE HERO (sub-pages) ========== */

.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(38, 50, 56, 0.75) 0%,
    rgba(38, 50, 56, 0.6) 100%
  );
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
}

.page-hero .hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-hero .hero-subtitle {
  margin-bottom: 0;
}

/* ========== SECTION COMMON ========== */

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: #666;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ========== TRUST BADGES ========== */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 48px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: box-shadow var(--transition), transform var(--transition);
}

.badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ========== SERVICES SECTION ========== */

.services {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: rgba(0, 200, 83, 0.1);
  border-radius: 16px;
  margin-bottom: 20px;
  color: var(--accent);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ========== ABOUT SECTION ========== */

.about {
  padding: 80px 0;
  background-color: var(--white);
}

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

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.about-text {
  text-align: left;
}

.about-text .section-title {
  text-align: left;
}

.about-text .section-desc {
  text-align: left;
  margin-left: 0;
  max-width: none;
}

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

/* ========== TESTIMONIALS SECTION ========== */

.testimonials {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(0, 200, 83, 0.2);
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #ffc107;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

/* ========== SERVICE AREAS SECTION ========== */

.service-areas {
  padding: 80px 0;
  background-color: var(--white);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-item {
  background-color: var(--light-bg);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.area-item:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== CTA BANNER ========== */

.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #37474f 100%);
  text-align: center;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 200, 83, 0.5);
  background-color: #00b848;
}

.cta-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ========== SITE FOOTER ========== */

.site-footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
}

.footer-col {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-col h4 {
  display: none;
}

.footer-col .site-logo-text {
  color: var(--white);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
  font-size: 0.95rem;
}

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

.footer-col .nav-list {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.footer-col .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
}

.footer-col .nav-link:hover {
  color: var(--accent);
}

.footer-col .nav-link::after {
  display: none;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
}

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

/* ========== SERVICE DETAIL (services.html) ========== */

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

.service-detail:nth-child(odd) {
  background-color: var(--white);
}

.service-detail:nth-child(even) {
  background-color: var(--light-bg);
}

.service-detail > .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.service-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-detail-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.service-detail-text {
  text-align: left;
}

.service-detail-text .section-title {
  text-align: left;
}

.service-detail-text .section-desc {
  text-align: left;
  margin-left: 0;
  max-width: none;
}

.service-detail-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-detail-text ul {
  margin-bottom: 20px;
}

.service-detail-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: #555;
  line-height: 1.6;
}

.service-detail-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
}

/* ========== CONTACT SECTION ========== */

.contact-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

.contact-form {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background-color: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: var(--accent);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  box-shadow: 0 4px 16px rgba(0, 200, 83, 0.25);
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 200, 83, 0.4);
  background-color: #00b848;
}

.form-success {
  display: none;
  background-color: rgba(0, 200, 83, 0.1);
  color: #00873a;
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
}

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

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

.contact-info .info-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info .info-card svg {
  width: 28px;
  height: 28px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info .info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-info .info-card p,
.contact-info .info-card a {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.contact-info .info-card a:hover {
  color: var(--accent);
}

/* ========== TEAM SECTION ========== */

.team-section {
  padding: 80px 0;
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.team-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 16px 0 4px;
  padding: 0 16px;
}

.team-card-role {
  font-size: 0.9rem;
  color: #888;
  padding: 0 16px 20px;
}

/* ========== VALUES SECTION ========== */

.values-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

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

.value-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 200, 83, 0.1);
  border-radius: 20px;
  margin-bottom: 20px;
  color: var(--accent);
}

.value-icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.value-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ========== TIMELINE SECTION ========== */

.timeline-section {
  padding: 80px 0;
  background-color: var(--white);
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
  border-left: 2px solid #e0e0e0;
  margin-left: 20px;
}

.timeline-item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  background-color: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ========== FAQ SECTION ========== */

.faq-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  flex: 1;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

/* ========== GALLERY SECTION ========== */

.gallery-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 10px 24px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background-color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.gallery-filter-btn.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(38, 50, 56, 0.85));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-item.hidden {
  display: none;
}

/* ========== AREAS DETAIL SECTION (areas.html) ========== */

.areas-detail-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.area-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 4px solid var(--accent);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.area-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.area-card-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  transition: gap var(--transition);
}

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

.area-card-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ========== RESPONSIVE — TABLET (min-width: 600px) ========== */

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

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

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

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

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

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

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

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

  .service-detail > .container {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail:nth-child(even) > .container .service-detail-img {
    order: 2;
  }

  .service-detail:nth-child(even) > .container .service-detail-text {
    order: 1;
  }
}

/* ========== RESPONSIVE — DESKTOP (min-width: 1024px) ========== */

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

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-form {
    padding: 48px 40px;
  }

  .footer-grid {
    flex-wrap: nowrap;
  }
}

/* ========== UTILITY ========== */

.text-accent {
  color: var(--accent);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== ANIMATIONS ========== */

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

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ========== PRINT STYLES ========== */

@media print {
  .site-header,
  .menu-toggle,
  .hero-overlay,
  .cta-banner {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }
}