/* ============================================
   Kelly Custom Walls — Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary-bg: #0E2A2B;
  --secondary-bg: #071819;
  --light-bg: #EFEAE3;
  --text-light: #F6F1E8;
  --text-dark: #1E2424;
  --accent: #B89A5B;
  --accent-hover: #c9ab6c;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --gold-border: 2px solid #B89A5B;
  --transition: 0.25s ease;
}

/* --- 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(--text-dark);
  background: var(--light-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

/* --- Top Bar --- */
.top-bar {
  background: var(--secondary-bg);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: var(--accent);
  font-weight: 500;
}

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

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

.top-bar-location svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
}

/* --- Header / Navigation --- */
.site-header {
  background: var(--primary-bg);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo a {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}

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

.main-nav a:hover {
  color: var(--accent);
}

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

.main-nav a.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 56px;
  flex-shrink: 0;
  background: var(--accent);
  color: var(--secondary-bg) !important;
  padding: 0 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  transition: all var(--transition);
}

.main-nav a.header-cta:hover {
  background: var(--accent-hover);
  color: var(--secondary-bg) !important;
  transform: translateY(-1px);
}

.main-nav a.header-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-light);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
  color: var(--text-light);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/residential-wallpaper-elegant-room.webp') center/cover no-repeat;
  opacity: 0.12;
}

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

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--text-light);
}

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

.hero h2 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.9;
  font-family: var(--font-body);
}

.trust-badges {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(184,154,91,0.1);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(184,154,91,0.25);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* --- Hero Stats --- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(184,154,91,0.3);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
  color: var(--text-light);
  padding: 60px 0 70px;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.section-dark .section-title h2,
.section-secondary .section-title h2 {
  color: var(--text-light);
}

.section-light .section-title h2 {
  color: var(--text-dark);
}

.section-title p {
  font-size: 17px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- Image Frame (Pearl Panel + Gold Border) --- */
.image-frame {
  background: #F8F5EF;
  border: var(--gold-border);
  border-radius: 12px;
  padding: 6px;
  overflow: hidden;
}

.image-frame img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,154,91,0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all var(--transition);
}

.section-light .service-card {
  background: #fff;
  border-color: rgba(184,154,91,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(184,154,91,0.15);
}

.service-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: rgba(184,154,91,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent);
}

.service-card .icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.6;
}

/* --- B2B / Commercial Block --- */
.b2b-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.b2b-features {
  list-style: none;
  margin-top: 20px;
}

.b2b-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(184,154,91,0.15);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.b2b-features li:last-child {
  border-bottom: none;
}

.b2b-features li strong {
  color: var(--accent);
  min-width: 140px;
}

/* --- Portfolio / Gallery --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.gallery-filters a {
  padding: 8px 24px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
}

.gallery-filters a:hover,
.gallery-filters a.active {
  background: var(--accent);
  color: var(--secondary-bg);
}

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: var(--gold-border);
  background: #F8F5EF;
  padding: 4px;
}

.gallery-item img {
  border-radius: 8px;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

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

/* --- Before/After Slider --- */
.ba-slider-wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.ba-slider-container {
  max-width: 560px;
  flex: 1 1 460px;
  margin: 0;
  border: var(--gold-border);
  border-radius: 12px;
  background: #F8F5EF;
  padding: 6px;
}

.ba-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  cursor: ew-resize;
  user-select: none;
  line-height: 0;
}

/* Before image — sits at the bottom of the stack, always fully visible */
.ba-slider .ba-before {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* After image — absolutely positioned on top, clipped from the left */
.ba-slider .ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 50% 0 0);
}

/* Vertical divider line */
.ba-slider .ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: translateX(-50%);
  z-index: 3;
  cursor: ew-resize;
  pointer-events: none;
}

/* Circular drag grip */
.ba-slider .ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M8.5 5l-5 7 5 7V5zm7 0v14l5-7-5-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px;
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--secondary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  opacity: 0.8;
}

/* --- Stats --- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 0;
}

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

.stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 1px solid rgba(184,154,91,0.35);
  background: rgba(184,154,91,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.stat-item .stat-number {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-item .stat-label {
  font-size: 15px;
  margin-top: 4px;
  opacity: 0.8;
}

/* --- Contact Form --- */
.feedback-form-container {
  background: var(--primary-bg);
  border: 1px solid rgba(184,154,91,0.25);
  border-radius: 16px;
  padding: 36px;
  max-width: 560px;
}

.section-light .feedback-form-container {
  background: #fff;
  border-color: rgba(184,154,91,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.hero .feedback-form-container {
  background: var(--primary-bg);
  color: var(--text-light);
}

.feedback-form-container h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--accent);
}

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

