/* ===========================
   Ravenclaw LLC - Stylesheet
   =========================== */

:root {
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --darker: #111111;
  --accent: #996633;
  --accent-dark: #7a5228;
  --gold: #e8a020;
  --light-gray: #f4f4f4;
  --mid-gray: #888;
  --white: #ffffff;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-gray);
  color: var(--dark);
  line-height: 1.6;
}

/* ===== NAVIGATION ===== */
nav {
  background-color: var(--darker);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo .logo-icon {
  font-size: 1.8rem;
}

.nav-logo .logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: var(--accent);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--darker) 0%, #2c1010 100%);
  color: var(--white);
  padding: 6rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c0392b' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-top: 3rem;
}

.hero-logo-img {
  width: 100%;
  max-width: 480px;
  /* filter: brightness(0) invert(1); */
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.hero h1 + h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 400;
  color: #ccc;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 580px;
  margin: 0 auto 2.25rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark);
  padding: 1.25rem 1.5rem;
  border-bottom: 3px solid var(--accent);
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item .icon {
  font-size: 1.3rem;
}

/* ===== SECTIONS ===== */
section {
  padding: 4.5rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--dark);
}

.section-header p {
  color: var(--mid-gray);
  margin-top: 0.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SERVICES CAROUSEL ===== */
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--accent);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.service-card p {
  color: var(--mid-gray);
  font-size: 0.92rem;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--dark);
  color: var(--white);
}

.why-us .section-header h2 {
  color: var(--white);
}

.why-us .section-label {
  color: var(--gold);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.why-card .why-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--gold);
}

.why-card p {
  font-size: 0.88rem;
  color: #aaa;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 1rem;
  margin-bottom: 1.75rem;
  opacity: 0.9;
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--light-gray);
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--darker) 0%, #1a0a0a 100%);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

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

.page-hero p {
  color: #bbb;
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

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

.page-hero p strong {
  color: var(--white);
  font-weight: 700;
}

.breadcrumb {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.about-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.about-text p {
  color: #555;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.about-visual {
  background: var(--dark);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
}

.about-visual .big-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.about-visual h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-visual h3 span {
  color: var(--accent);
}

.about-visual p {
  color: #999;
  font-size: 0.9rem;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e0e0e0;
}

.stat {
  text-align: center;
  padding: 0 2.5rem;
}

.stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat .label {
  font-size: 0.82rem;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.value-card .v-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.value-card p {
  color: var(--mid-gray);
  font-size: 0.88rem;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail .c-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-detail h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mid-gray);
  margin-bottom: 0.2rem;
}

.contact-detail p,
.contact-detail a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.97rem;
}

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.hours-table tr {
  border-bottom: 1px solid #eee;
}

.hours-table td {
  padding: 0.5rem 0;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--mid-gray);
}

.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: var(--dark);
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
  background: var(--white);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-top: 1rem;
}

/* ===== TESTIMONIALS PAGE ===== */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.view-detail {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.75rem;
  display: block;
}

/* ===== PROJECTS PAGE ===== */
.service-type-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-type-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-left: 5px solid var(--accent);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-type-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}

.service-type-icon {
  font-size: 3rem;
  width: 64px;
  text-align: center;
  flex-shrink: 0;
}

.service-type-text {
  flex: 1;
}

.service-type-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.service-type-text p {
  color: var(--mid-gray);
  font-size: 0.92rem;
  margin: 0;
}

.service-type-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.service-type-item:hover .service-type-arrow {
  transform: translateX(4px);
}

/* ===== PROJECT DETAIL PAGE ===== */
.service-detail-intro {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  margin-bottom: 2.5rem;
}

.service-detail-intro p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.service-detail-intro p:last-child {
  margin-bottom: 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.service-detail-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-top: 4px solid var(--accent);
}

.service-detail-card .ps-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.service-detail-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.service-detail-card p {
  color: var(--mid-gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-type-item {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .service-type-icon {
    font-size: 2.2rem;
    width: 44px;
  }
}

/* ===== TESTIMONIAL DETAIL PAGE ===== */
.testimonial-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.testimonial-full-quote {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-full-quote blockquote {
  font-size: 1.1rem;
  color: #444;
  font-style: italic;
  line-height: 1.8;
  border: none;
  margin: 0 0 1.5rem;
}

.testimonial-full-quote .reviewer {
  border-top: 1px solid #eee;
  padding-top: 1.25rem;
}

.detail-story {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}

.detail-story h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.detail-story p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.job-details-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  position: sticky;
  top: 90px;
}

.job-details-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.job-detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.job-detail-row:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.job-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

.job-detail-value {
  font-size: 0.95rem;
  color: #ddd;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: gap 0.2s;
}

.back-link:hover {
  gap: 0.6rem;
}

@media (max-width: 768px) {
  .testimonial-detail-layout {
    grid-template-columns: 1fr;
  }

  .job-details-card {
    position: static;
  }
}


.rating-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
}

.carousel-track > * {
  flex: 0 0 100%;
  width: 100%;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: var(--white);
  color: var(--accent);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.carousel-arrow:hover {
  background: var(--accent);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .carousel {
    gap: 0.5rem;
  }
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.11);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
}

.reviewer-meta {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

.rating-summary {
  background: var(--dark);
  color: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.rating-summary .big-rating {
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.rating-summary .stars-large {
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin: 0.5rem 0;
}

.rating-summary p {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--darker);
  color: #999;
  padding: 3rem 1.5rem 1.5rem;
  border-top: 3px solid var(--accent);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 1.5rem;
}

.footer-brand .brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand .brand-name span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-col .contact-line {
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: #666;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 1.5rem;
    left: auto;
    min-width: 180px;
    background: var(--darker);
    flex-direction: column;
    padding: 0.75rem;
    border: 1px solid #222;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    gap: 0.25rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .trust-bar-inner {
    gap: 1.5rem;
  }
}
