/* ============================================================
   PAK AL HARAM GOODS TRANSPORT - PROFESSIONAL STYLE
   ============================================================ */

/* ----- CSS Variables ----- */
:root {
  --primary-blue: #0B5ED7;
  --dark-blue: #063970;
  --black: #0B0F14;
  --white: #FFFFFF;
  --light-bg: #F5F7FA;
  --light-border: #E5E7EB;
  --text-dark: #111827;
  --secondary-text: #6B7280;
  --font-family: 'Inter', sans-serif;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
}

/* ----- Reset & Base ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  padding-top: 90px;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--white);
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--primary-blue);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo Wrapper - Logo + Company Name */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-top img {
  height: 50px;
  width: auto;
  display: block;
}

/* Company Name - Two Lines with ZERO gap */
.company-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0;
  margin: 0;
  padding: 0;
}

.company-name .line1 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  margin: 0;
  padding: 0;
}

.company-name .line2 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin: 0;
  padding: 0;
}

/* Contact Stack */
.contact-stack {
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
}
.contact-stack .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.8rem;
  font-size: 0.8rem;
  line-height: 1.3;
  min-width: 80px;
}
.contact-stack .item .label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.contact-stack .item .value {
  color: var(--secondary-text);
  font-weight: 500;
}
.contact-stack .divider {
  width: 1px;
  background: var(--light-border);
  align-self: stretch;
  flex-shrink: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #717171;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--primary-blue);
}
.navbar.scrolled {
  padding: 0.3rem 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  display: flex;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}
.nav-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

/* Social Icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 1rem;
}
.social-icons a {
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.social-icons a:hover {
  color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 4px;
  transition: 0.3s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-weight: 600;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.85rem;
  text-align: center;
}
.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}
.btn-primary:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 94, 215, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  color: var(--black);
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-blue);
  margin: 0.5rem auto 0;
  border-radius: 4px;
}
.section-title p {
  max-width: 600px;
  margin: 0.8rem auto 0;
  color: var(--secondary-text);
  font-size: 1.05rem;
}

/* ============================================================
   HERO SECTION WITH SLIDER (ٹائلز کے بغیر)
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  overflow: hidden;
  background: transparent;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 90px);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 1s ease-in-out;
  padding: 6rem 0 4rem;
  background-blend-mode: overlay;
}

.slide.active {
  opacity: 1;
}

.slide .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 1.2s ease-in-out;
  transform: scale(1.1);
}

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

/* Hero Content with individual animations */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

/* Heading - Top to Center */
.hero-content .hero-heading {
  opacity: 0;
  transform: translateY(-80px);
  transition: all 0.8s ease 0.2s;
}

.slide.active .hero-content .hero-heading {
  opacity: 1;
  transform: translateY(0);
}

/* Subheading - Left to Center */
.hero-content .hero-subheading {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease 0.4s;
}

.slide.active .hero-content .hero-subheading {
  opacity: 1;
  transform: translateX(0);
}

/* Description & Buttons - Bottom to Center */
.hero-content .hero-desc {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease 0.6s;
}

