/* ==========================================================================
   RPL Locust Chimney & Dryer Vent Services - Clean Modern Design System
   ========================================================================== */

:root {
  /* Color Palette */
  --primary: #D35400;
  --primary-hover: #B94600;
  --primary-light: #FDF2E9;
  --secondary: #E65100;
  --dark: #111827;
  --dark-surface: #1F2937;
  --dark-card: #2D3748;
  --text-main: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --light: #F9FAFB;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --accent-gold: #F39C12;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--light);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Accessibility Focus States & Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.2s ease;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
select:focus-visible, 
textarea:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

/* ==========================================================================
   Top Announcement Bar (NO Phone Number)
   ========================================================================== */
.top-bar {
  background-color: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #D1D5DB;
}

.top-info-item svg {
  fill: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   Main Header & Navigation (Larger Header & Prominent Logo)
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}

.logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-phone-desktop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(211, 84, 0, 0.35);
  transition: var(--transition);
}

.header-phone-desktop:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 84, 0, 0.45);
}

.header-phone-desktop svg {
  fill: currentColor;
}

/* Hamburger button for mobile */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.92) 0%, rgba(31, 41, 55, 0.85) 100%),
              url('../images/hero-bg.png') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0 100px;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211, 84, 0, 0.25);
  border: 1px solid rgba(211, 84, 0, 0.6);
  color: #FFA07A;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  color: #F39C12;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #E5E7EB;
  margin-bottom: 30px;
  max-width: 620px;
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(211, 84, 0, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #D1D5DB;
}

.hero-badge-item svg {
  fill: #F39C12;
}

/* Hero Quick Form Card */
.hero-form-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.hero-form-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--dark);
  background-color: var(--white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.15);
}

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

.btn-submit {
  width: 100%;
  background-color: var(--dark);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

/* ==========================================================================
   Section Layout & Typography
   ========================================================================== */
.section {
  padding: 90px 0;
}

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

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

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

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

.sub-title {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header.dark h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.section-header.dark p {
  color: #9CA3AF;
}

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

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.06);
}

.service-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.service-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.service-link:hover {
  gap: 12px;
  color: var(--primary-hover);
}

/* ==========================================================================
   Seasonal Tip Cards
   ========================================================================== */
.tip-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(211, 84, 0, 0.15);
  border-color: var(--primary);
}

.tip-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tip-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tip-card:hover .tip-card-img-wrapper img {
  transform: scale(1.08);
}

.tip-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tip-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tip-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 700;
}

.tip-card-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.tip-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

.tip-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

.tip-checklist-icon {
  width: 18px;
  height: 18px;
  background-color: rgba(211, 84, 0, 0.12);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-detail-block:nth-child(even) > div:first-child {
  order: 2;
}

.service-detail-block:nth-child(even) > div:last-child {
  order: 1;
}

.service-detail-block img {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  border: 1px solid var(--border);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-choose-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--dark);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--primary);
}

.why-choose-badge strong {
  display: block;
  font-size: 1.8rem;
  color: var(--accent-gold);
  line-height: 1;
}

.why-choose-badge span {
  font-size: 0.9rem;
  color: #D1D5DB;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  fill: currentColor;
}

.feature-info h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.feature-info p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ==========================================================================
   Process Timeline Steps
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
}

.process-step {
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.step-number {
  width: 54px;
  height: 54px;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(211, 84, 0, 0.3);
}

.process-step h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Testimonials Grid
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.stars {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-main);
  font-size: 1.05rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.author-details h5 {
  font-size: 1.05rem;
}

.author-details span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ==========================================================================
   Callout Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1F2937 100%);
  color: var(--white);
  padding: 60px 0;
  border-radius: var(--radius-lg);
  margin: 40px auto;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(211, 84, 0, 0.15);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.3rem;
  margin-bottom: 14px;
}

.cta-banner p {
  color: #D1D5DB;
  font-size: 1.15rem;
  margin-bottom: 28px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Contact Section & Google Maps Embed
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.contact-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  fill: currentColor;
}

.contact-card-text h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.contact-card-text p, .contact-card-text a {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.contact-card-text a:hover {
  color: var(--primary);
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-height: 400px;
  width: 100%;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ==========================================================================
   Inner Page Header / Breadcrumb Hero
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(31, 41, 55, 0.8) 100%),
              url('../images/services-hero-bg.png') center/cover no-repeat;
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #D1D5DB;
}

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

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background-color: var(--dark);
  color: #9CA3AF;
  padding: 70px 0 30px;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 75px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #D1D5DB;
}

.footer-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #9CA3AF;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #D1D5DB;
}

.footer-contact-item svg {
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-map {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

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

/* ==========================================================================
   Floating Mobile Call Button
   ========================================================================== */
.mobile-sticky-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(211, 84, 0, 0.5);
  align-items: center;
  gap: 10px;
  width: 90%;
  max-width: 360px;
  justify-content: center;
}

.mobile-sticky-call svg {
  fill: currentColor;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .logo img {
    height: 75px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-container, .contact-grid, .service-detail-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail-block > div {
    order: initial !important;
  }

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

@media (max-width: 768px) {
  .logo img {
    height: 65px;
  }
  .top-bar-container {
    justify-content: flex-start;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 95px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 95px);
    background-color: var(--white);
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .header-phone-desktop {
    display: none;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .service-detail-block img {
    height: 250px;
  }

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

  .mobile-sticky-call {
    display: flex;
  }

  .section {
    padding: 60px 0;
  }
}
