/* ============================================
   Wallpaper Installer Joy — Main Styles
   Color Palette:
     Primary BG: #1B0F1C (aubergine noir)
     Secondary BG: #120812 (black plum)
     Light sections: #F2E3CF (champagne cream)
     Text on dark: #F8EEDD (soft cream)
     Text on light: #231D23 (plum-charcoal)
     Accent: #B28A3A (antique gold)
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,400&family=Lora:ital,wght@0,400;0,600;0,700;1,400&display=swap");

/* ---------- CSS Variables ---------- */
:root {
  --clr-primary: #1b0f1c;
  --clr-secondary: #120812;
  --clr-light: #f2e3cf;
  --clr-text-dark: #f8eedd;
  --clr-text-light: #231d23;
  --clr-accent: #b28a3a;
  --clr-accent-hover: #c9a04e;
  --clr-overlay: rgba(18, 8, 18, 0.88);
  --font-heading: "DM Serif Display", "Lora", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --font-accent: "Lora", Georgia, serif;
  --shadow-soft: 0 6px 30px rgba(0, 0, 0, 0.22);
  --shadow-btn: 0 4px 16px rgba(178, 138, 58, 0.35);
  --radius: 12px;
  --radius-btn: 11px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--clr-text-light);
  background: var(--clr-light);
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--clr-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-accent-hover);
}
ul,
ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.015em;
}
h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  margin-bottom: 0.55em;
}
h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  margin-bottom: 0.5em;
}
h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  margin-bottom: 0.4em;
}
p {
  margin-bottom: 1.15em;
  font-size: 1.06rem;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-dark {
  background: var(--clr-primary);
  color: var(--clr-text-dark);
}
.section-darker {
  background: var(--clr-secondary);
  color: var(--clr-text-dark);
}
.section-light {
  background: var(--clr-light);
  color: var(--clr-text-light);
}
.section-cream {
  background: #faf4ea;
  color: var(--clr-text-light);
}
.text-center {
  text-align: center;
}
.text-accent {
  color: var(--clr-accent);
}
.accent-line {
  width: 72px;
  height: 3px;
  background: var(--clr-accent);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.accent-line-left {
  width: 72px;
  height: 3px;
  background: var(--clr-accent);
  margin: 0 0 1.5rem;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  min-height: 54px;
}
.btn-primary {
  background: var(--clr-accent);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--clr-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(178, 138, 58, 0.45);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-accent);
  color: var(--clr-accent);
}
.btn-outline:hover {
  background: var(--clr-accent);
  color: #fff;
  transform: translateY(-2px);
}
.btn-light {
  background: var(--clr-light);
  color: var(--clr-primary);
}
.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
}
.btn-sm {
  padding: 11px 24px;
  font-size: 0.85rem;
  min-height: 44px;
}
.btn-arrow::after {
  content: "\2192";
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--clr-secondary);
  padding: 6px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(178, 138, 58, 0.15);
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.top-bar a {
  color: var(--clr-text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.top-bar a:hover {
  opacity: 1;
  color: var(--clr-accent);
}
.top-bar svg {
  width: 14px;
  height: 14px;
  fill: var(--clr-accent);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  background: var(--clr-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 68px;
}
.logo a {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--clr-text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .logo-accent {
  color: var(--clr-accent);
  font-style: italic;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav > li {
  position: relative;
}
.main-nav > li > a {
  display: block;
  padding: 22px 18px;
  color: var(--clr-text-dark);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--clr-accent);
}
.main-nav > li > a::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.main-nav > li > a:hover::after,
.main-nav > li > a.active::after {
  transform: scaleX(1);
}

/* Dropdown arrow */
.has-dropdown > a {
  padding-right: 34px;
}
.has-dropdown > a::before {
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--clr-accent);
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.has-dropdown:hover > a::before {
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 768px) {
  .has-dropdown.mobile-open > a::before {
    transform: translateY(-50%) rotate(180deg);
  }
}

/* ============================================
   DROPDOWN — Wallpaper-Unroll Animation
   ============================================ */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 290px;
  background: var(--clr-secondary);
  border: 1px solid rgba(178, 138, 58, 0.18);
  border-top: 3px solid var(--clr-accent);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s 0.25s;
  overflow: hidden;
  padding: 6px 0;
}
.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition:
    opacity 0.35s ease,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0s 0s;
}

/* Staggered item cascade */
.dropdown-menu li {
  opacity: 0;
  transform: translateY(-12px) rotateX(-15deg);
  transition:
    opacity 0.28s ease,
    transform 0.32s ease;
}
.has-dropdown:hover > .dropdown-menu li,
.has-dropdown:focus-within > .dropdown-menu li {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.has-dropdown:hover > .dropdown-menu li:nth-child(1),
.has-dropdown:focus-within > .dropdown-menu li:nth-child(1) {
  transition-delay: 0.05s;
}
.has-dropdown:hover > .dropdown-menu li:nth-child(2),
.has-dropdown:focus-within > .dropdown-menu li:nth-child(2) {
  transition-delay: 0.1s;
}
.has-dropdown:hover > .dropdown-menu li:nth-child(3),
.has-dropdown:focus-within > .dropdown-menu li:nth-child(3) {
  transition-delay: 0.15s;
}
.has-dropdown:hover > .dropdown-menu li:nth-child(4),
.has-dropdown:focus-within > .dropdown-menu li:nth-child(4) {
  transition-delay: 0.2s;
}
.has-dropdown:hover > .dropdown-menu li:nth-child(5),
.has-dropdown:focus-within > .dropdown-menu li:nth-child(5) {
  transition-delay: 0.25s;
}
.has-dropdown:hover > .dropdown-menu li:nth-child(6),
.has-dropdown:focus-within > .dropdown-menu li:nth-child(6) {
  transition-delay: 0.3s;
}
.has-dropdown:hover > .dropdown-menu li:nth-child(7),
.has-dropdown:focus-within > .dropdown-menu li:nth-child(7) {
  transition-delay: 0.35s;
}
.has-dropdown:hover > .dropdown-menu li:nth-child(8),
.has-dropdown:focus-within > .dropdown-menu li:nth-child(8) {
  transition-delay: 0.4s;
}
.has-dropdown:hover > .dropdown-menu li:nth-child(9),
.has-dropdown:focus-within > .dropdown-menu li:nth-child(9) {
  transition-delay: 0.45s;
}
.has-dropdown:hover > .dropdown-menu li:nth-child(10),
.has-dropdown:focus-within > .dropdown-menu li:nth-child(10) {
  transition-delay: 0.5s;
}
.has-dropdown:hover > .dropdown-menu li:nth-child(11),
.has-dropdown:focus-within > .dropdown-menu li:nth-child(11) {
  transition-delay: 0.55s;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  color: var(--clr-text-dark);
  font-size: 0.92rem;
  font-weight: 400;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}
.dropdown-menu li a:hover {
  background: rgba(178, 138, 58, 0.1);
  color: var(--clr-accent);
  border-left-color: var(--clr-accent);
  padding-left: 30px;
}
.dropdown-menu li a .dd-icon {
  width: 18px;
  height: 18px;
  fill: var(--clr-accent);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ============================================
   MOBILE NAV
   ============================================ */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.burger span {
  width: 26px;
  height: 2px;
  background: var(--clr-text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 8, 18, 0.92) 0%,
    rgba(27, 15, 28, 0.75) 50%,
    rgba(18, 8, 18, 0.6) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-text {
  color: var(--clr-text-dark);
}
.hero-text h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.12;
}
.hero-text h1 .accent-word {
  color: var(--clr-accent);
  display: block;
  font-style: italic;
}
.hero-text p {
  font-size: 1.12rem;
  opacity: 0.9;
  margin-bottom: 1.8rem;
  max-width: 520px;
  line-height: 1.8;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(178, 138, 58, 0.15);
  border: 1px solid rgba(178, 138, 58, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-accent);
}
.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-accent);
}

/* ============================================
   CONTACT FORM (HERO & CONTACT PAGE)
   ============================================ */
.feedback-form-container {
  background: rgba(18, 8, 18, 0.92);
  border: 1px solid rgba(178, 138, 58, 0.25);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
}
.feedback-form-container h2,
.feedback-form-container h3,
.feedback-form-container .form-title {
  font-family: var(--font-heading);
  color: var(--clr-text-dark);
  text-align: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  position: relative;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(242, 227, 207, 0.08);
  border: 1px solid rgba(178, 138, 58, 0.25);
  border-radius: 8px;
  color: var(--clr-text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(248, 238, 221, 0.45);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  background: rgba(242, 227, 207, 0.12);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 14px;
}
.form-submit {
  text-align: center;
}
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--clr-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 54px;
}
.submit-btn:hover {
  background: var(--clr-accent-hover);
  box-shadow: var(--shadow-btn);
  transform: translateY(-2px);
}
#form-success {
  text-align: center;
  padding: 30px;
  color: var(--clr-accent);
  font-size: 1.1rem;
}
#form-success p {
  margin: 0;
}