.slide.active .hero-content .hero-desc {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .hero-buttons {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease 0.8s;
}

.slide.active .hero-content .hero-buttons {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .hero-trust {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease 1s;
}

.slide.active .hero-content .hero-trust {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.25rem 1.2rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 550px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.8rem;
  justify-content: center;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust span::before {
  content: "✓";
  color: var(--primary-blue);
  font-size: 1rem;
  font-weight: 700;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(6px);
}

.slider-btn:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.slider-dots .dot.active {
  background: var(--primary-blue);
  border-color: var(--white);
  transform: scale(1.15);
}

.slider-dots .dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: var(--transition);
}

.slider-dots .dot.active::after {
  border-color: rgba(255, 255, 255, 0.3);
}

.slider-dots .dot:hover {
  background: var(--primary-blue);
  transform: scale(1.1);
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, rgba(11, 15, 20, 0.88) 0%, rgba(6, 57, 112, 0.8) 100%),
    var(--dark-blue);
  background-size: cover, cover;
  background-blend-mode: overlay, normal;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 3px solid var(--primary-blue);
}
.page-hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 700;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin-top: 0.5rem;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid var(--light-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.4rem;
  color: var(--primary-blue);
  font-weight: 800;
}
.stat-item p {
  color: var(--secondary-text);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page {
  padding: 5rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-content p {
  color: var(--secondary-text);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.about-content h3 {
  font-size: 1.3rem;
  color: var(--black);
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}
.about-content h3:first-of-type {
  margin-top: 0;
}
.about-content ul {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}
.about-content ul li {
  color: var(--secondary-text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.about-content ul li:last-child {
  border-bottom: none;
}
.about-content ul li strong {
  color: var(--text-dark);
}
.about-content ul li::before {
  content: "▸";
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.2rem;
}

.about-image {
  background: var(--dark-blue);
  border-radius: 16px;
  min-height: 300px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDQwIDQwIj48cmVjdCB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIGZpbGw9IiMwYjVlZDciIG9wYWNpdHk9IjAuMSIvPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjEwIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+'),
    var(--dark-blue);
  background-size: 40px 40px, cover;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}
.about-image::after {
  content: '🚛';
  position: absolute;
  font-size: 4.5rem;
  opacity: 0.3;
}
.about-image span {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1.8rem;
  border-radius: 40px;
  z-index: 1;
  backdrop-filter: blur(4px);
}

/* Values Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.value-card {
  background: var(--light-bg);
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card h4 {
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.value-card p {
  color: var(--secondary-text);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page {
  padding: 5rem 0;
  background: var(--light-bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid var(--light-border);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card .icon {
  width: 56px;
  height: 56px;
  background: var(--primary-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--secondary-text);
  margin-bottom: 1rem;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page {
  padding: 5rem 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-item {
  background: var(--light-bg);
  border-radius: 12px;
  height: 220px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDQwIDQwIj48cmVjdCB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIGZpbGw9IiMwYjVlZDciIG9wYWNpdHk9IjAuMDYiLz48L3N2Zz4=');
  background-size: 30px 30px;
  background-color: var(--light-bg);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-text);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.gallery-item i {
  margin-right: 0.5rem;
}
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 94, 215, 0.15);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page {
  padding: 5rem 0;
  background: var(--light-bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.blog-card .img {
  height: 180px;
  background: var(--dark-blue);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDQwIDQwIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIxMCIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
  background-size: 30px 30px;
  background-blend-mode: overlay;
}
.blog-card .content {
  padding: 1.5rem;
}
.blog-card .meta {
  font-size: 0.75rem;
  color: var(--secondary-text);
  display: flex;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.blog-card .meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  transition: var(--transition);
}
.blog-card:hover h4 {
  color: var(--primary-blue);
}
.blog-card p {
  color: var(--secondary-text);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: 5rem 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.contact-info p strong {
  color: var(--text-dark);
  min-width: 80px;
  display: inline-block;
}
.contact-info .btn-group {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.map-placeholder {
  background: var(--light-bg);
  border-radius: 16px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-text);
  border: 1px solid var(--light-border);
  flex-direction: column;
}
.map-placeholder i {
  font-size: 2.8rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}
.map-placeholder p {
  margin: 0;
}

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-form-section {
  padding: 5rem 0;
  background: var(--light-bg);
}
.quote-form {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-grid .full {
  grid-column: 1 / -1;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--light-border);
  border-radius: 10px;
  font-family: inherit;
  transition: var(--transition);
  font-size: 0.9rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.1);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  font-size: 2.2rem;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}
.cta-section .btn {
  margin: 0 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.footer a {
  display: block;
  margin-bottom: 0.4rem;
  transition: var(--transition);
  font-size: 0.9rem;
}
.footer a:hover {
  color: var(--primary-blue);
  padding-left: 4px;
}
.footer p {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
.footer p i {
  width: 20px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  body {
    padding-top: 120px;
  }
  .top-bar .container {
    flex-wrap: wrap;
  }
  .logo-wrapper {
    gap: 8px;
  }
  .company-name .line1 {
    font-size: 1rem;
  }
  .company-name .line2 {
    font-size: 0.75rem;
  }
  .logo-top img {
    height: 40px;
  }
  .contact-stack {
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  .contact-stack .item {
    padding: 0 0.4rem;
    font-size: 0.7rem;
    min-width: 60px;
  }
  .navbar {
    top: 78px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #717171;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    gap: 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    padding: 0.8rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links a::after {
    display: none;
  }
  .nav-divider {
    display: none;
  }
  .social-icons {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .slider-btn {
    padding: 0.5rem 0.8rem;
    font-size: 1rem;
  }
  .slider-btn.prev {
    left: 12px;
  }
  .slider-btn.next {
    right: 12px;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 140px;
  }
  .top-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
  .logo-wrapper {
    gap: 6px;
  }
  .company-name .line1 {
    font-size: 0.9rem;
  }
  .company-name .line2 {
    font-size: 0.65rem;
  }
  .logo-top img {
    height: 35px;
  }
  .contact-stack {
    gap: 0.3rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-stack .item {
    padding: 0 0.3rem;
    font-size: 0.65rem;
    min-width: 50px;
  }
  .contact-stack .divider {
    display: none;
  }
  .navbar {
    top: 105px;
  }
  .container {
    padding: 0 16px;
  }
  .hero {
    min-height: 70vh;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.85rem;
  }
  .hero-buttons .btn {
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
  }
  .hero-trust {
    font-size: 0.7rem;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  .slider-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
  .slider-btn.prev {
    left: 6px;
  }
  .slider-btn.next {
    right: 6px;
  }
  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }
  .hero-content {
    max-width: 100%;
    padding: 0 16px;
  }
  .page-hero {
    padding: 2.5rem 0 2rem;
  }
  .page-hero h1 {
    font-size: 1.6rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .quote-form {
    padding: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.3rem;
  }
  .section-title h2 {
    font-size: 1.6rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}