/* ==========================================================
   Vallamon Painting & Renovation
   Main Website Styles
   Author: IGZ
   Notes: Modern one-page responsive redesign
========================================================== */

:root {
  --color-primary: #061b49;
  --color-primary-dark: #03112f;
  --color-secondary: #c79a2c;
  --color-secondary-dark: #a77d1f;
  --color-white: #ffffff;
  --color-light: #f7f9fc;
  --color-light-blue: #eaf2fb;
  --color-gray: #64748b;
  --color-dark: #111827;
  --color-black: #020617;
  --color-border: #e5e7eb;
  --color-success: #25d366;

  --font-main: "Inter", Arial, Helvetica, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;

  --container-width: 1180px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-soft: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-medium: 0 18px 55px rgba(15, 23, 42, 0.14);
  --transition: all 0.3s ease;
}

/* =========================
   Global reset
========================= */

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

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

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

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

section {
  position: relative;
}

.container {
  width: min(100% - 32px, var(--container-width));
  margin: 0 auto;
}

/* =========================
   Typography
========================= */

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--color-secondary);
}

.section-title {
  margin-bottom: 18px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto 44px;
  color: var(--color-gray);
  font-size: 17px;
}

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

/* =========================
   Buttons
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 14px 32px rgba(6, 27, 73, 0.24);
}

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

.btn-secondary {
  color: var(--color-primary);
  background: var(--color-secondary);
  box-shadow: 0 14px 32px rgba(199, 154, 44, 0.28);
}

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

.btn-outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

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

/* =========================
   Top contact bar
========================= */

.top-bar {
  position: relative;
  z-index: 10001;
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-size: 14px;
}

.top-bar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-info,
.top-bar-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

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

/* =========================
   Header and navigation
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(6, 27, 73, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 40px rgba(3, 17, 47, 0.22);
}

.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-link img {
  width: 190px;
  max-height: 70px;
  object-fit: contain;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-secondary);
}

.site-header.scrolled .nav-menu a {
  color: var(--color-white);
}

.site-header.scrolled .nav-menu a:hover,
.site-header.scrolled .nav-menu a.active {
  color: var(--color-secondary);
}

.site-header.scrolled .btn-secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 24px;
  cursor: pointer;
}

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

/* =========================
   Hero slider
========================= */