/* ============================================
   TRUST / WHY US SECTION
   ============================================ */
.trust-section {
  padding: 90px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.trust-card {
  text-align: center;
  padding: 40px 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  border-bottom: 3px solid transparent;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--clr-accent);
}
.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(178, 138, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--clr-accent);
}
.trust-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.trust-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 90px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  border: 1px solid rgba(178, 138, 58, 0.1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-body {
  padding: 24px 20px;
}
.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--clr-text-light);
}
.service-card-body p {
  font-size: 0.92rem;
  color: var(--clr-text-light);
  opacity: 1;
  margin-bottom: 1rem;
}

/* ============================================
   CONTENT BLOCK (TEXT + IMAGE)
   ============================================ */
.content-block {
  padding: 90px 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.content-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 3px solid rgba(178, 138, 58, 0.15);
}
.content-img img {
  width: 100%;
  height: auto;
  display: block;
}
.content-text h2 {
  margin-bottom: 0.4rem;
}
.content-text p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  padding: 90px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(178, 138, 58, 0.12);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  aspect-ratio: 4/3;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   SERVICE AREAS GRID
   ============================================ */
.areas-section {
  padding: 90px 0;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  align-items: stretch;
}
.area-card {
  background: var(--clr-primary);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  color: var(--clr-text-dark);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  border: 1px solid rgba(178, 138, 58, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.area-card .btn {
  margin-top: auto;
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-color: var(--clr-accent);
}
.area-card svg {
  width: 32px;
  height: 32px;
  fill: var(--clr-accent);
  margin-bottom: 14px;
}
.area-card .area-title {
  font-size: 1.2rem;
  margin: 0 0 0.3rem;
}
.area-card p {
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 90px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.testimonial-card {
  background: rgba(178, 138, 58, 0.06);
  border: 1px solid rgba(178, 138, 58, 0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 4rem;
  color: var(--clr-accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-accent);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: 70px 0;
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(178, 138, 58, 0.15);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  text-align: center;
  color: var(--clr-text-dark);
}
.cta-section h2 {
  margin-bottom: 0.6rem;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */
.page-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0 60px;
  text-align: center;
  color: var(--clr-text-dark);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 8, 18, 0.88),
    rgba(27, 15, 28, 0.75)
  );
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.3rem;
}
.breadcrumb {
  font-size: 0.9rem;
  opacity: 0.7;
}
.breadcrumb a {
  color: var(--clr-text-dark);
  opacity: 0.8;
}
.breadcrumb a:hover {
  color: var(--clr-accent);
  opacity: 1;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 60px 0;
}
.stat-card {
  text-align: center;
  padding: 30px 16px;
  background: var(--clr-primary);
  border-radius: var(--radius);
  color: var(--clr-text-dark);
  border: 1px solid rgba(178, 138, 58, 0.15);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.88rem;
  opacity: 0.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  background: var(--clr-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 0 auto 18px;
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.92rem;
  opacity: 0.8;
  margin: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 80px 0;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.contact-info-card {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  border-bottom: 3px solid transparent;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--clr-accent);
}
.contact-info-card svg {
  width: 40px;
  height: 40px;
  fill: var(--clr-accent);
  margin-bottom: 16px;
}
.contact-info-card h2,
.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.contact-info-card a {
  font-size: 1rem;
}
.contact-info-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 4px;
}

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

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  padding: 80px 0;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(178, 138, 58, 0.15);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  background: #fff;
  transition: background 0.3s;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--clr-text-light);
}
.faq-question:hover {
  background: rgba(178, 138, 58, 0.05);
}
.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--clr-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question::after {
  content: "\2212";
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  background: #fff;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0;
}

