/* =========================================
   MAIN STYLESHEET — Home Refurbishment Theme
   =========================================
   NOTE: To use a real hero background image,
   replace the .hero-bg gradient in section 6
   with:
     background-image: url('../images/hero-bg.jpg');
     background-size: cover;
     background-position: center;
   ========================================= */

/* =========================================
   1. CSS Variables
   ========================================= */
:root {
  --orange:        #F47920;
  --orange-dark:   #D4611A;
  --orange-light:  #FFF3EB;
  --black:         #1A1A1A;
  --gray-dark:     #333333;
  --gray-mid:      #666666;
  --gray-light:    #999999;
  --gray-bg:       #F8F8F8;
  --white:         #FFFFFF;
  --font-heading:  'Montserrat', sans-serif;
  --font-body:     'Open Sans', sans-serif;
  --radius:        8px;
  --radius-lg:     16px;
  --shadow:        0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover:  0 8px 40px rgba(0, 0, 0, 0.15);
  --transition:    all 0.3s ease;
  --container-max: 1200px;
  --container-pad: 0 24px;
}

/* =========================================
   2. Typography
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--black);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 700; }
h6 { font-size: 0.9rem; font-weight: 700; }

p {
  line-height: 1.7;
  color: var(--gray-dark);
  font-size: 1rem;
}

/* =========================================
   3. Layout Utilities
   ========================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.text-center  { text-align: center; }
.text-orange  { color: var(--orange); }
.bg-orange    { background-color: var(--orange); }
.bg-dark      { background-color: var(--black); }
.bg-light     { background-color: var(--gray-bg); }

/* Section headings */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-mid);
  font-size: 1.1rem;
}

.section-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* =========================================
   4. Buttons
   ========================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.4;
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 121, 32, 0.35);
}

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

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

/* =========================================
   5. Header
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo-img {
  height: 64px !important;
  width: 64px !important;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-brand-name span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--orange);
}
.footer-brand-sub {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  font-style: italic;
}

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

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu > li > a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: block;
}
.nav-menu > li > a:hover {
  color: var(--orange);
}

/* Dropdown */
.nav-menu > li.has-dropdown {
  position: relative;
}

.nav-menu .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 240px;
  z-index: 200;
  padding: 8px 0;
  border-top: 3px solid var(--orange);
}
.nav-menu li:hover > .dropdown { display: block; }

.nav-menu .dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-dark);
  transition: var(--transition);
}
.nav-menu .dropdown li a:hover {
  background: var(--orange-light);
  color: var(--orange);
  padding-left: 28px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   6. Hero
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  width: 100%;
}

.hero-bg {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.hero-video {
  background: var(--black);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================
   7. Trust Bar
   ========================================= */
.trust-bar {
  background: var(--black);
  padding: 20px 0;
  border-top: 3px solid var(--orange);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-icon {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
}

/* =========================================
   8. Service Cards
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { color: var(--gray-mid); font-size: 0.95rem; margin-bottom: 20px; }

.link-orange {
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.link-orange:hover { color: var(--orange-dark); }

/* 5-item services grid — flexbox so last 2 cards are equal width and centred */
.services-grid.services-5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.services-grid.services-5 .service-card {
  flex: 0 0 calc((100% - 56px) / 3);
  grid-column: unset;
  margin-left: 0;
}

/* =========================================
   9. Why Choose Us
   ========================================= */
.why-choose {
  background: var(--orange);
  padding: 80px 0;
}

.why-choose .section-header h2 { color: var(--white); }
.why-choose .section-header p  { color: rgba(255, 255, 255, 0.85); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

.why-icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.why-card p  { color: rgba(255, 255, 255, 0.85); font-size: 0.92rem; }

/* =========================================
   10. Gallery Teaser & Gallery Grid
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.gallery-placeholder {
  background: #d0d0d0;
  height: 220px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item .gallery-placeholder {
  transition: var(--transition);
  width: 100%;
}
.gallery-item:hover .gallery-placeholder {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244, 121, 32, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 8px;
}

/* =========================================
   11. Testimonials
   ========================================= */
.testimonials { background: var(--gray-bg); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--orange-light);
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 24px;
  pointer-events: none;
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--gray-dark);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
  padding-top: 8px;
}

.testimonial-author { display: flex; flex-direction: column; }

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
}

.testimonial-project {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
}

/* =========================================
   12. CTA Banner
   ========================================= */
.cta-banner {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255, 255, 255, 0.7); font-size: 1.1rem; margin-bottom: 24px; }

.cta-phone {
  display: block;
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 28px;
  transition: var(--transition);
}
.cta-phone:hover { color: var(--white); }

/* =========================================
   13. Page Hero (Inner Pages)
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(244, 121, 32, 0.1);
  pointer-events: none;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb > span:last-child { color: var(--orange); font-size: 0.9rem; }
.breadcrumb-sep { color: rgba(255, 255, 255, 0.3); }

/* =========================================
   14. Service Page Content
   ========================================= */
.service-intro { max-width: 800px; }
.service-intro p { font-size: 1.05rem; margin-bottom: 20px; }

/* Features / What's Included */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}
.feature-item::before {
  content: '?';
  color: var(--orange);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item span { color: var(--gray-dark); }

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.process-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p  { font-size: 0.88rem; color: var(--gray-mid); }

/* =========================================
   15. Stats Row (About Page)
   ========================================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 48px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 48px 0;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-mid);
  font-weight: 600;
}

/* =========================================
   16. Contact Page
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-mid);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.contact-detail a,
.contact-detail p {
  color: var(--black);
  font-weight: 600;
  font-size: 1rem;
}
.contact-detail a:hover { color: var(--orange); }

.map-placeholder {
  background: #d0d0d0;
  height: 200px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.85rem;
  margin-top: 28px;
  text-align: center;
  padding: 16px;
}

/* Contact Form */
.contact-form .form-group { margin-bottom: 20px; }

.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--black);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-dark);
  transition: var(--transition);
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 121, 32, 0.12);
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