.hero {
  min-height: calc(100vh - 128px);
  display: flex;
  align-items: center;
  color: var(--color-white);
  background: var(--color-primary-dark);
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 17, 47, 0.88), rgba(3, 17, 47, 0.58), rgba(3, 17, 47, 0.15)),
    linear-gradient(180deg, rgba(3, 17, 47, 0.05), rgba(3, 17, 47, 0.18));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 110px;
  background: linear-gradient(to top, var(--color-white), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 90px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-title {
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 900;
  line-height: 1.02;
}

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

.hero-description {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-trust-item i {
  color: var(--color-secondary);
}

/* =========================
   Trust bar
========================= */

.trust-bar {
  padding: 26px 0;
  background: var(--color-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.trust-card {
  padding: 20px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.trust-card i {
  margin-bottom: 10px;
  color: var(--color-secondary);
  font-size: 28px;
}

.trust-card strong {
  display: block;
  color: var(--color-primary);
  font-size: 15px;
}

/* =========================
   About
========================= */

.about-section {
  padding: 90px 0;
  background: var(--color-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

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

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

.about-experience {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 220px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.about-experience strong {
  display: block;
  color: var(--color-primary);
  font-size: 34px;
  line-height: 1;
}

.about-experience span {
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 700;
}

.about-content p {
  margin-bottom: 18px;
  color: var(--color-gray);
}

.about-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.about-mini-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.about-mini-card i {
  color: var(--color-secondary);
  font-size: 28px;
}

.about-mini-card h3 {
  margin: 12px 0 8px;
  color: var(--color-primary);
  font-size: 18px;
}

.about-mini-card p {
  margin: 0;
  font-size: 14px;
}

/* =========================
   Services
========================= */

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

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(199, 154, 44, 0.12);
  color: var(--color-secondary);
  font-size: 30px;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 23px;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--color-gray);
}

.service-list {
  display: grid;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-dark);
  font-size: 15px;
}

.service-list li i {
  color: var(--color-secondary);
  margin-top: 4px;
}

/* =========================
   Process accordion
========================= */

.process-section {
  padding: 90px 0;
  background:
    linear-gradient(180deg, rgba(6, 27, 73, 0.94), rgba(3, 17, 47, 0.96)),
    url("../images/slider/3.jpg") center / cover no-repeat;
  color: var(--color-white);
}

.process-section .section-title {
  color: var(--color-white);
}

.process-section .section-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.process-tabs {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

.process-tab-list {
  display: grid;
  gap: 12px;
}

.process-tab-btn {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.process-tab-btn:hover,
.process-tab-btn.active {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.accordion-header {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion-header i {
  color: var(--color-secondary);
  transition: var(--transition);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 22px 22px;
  color: rgba(255, 255, 255, 0.82);
}

.accordion-item.active .accordion-body {
  display: block;
}

.accordion-body ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  list-style: disc;
}
/* =========================
   Projects
========================= */

.projects-section {
  padding: 90px 0;
  background: var(--color-light);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  height: 330px;
  border-radius: 26px;
  background: var(--color-primary);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.project-card::before,
.project-card::after {
  position: absolute;
  top: 16px;
  z-index: 5;
  padding: 7px 11px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.project-card::before {
  content: "Before";
  left: 16px;
  background: rgba(2, 6, 23, 0.92);
}

.project-card::after {
  content: "After";
  right: 16px;
  background: rgba(199, 154, 44, 0.96);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.project-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 4;
  padding: 70px 26px 26px;
  background: linear-gradient(
    to top,
    rgba(3, 17, 47, 0.96) 0%,
    rgba(3, 17, 47, 0.74) 45%,
    rgba(3, 17, 47, 0) 100%
  );
  color: var(--color-white);
  pointer-events: none;
}

.project-overlay span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-overlay h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.22;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

/* Lightbox */
.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.9);
}

.project-lightbox.open {
  display: flex;
}

.project-lightbox-content {
  position: relative;
  max-width: min(96vw, 1400px);
  max-height: 90vh;
}

.project-lightbox-content img,
.project-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-label {
  position: absolute;
  top: 22px;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.lightbox-before {
  left: 22px;
  background: rgba(2, 6, 23, 0.92);
}

.lightbox-after {
  right: 22px;
  background: rgba(199, 154, 44, 0.96);
}

.project-lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card {
    height: 340px;
  }
}

@media (max-width: 920px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    height: 390px;
  }
}

@media (max-width: 680px) {
  .project-card {
    height: 320px;
  }

  .project-card::before,
  .project-card::after {
    top: 12px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .project-card::before {
    left: 12px;
  }

  .project-card::after {
    right: 12px;
  }

  .project-overlay {
    padding: 60px 22px 22px;
  }

  .project-overlay h3 {
    font-size: 21px;
  }

  .lightbox-label {
    top: 14px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .lightbox-before {
    left: 14px;
  }

  .lightbox-after {
    right: 14px;
  }
}

/* =========================
   Testimonials
========================= */

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

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

.testimonial-card {
  padding: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--color-secondary);
}

.testimonial-card p {
  margin-bottom: 22px;
  color: var(--color-gray);
  font-size: 17px;
  font-style: italic;
}

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

.testimonial-author img {
  width: 54px;
  height: 54px;
  object-fit: cover;
}

.testimonial-author strong {
  color: var(--color-primary);
}

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

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

.faq-wrapper {
  max-width: 920px;
  margin: 0 auto;
}

.faq-section .accordion-item {
  border-color: var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.faq-section .accordion-header {
  color: var(--color-primary);
}

.faq-section .accordion-body {
  color: var(--color-gray);
}

/* =========================
   Service areas
========================= */

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

.areas-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

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

.area-pill {
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-light);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.map-card iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* =========================
   Contact
========================= */

.contact-section {
  padding: 90px 0;
  background:
    linear-gradient(120deg, rgba(247, 249, 252, 0.96), rgba(234, 242, 251, 0.94));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.contact-info-item i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 14px;
  background: rgba(199, 154, 44, 0.12);
  color: var(--color-secondary);
  font-size: 20px;
}

.contact-info-item strong {
  display: block;
  color: var(--color-primary);
}

.contact-info-item span,
.contact-info-item a {
  color: var(--color-gray);
}

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

.form-group {
  display: grid;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--color-primary);
  font-weight: 800;
}

.form-control {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-dark);
  outline: none;
  transition: var(--transition);
}

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

.form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(199, 154, 44, 0.12);
}

/* =========================
   Footer
========================= */

.site-footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.footer-main {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 18px;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 900;
}

.footer-text {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-links i {
  color: var(--color-secondary);
  margin-right: 6px;
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--color-white);
}

.footer-social a:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-primary);
}

.footer-areas,
.footer-services {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-areas p,
.footer-services p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

/* =========================
   Floating actions
========================= */

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10002;
  display: grid;
  gap: 12px;
}

.float-btn {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 26px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.22);
  transition: var(--transition);
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
}

.float-whatsapp {
  background: var(--color-success);
}

.float-call {
  background: var(--color-primary);
}

.back-to-top {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* =========================
   Utility classes
========================= */

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

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

.gold {
  color: var(--color-secondary);
}

.hidden {
  display: none !important;
}

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

@media (max-width: 1100px) {
  .nav-menu {
    gap: 18px;
  }

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

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

@media (max-width: 920px) {
  .top-bar-inner {
    min-height: 42px;
    justify-content: center;
  }

  .top-bar-info {
    gap: 12px;
    font-size: 12px;
  }

  .top-bar-social {
    display: none;
  }

  .navbar {
    min-height: 76px;
  }

  .logo-link img {
    width: 150px;
  }

  .mobile-menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 24px;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-medium);
  }

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

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

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 14px 0;
  }

  .nav-actions .btn {
    display: none;
  }

  .about-grid,
  .areas-grid,
  .contact-grid,
  .process-tabs {
    grid-template-columns: 1fr;
  }

  .about-mini-grid,
  .projects-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 80px 0 110px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container-width));
  }

  .top-bar-info {
    flex-direction: column;
    gap: 2px;
    padding: 5px 0;
  }

  .logo-link img {
    width: 140px;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .services-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 26px 22px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .floating-actions {
    right: 16px;
    bottom: 16px;
  }

  .float-btn {
    width: 54px;
    height: 54px;
  }
}

