/* Dade Locksmith Co — Premium Corporate Theme */

:root {
  --primary: #1a365d;
  --primary-dark: #0f2440;
  --accent: #d4a44c;
  --accent-hover: #c4943c;
  --text: #333333;
  --text-light: #6b7280;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 50px;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s ease;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background-color: var(--white);
  -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;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* =========================================
   HEADER — White bg, single row, 72px
   ========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

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

.site-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

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

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   HERO — Full viewport, centered text
   ========================================= */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 36, 64, 0.75) 0%,
    rgba(26, 54, 93, 0.85) 50%,
    rgba(15, 36, 64, 0.9) 100%
  );
  z-index: 1;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 38px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid var(--accent);
}

.hero-cta:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 164, 76, 0.35);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-bg);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(26, 54, 93, 0.1);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* =========================================
   SECTION TITLES (global)
   ========================================= */

.section-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 14px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 2px;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

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

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

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

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

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 164, 76, 0.25);
}

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

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  background: var(--light-bg);
  border-radius: 50%;
  color: var(--accent);
  transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--accent);
}

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

.service-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-text {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.65;
}

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

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

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

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

.about-img::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 40%;
  height: 40%;
  border: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-text h2 {
  text-align: left;
  margin-bottom: 12px;
}

.about-text h2::after {
  margin: 14px 0 0;
}

.about-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
}

.about-text .hero-cta {
  margin-top: 24px;
  font-size: 0.95rem;
  padding: 14px 30px;
}

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

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

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

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: box-shadow var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--accent);
}

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

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  position: relative;
  padding-top: 14px;
}

.testimonial-author::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

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

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

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.area-item {
  background: var(--white);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.925rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(26, 54, 93, 0.12);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.area-item:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

.cta-banner {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(212, 164, 76, 0.06);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(212, 164, 76, 0.04);
  border-radius: 50%;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 18px 42px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
}

.cta-btn:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 164, 76, 0.4);
}

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

/* =========================================
   FOOTER — 4-column, dark primary bg
   ========================================= */

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  display: inline-block;
}

.footer-col .site-logo {
  margin-bottom: 16px;
}

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

.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);
}

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

.footer-bottom a:hover {
  color: var(--white);
}

/* =========================================
   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;
  margin-top: var(--header-height);
  overflow: hidden;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 36, 64, 0.8) 0%,
    rgba(26, 54, 93, 0.88) 100%
  );
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .hero-title {
  font-size: 2.75rem;
  margin-bottom: 12px;
}

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

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

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

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

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

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

.service-detail:nth-child(even) > .container {
  direction: rtl;
}

.service-detail:nth-child(even) > .container > * {
  direction: ltr;
}

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

.service-detail-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.service-detail-text .section-title {
  text-align: left;
  font-size: 1.85rem;
}

.service-detail-text .section-title::after {
  margin: 14px 0 0;
}

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

.service-detail-text p {
  color: var(--text-light);
  line-height: 1.75;
}

.service-detail-text ul {
  margin: 16px 0;
}

.service-detail-text ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

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

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

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

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

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 28px;
}

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

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

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 164, 76, 0.15);
}

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

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.03em;
}

.form-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #065f46;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  font-weight: 500;
}

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

.contact-info {
  background: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.925rem;
  line-height: 1.7;
}

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

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

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

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

/* =========================================
   TEAM SECTION (About page)
   ========================================= */

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

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

.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.team-card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.team-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 20px;
  padding: 0 20px;
}

.team-card-role {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
  padding: 6px 20px 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* =========================================
   VALUES SECTION (About page)
   ========================================= */

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

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

.value-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  color: var(--accent);
}

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

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

.value-text {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* =========================================
   TIMELINE SECTION (About page)
   ========================================= */

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

.timeline-item {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-left: 2px solid var(--accent);
  margin-left: 20px;
  padding-left: 32px;
  position: relative;
}

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

.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.65;
}

.timeline-item .year {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
  min-width: 60px;
}

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

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

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

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 8px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 20px 24px;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--light-bg);
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  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, padding 0.3s ease;
}

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

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

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

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

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

.gallery-filter-btn {
  padding: 9px 22px;
  border: 1px solid rgba(26, 54, 93, 0.2);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

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

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(15, 36, 64, 0.85));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--transition);
}

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

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

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

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

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

.area-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.area-card-text {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.area-card-link:hover {
  color: var(--primary);
  gap: 10px;
}

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

/* =========================================
   UTILITIES
   ========================================= */

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.bg-light { background-color: var(--light-bg); }
.bg-primary { background-color: var(--primary); }

/* =========================================
   RESPONSIVE — Tablet
   ========================================= */

@media (max-width: 1024px) {
  .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);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

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

  .service-detail > .container {
    gap: 36px;
  }
}

/* =========================================
   RESPONSIVE — Mobile
   ========================================= */

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }

  .nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

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

  .nav-cta {
    margin: 12px 24px;
    justify-content: center;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-cta {
    padding: 14px 30px;
    font-size: 0.95rem;
  }

  .trust-badges {
    gap: 10px;
    padding: 28px 16px;
  }

  .badge {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-desc {
    font-size: 0.95rem;
    margin-bottom: 36px;
  }

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

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

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

  .about-text h2::after {
    margin: 14px auto 0;
  }

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

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

  .service-detail:nth-child(even) > .container {
    direction: ltr;
  }

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

  .service-detail-text .section-title::after {
    margin: 14px auto 0;
  }

  .service-detail-text .section-desc {
    text-align: center;
  }

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

  .contact-form {
    padding: 28px;
  }

  .contact-info {
    padding: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 16px 32px;
  }

  .page-hero {
    min-height: 40vh;
  }

  .page-hero .hero-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 20px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .site-logo-text {
    font-size: 1rem;
  }

  .areas-list {
    gap: 10px;
  }

  .area-item {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .gallery-filter {
    gap: 8px;
  }

  .gallery-filter-btn {
    padding: 7px 16px;
    font-size: 0.8rem;
  }
}