/* ============================================
   SERVICE PAGE LAYOUT
   ============================================ */
.service-detail {
  padding: 80px 0;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}
.feature-card {
  padding: 28px 22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--clr-accent);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.feature-card p {
  font-size: 0.92rem;
  opacity: 0.8;
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--clr-secondary);
  color: var(--clr-text-dark);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(178, 138, 58, 0.12);
}
.footer-col h2,
.footer-col h4,
.footer-col .footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  color: var(--clr-accent);
}
.footer-col p {
  font-size: 0.92rem;
  opacity: 0.75;
  line-height: 1.7;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: var(--clr-text-dark);
  opacity: 0.75;
  font-size: 0.92rem;
  transition: all 0.3s;
}
.footer-col ul li a:hover {
  opacity: 1;
  color: var(--clr-accent);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--clr-accent);
  flex-shrink: 0;
}
.footer-contact-item a {
  color: var(--clr-text-dark);
  opacity: 0.85;
  font-size: 0.92rem;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

/* ============================================
   STICKY CTA BUTTON
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  animation: pulseGlow 2.5s infinite;
}
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--clr-accent);
  color: #fff;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(178, 138, 58, 0.5);
  transition: all 0.3s ease;
}
.sticky-cta a:hover {
  background: var(--clr-accent-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(178, 138, 58, 0.6);
}
.sticky-cta svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

@keyframes pulseGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(178, 138, 58, 0));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(178, 138, 58, 0.4));
  }
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 8, 18, 0.85);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}
.modal-box {
  background: var(--clr-primary);
  border: 1px solid rgba(178, 138, 58, 0.25);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 520px;
  width: 90%;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s ease;
}
.modal-overlay.active .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--clr-text-dark);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  line-height: 1;
}
.modal-close:hover {
  opacity: 1;
  color: var(--clr-accent);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}
.fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trust-grid,
  .services-grid,
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content-grid,
  .service-detail-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .about-stats,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--clr-primary);
    padding: 80px 24px 40px;
    transition: right 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.4);
    text-align: left;
  }
  .nav-wrapper.active {
    right: 0;
  }
  .main-nav {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .main-nav > li > a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(178, 138, 58, 0.08);
    width: 100%;
    text-align: left;
  }
  .main-nav > li > a::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(178, 138, 58, 0.05);
    border-radius: 0;
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    max-height: 0;
    transition: max-height 0.4s ease;
    padding: 0;
  }
  .has-dropdown.mobile-open > .dropdown-menu {
    max-height: 800px;
  }
  .dropdown-menu li {
    opacity: 1;
    transform: none;
  }
  .dropdown-menu li a {
    padding: 10px 12px;
    font-size: 0.9rem;
    width: 100%;
    text-align: left;
  }
  .has-dropdown > a {
    padding-right: 30px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .trust-grid,
  .services-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-features {
    grid-template-columns: 1fr;
  }
  .about-stats,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
  }
  .sticky-cta a {
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  .top-bar .container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-stats,
  .process-grid {
    grid-template-columns: 1fr;
  }
}