.form-group {
  margin-bottom: 0;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(184,154,91,0.3);
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: inherit;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition);
}

.section-light .form-group input,
.section-light .form-group textarea {
  background: #f9f7f3;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
  margin-top: 16px;
}

.form-submit {
  margin-top: 20px;
  text-align: center;
}

.submit-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--secondary-bg);
  border: none;
  padding: 16px 40px;
  height: 56px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

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

#form-success p {
  text-align: center;
  padding: 20px;
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(184,154,91,0.2);
  padding: 20px 0;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 14px;
}

/* --- Content Blocks --- */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.content-block h3 {
  font-size: 24px;
  margin: 24px 0 12px;
}

.content-block p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.content-block ul {
  margin: 12px 0 20px 20px;
}

.content-block ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

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

/* --- Service Area Cards --- */
.area-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.area-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,154,91,0.2);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}

.section-light .area-card {
  background: #fff;
  border-color: rgba(184,154,91,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.area-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.area-card h3 a {
  color: inherit;
}

.area-card p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 14px;
}

.area-card .btn-outline {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}

.area-card .btn-outline:hover {
  background: var(--accent);
  color: var(--secondary-bg);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--secondary-bg);
  padding: 16px 36px;
  height: 56px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.5;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--secondary-bg);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 14px 34px;
  height: 56px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--secondary-bg);
}

/* --- Footer --- */
.site-footer {
  background: var(--secondary-bg);
  color: var(--text-light);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(184,154,91,0.15);
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--accent);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.8;
}

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

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

.footer-col ul li a {
  color: var(--text-light);
  font-size: 14px;
  opacity: 0.8;
  transition: all var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  opacity: 0.6;
}

/* --- Sticky Quote Button --- */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--secondary-bg);
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(184,154,91,0.4);
  z-index: 999;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-body);
}

.sticky-quote-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(184,154,91,0.5);
}

/* --- Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7,24,25,0.85);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--primary-bg);
  border: 1px solid rgba(184,154,91,0.3);
  border-radius: 16px;
  padding: 40px;
  max-width: 580px;
  width: 100%;
  position: relative;
  color: var(--text-light);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content .feedback-form-container {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  line-height: 1;
}

.modal-close:hover {
  opacity: 1;
}

/* --- Reviews Section --- */
.reviews-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.reviews-section .section-title h2 {
  color: var(--text-dark);
}

/* --- SEO Content Block --- */
.seo-content {
  padding: 60px 0;
  background: var(--light-bg);
}

.seo-content .container {
  max-width: 900px;
}

.seo-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.seo-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
  color: var(--text-dark);
  opacity: 0.85;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-block {
  padding: 30px;
}

.contact-info-block h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--accent);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

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

.contact-detail p {
  font-size: 15px;
  line-height: 1.6;
}

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

/* --- About Page --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

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

.value-card {
  text-align: center;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,154,91,0.2);
  border-radius: 12px;
}

.section-light .value-card {
  background: #fff;
  border-color: rgba(184,154,91,0.3);
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--accent);
}

.value-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* --- Service Link Cards --- */
.service-link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-link-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,154,91,0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.section-light .service-link-card {
  background: #fff;
  border-color: rgba(184,154,91,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.service-link-card .card-image {
  height: 200px;
  overflow: hidden;
}

.service-link-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-link-card:hover .card-image img {
  transform: scale(1.05);
}

.service-link-card .card-body {
  padding: 24px;
}

.service-link-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-link-card h3 a {
  color: inherit;
}

.service-link-card p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 14px;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 12px 0;
  font-size: 13px;
  opacity: 0.7;
}

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

.breadcrumbs span {
  margin: 0 6px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .trust-badges {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .feedback-form-container {
    margin: 0 auto;
  }

  .b2b-block,
  .about-content,
  .contact-grid,
  .two-col-content {
    grid-template-columns: 1fr;
  }

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

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

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-bg);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-top: 1px solid rgba(184,154,91,0.2);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav .header-cta {
    width: 100%;
    max-width: 320px;
    margin-top: 4px;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 0 70px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

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

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .stats-row {
    gap: 30px;
  }

  .stat-item .stat-number {
    font-size: 32px;
  }

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

  .sticky-quote-btn {
    right: 50%;
    transform: translateX(50%);
    bottom: 16px;
    width: calc(100% - 40px);
    max-width: 320px;
    text-align: center;
  }

  .sticky-quote-btn:hover {
    transform: translateX(50%) translateY(-2px);
  }
}

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

  .header-inner {
    padding: 12px 16px;
  }

  .logo a {
    font-size: 20px;
  }
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Print --- */
@media print {
  .sticky-quote-btn,
  .modal-overlay,
  .site-header,
  .top-bar {
    display: none !important;
  }
}