/* =========================
   FINAL FIXES
========================= */

/* Total height reserved:
   Top Bar: 42px
   Header: 92px
   Total: 134px
*/
body {
  padding-top: 134px !important;
}

/* Fixed top contact bar */
.top-bar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10050;
}

/* Fixed navigation header */
.site-header {
  position: fixed !important;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 10040;
  height: 125px;
}

/* When scrolling, move header to top */
.site-header.scrolled {
  top: 0;
}

/* Proper navbar height */
.navbar {
  min-height: 170px !important;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo sizing */
.logo-link img {
  width: 150px !important;
  max-height: 76px !important;
  object-fit: contain;
}

/* Hero section compensation */
.hero {
  min-height: calc(100vh - 134px) !important;
}

/* Move hero content lower so it is not hidden behind header */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 150px 0 90px;
}

/* Slider images */
.hero-slide {
  z-index: 0;
}

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

.hero-slide.active {
  opacity: 1 !important;
  visibility: visible;
}

/* Overlay stacking */
.hero-overlay {
  z-index: 1;
}

/* Hide old Instagram preview if any remains */
.instagram-preview {
  display: none !important;
}

/* =========================
   Mobile adjustments
========================= */
@media (max-width: 920px) {
  body {
    padding-top: 118px !important;
  }

  .site-header {
    top: 42px;
    height: 120px;
  }

  .site-header.scrolled {
    top: 0;
  }

  .navbar {
    min-height: 170px !important;
    height: 170px;
  }

  .logo-link img {
    width: 130px !important;
    max-height: 60px !important;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
  }

  .hero {
    min-height: calc(100vh - 118px) !important;
  }

  .hero-content {
    padding: 110px 0 90px;
  }
}

/* =========================
   Form Message
========================= */

.form-message {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.form-message.success {
  display: block;
  background: rgba(37, 211, 102, 0.12);
  color: #138a42;
}

.form-message.error {
  display: block;
  background: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
}

/* =========================
   Bottom Whatsapp Form
========================= */
.whatsapp-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 28px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  border-radius: 16px;
  text-decoration: none !important;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.28);
  transition: all 0.3s ease;
}

.whatsapp-contact-btn i {
  color: #ffffff !important;
  font-size: 1.35rem;
  line-height: 1;
}

.whatsapp-contact-btn span {
  color: #ffffff !important;
}

.whatsapp-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(37, 211, 102, 0.38);
  color: #ffffff !important;
}