/* =========================================
   17. Footer
   ========================================= */
.site-footer { background: #111111; }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}
.footer-contact li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

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

/* =========================================
   18. About Page
   ========================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--orange);
}

.value-icon { font-size: 2rem; margin-bottom: 16px; line-height: 1; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--gray-mid); font-size: 0.95rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

.team-photo {
  background: #d0d0d0;
  height: 200px;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.85rem;
  overflow: hidden;
}

.team-name {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
}

.team-role {
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 600;
}

/* =========================================
   19. Gallery Page
   ========================================= */
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-tab {
  padding: 10px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  background: white;
  color: var(--gray-dark);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-masonry .gallery-item .gallery-placeholder     { height: 220px; }
.gallery-masonry .gallery-item:nth-child(3n+2) .gallery-placeholder { height: 300px; }

/* =========================================
   20. Blog / Posts
   ========================================= */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.post-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card-body { padding: 24px; }

.post-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.post-title a { color: var(--black); transition: var(--transition); }
.post-title a:hover { color: var(--orange); }

.post-meta { color: var(--gray-light); font-size: 0.85rem; margin-bottom: 12px; }

.post-excerpt p { color: var(--gray-mid); font-size: 0.92rem; margin-bottom: 16px; }

/* =========================================
   21. Pagination
   ========================================= */
.pagination {
  margin-top: 48px;
  text-align: center;
}

.pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-dark);
  border: 2px solid #e0e0e0;
  transition: var(--transition);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.pagination .prev,
.pagination .next { width: auto; padding: 0 16px; }

/* =========================================
   22. Responsive — Tablet (max 1024px)
   ========================================= */
@media (max-width: 1024px) {

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

  .services-grid.services-5 .service-card {
    flex: 0 0 calc((100% - 28px) / 2);
  }

  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 40px; }
  .process-steps   { grid-template-columns: repeat(2, 1fr); }
  .stats-row       { grid-template-columns: repeat(2, 1fr); }
  .posts-grid      { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   23. Responsive — Mobile (max 768px)
   ========================================= */
@media (max-width: 768px) {

  .section { padding: 56px 0; }

  /* Show hamburger, hide nav */
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
  }

  .nav-menu > li > a {
    padding: 12px 16px;
    border-radius: var(--radius);
  }

  /* Mobile dropdown: static, toggleable */
  .nav-menu .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    padding: 0;
    background: var(--gray-bg);
    border-radius: var(--radius);
    display: none;
    margin-top: 4px;
    border-left: 3px solid var(--orange);
  }

  .nav-menu li.open > .dropdown { display: block; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }

  /* Trust bar */
  .trust-bar-inner { gap: 20px; }

  /* Grids ? single column */
  .services-grid       { grid-template-columns: 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .gallery-grid        { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry     { grid-template-columns: repeat(2, 1fr); }
  .features-grid       { grid-template-columns: 1fr; }
  .process-steps       { grid-template-columns: 1fr; }
  .stats-row           { grid-template-columns: repeat(2, 1fr); }
  .values-grid         { grid-template-columns: 1fr; }
  .team-grid           { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr; }
  .why-grid            { grid-template-columns: 1fr 1fr; }
  .posts-grid          { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-phone { font-size: 1.5rem; }
}

/* =========================================
   24. Responsive — Small Mobile (max 480px)
   ========================================= */
@media (max-width: 480px) {
  .gallery-grid    { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .stats-row       { grid-template-columns: 1fr 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr; }
  .hero h1         { font-size: 1.8rem; }
  .trust-bar-inner { flex-direction: column; gap: 16px; }

  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }

  .cta-phone { font-size: 1.3rem; }

  .header-inner { height: 72px; }
  .main-nav { top: 72px; }
  .site-logo img { height: 48px; }
  .services-grid.services-5 .service-card {
    flex: 0 0 100%;
  }
}

/* =========================================
   25. Social Icons
   ========================================= */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================
   26. About Page — Intro with Photo
   ========================================= */
.about-intro-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.about-intro-photo {
  display: flex;
  justify-content: center;
}

.about-portrait {
  width: 260px;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  display: block;
  margin: 0 auto;
}

.about-intro-text h2 { margin-bottom: 8px; }
.about-intro-text .section-eyebrow { margin-bottom: 8px; }
.about-intro-text p { margin-bottom: 16px; }

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-portrait {
    width: 200px;
    height: 240px;
  }
}

/* =========================================
   27. Coverage Map — Circle Display
   ========================================= */
.coverage-map-wrap {
  display: flex;
  justify-content: flex-start;
}

.coverage-map-circle {
  width: 100%;
  height: 340px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .coverage-map-circle { height: 260px; }
}

/* =========================================
   25. Miscellaneous / Utility
   ========================================= */

/* Visually hidden (accessibility) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* WordPress alignment classes */
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright  { float: right; margin-left: 20px; }
.alignleft   { float: left; margin-right: 20px; }

/* WordPress caption */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--gray-mid); text-align: center; margin-top: 6px; }

/* Clearfix */
.clearfix::after { content: ''; display: table; clear: both; }

/* No list */
.no-list { list-style: none; padding: 0; margin: 0; }