/* ==========================================================================
   Tow Of The Day - Modern Website Styles
   Colors: Red (#D42B2B), Black (#111), White (#FFF), Gold (#C9993A)
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #D42B2B;
  --red-dark: #B22222;
  --red-light: #E84545;
  --gold: #C9993A;
  --gold-light: #DFBE6F;
  --black: #111111;
  --dark: #1A1A1A;
  --gray-900: #222222;
  --gray-700: #444444;
  --gray-500: #777777;
  --gray-300: #BBBBBB;
  --gray-100: #F3F3F3;
  --white: #FFFFFF;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
  --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 16px 50px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.3;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

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

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  justify-content: center;
}

.top-bar-items {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-300);
}

.top-bar-item a,
a.top-bar-item {
  color: var(--gold-light);
  font-weight: 600;
}

a.top-bar-item:hover {
  color: var(--gold);
}

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  transition: height 0.3s ease;
}

.navbar.scrolled .nav-inner {
  height: 72px;
}

.nav-logo img {
  height: 82px;
  width: auto;
  transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo img {
  height: 56px;
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 4px 0;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--red);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.88rem;
}

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

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

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

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

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

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 120px 32px 40px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  text-align: center;
}

.mobile-menu a {
  display: block;
  padding: 14px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-md);
}

.mobile-menu a:hover {
  background: var(--gray-100);
  color: var(--red);
}

.mobile-call-btn {
  width: 100%;
  max-width: 320px;
  padding: 18px 36px;
  font-size: 1.15rem;
  margin-top: auto;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.text-gold {
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

/* --- Section Shared --- */
.section-label {
  display: inline-block;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* --- About --- */
.about {
  padding: 100px 0;
}

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

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

.about-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  opacity: 0.15;
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-text .btn {
  margin-top: 12px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--red);
  padding: 48px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.cta-banner-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

/* --- Services --- */
.services {
  padding: 100px 0;
  background: var(--gray-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 43, 43, 0.08);
  color: var(--red);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

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

a.service-card {
  text-decoration: none;
  color: inherit;
}

a.area-tag {
  text-decoration: none;
  color: inherit;
}

a.area-tag:hover {
  border-color: var(--red);
  color: var(--red);
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

.services-cta p {
  color: var(--gray-500);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.services-cta strong {
  color: var(--dark);
}

/* --- Areas --- */
.areas {
  padding: 100px 0;
}

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

.areas-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.areas-text p {
  color: var(--gray-700);
  margin-bottom: 24px;
  line-height: 1.7;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.area-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0,0,0,0.06);
}

.area-tag-highlight {
  background: rgba(201, 153, 58, 0.1);
  color: var(--gold);
  border-color: rgba(201, 153, 58, 0.2);
  font-weight: 600;
}

.areas-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.areas-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* --- Testimonials --- */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-stars-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.testimonials-stars-summary .stars-row {
  display: flex;
  gap: 2px;
  color: #FBBC04;
  font-size: 1.1rem;
}

.testimonials-stars-summary span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-500);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--gray-100);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

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

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

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

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-source {
  font-size: 0.78rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-source i {
  color: #4285F4;
}

.testimonials-cta {
  text-align: center;
  margin-top: 36px;
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-300);
}

.btn-outline-dark:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

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

  .testimonials-stars-summary {
    flex-direction: column;
    gap: 6px;
  }
}

/* --- Contact --- */
.contact {
  padding: 100px 0;
  background: var(--gray-100);
}

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

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

a.contact-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}

.contact-card-phone {
  background: var(--red);
  border-color: var(--red);
}

.contact-card-phone,
.contact-card-phone .contact-card-label,
.contact-card-phone .contact-card-value,
.contact-card-phone .contact-card-sub {
  color: var(--white);
}

.contact-card-phone .contact-card-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.contact-card-phone:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 43, 43, 0.08);
  color: var(--red);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.contact-card-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.contact-card-sub {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* --- Contact Form --- */
.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}

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

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

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

.required {
  color: var(--red);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--gray-100);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 43, 43, 0.1);
}

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

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 16px;
}

.form-note a {
  color: var(--red);
  font-weight: 600;
}

/* --- Affiliations --- */
.affiliations {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.affiliations-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-300);
  margin-bottom: 28px;
}

.affiliations-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.affiliation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: opacity var(--transition);
  opacity: 0.7;
}

.affiliation-item:hover {
  opacity: 1;
}

.affiliation-item img {
  height: 60px;
  width: auto;
}

.affiliation-icon {
  font-size: 2.2rem;
  color: var(--gray-500);
}

.affiliation-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

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

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.footer-social:hover {
  color: var(--white);
  background: #1877F2;
}

.footer-heading {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-services-list ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-services-list li {
  font-size: 0.88rem;
}

.footer-contact a {
  color: var(--gold-light);
  font-weight: 500;
}

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

.footer-contact li {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-call-btn {
  margin-top: 16px;
  padding: 10px 20px;
  font-size: 0.85rem;
}

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

.share-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.share-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.share-btn:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* --- Floating Call Button --- */
.floating-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 43, 43, 0.4);
  z-index: 998;
  transition: all var(--transition);
  animation: pulse-ring 2s infinite;
}

.floating-call:hover {
  background: var(--red-dark);
  transform: scale(1.08);
}

/* --- Scroll Animations --- */
.animate-before {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* --- Active Nav Link --- */
.nav-links a.active {
  color: var(--red);
}

.nav-links a.active::after {
  width: 100%;
}

/* --- Honeypot (spam protection) --- */
.sr-hidden {
  display: none;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(212, 43, 43, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(212, 43, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 43, 43, 0); }
}

/* --- Subpage Layout --- */
.page-hero {
  background: var(--black);
  padding: 48px 0 44px;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--gold-light);
}

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

.breadcrumb .sep {
  font-size: 0.7rem;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

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

.page-content {
  padding: 64px 0;
}

.page-content-inner {
  max-width: 760px;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.page-content p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.page-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.page-content ul li {
  position: relative;
  padding-left: 24px;
  color: var(--gray-700);
  line-height: 1.8;
  font-size: 1rem;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.page-content .btn {
  margin-top: 24px;
  white-space: normal;
  max-width: 100%;
  text-align: center;
}

.related-services {
  padding: 64px 0;
  background: var(--gray-100);
}

.related-areas {
  padding: 64px 0;
  background: var(--gray-100);
}

.related-services .section-header,
.related-areas .section-header {
  margin-bottom: 36px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.related-grid .service-card {
  cursor: pointer;
}

.related-grid a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 90px;
  }

  .top-bar-hide-mobile {
    display: none;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    height: 80px;
  }

  .navbar.scrolled .nav-inner {
    height: 64px;
  }

  .nav-logo img {
    height: 64px;
  }

  .navbar.scrolled .nav-logo img {
    height: 44px;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding: 60px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }

  .about {
    padding: 60px 0;
  }

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

  .about-image {
    order: -1;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .services {
    padding: 60px 0;
  }

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

  .areas {
    padding: 60px 0;
  }

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

  .areas-image {
    order: -1;
  }

  .contact {
    padding: 60px 0;
  }

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

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

  .contact-form {
    padding: 24px;
  }

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

  .footer-services-list {
    display: none;
  }

  .floating-call {
    display: flex;
  }

  .page-hero {
    padding: 36px 0 32px;
  }

  .page-content {
    padding: 40px 0 56px;
  }

  .related-services,
  .related-areas {
    padding: 40px 0;
  }

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

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

  .top-bar-items {
    gap: 16px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 14px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}
