* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

body {
  background: var(--brand-light);
  font-family: "Segoe UI", "Roboto", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Brand color palette (from logo.png) */
:root {
  --brand-dark: #4a4a4a; /* dark gray from logo */
  --brand-orange: #e87722; /* vibrant orange accent */
  --brand-light: #f8f8f8; /* light gray background */
  --brand-white: #ffffff;
  --text-dark: #2c2c2c;
  --text-muted: #6b6b6b;
}

/* Classic typography for headings */
h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brand-dark);
}

/* Premium Header Design */
header {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(232, 119, 34, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

/* Banner Hero Section */
.banner-hero {
  width: 100%;
  max-width: 100vw;
  height: clamp(250px, 40vh, 300px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 100%,
    rgba(0, 0, 0, 0.15) 50%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.banner-content {
  text-align: center;
  max-width: 900px;
  padding: 0 clamp(20px, 5vw, 40px);
  color: var(--brand-white);
}

.banner-content h1 {
  font-size: clamp(1.5em, 4vw, 2.8em);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: clamp(0.5px, 0.3vw, 2px);
  color: var(--brand-white);
}

.banner-content h2 {
  font-size: clamp(1em, 2.5vw, 1.4em);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.8px;
  color: var(--brand-white);
}

.banner-content p {
  font-size: clamp(0.9em, 1.8vw, 1.05em);
  margin-bottom: 20px;
  opacity: 0.95;
  letter-spacing: 0.3px;
  color: var(--brand-white);
}

.banner-features {
  display: flex;
  gap: clamp(10px, 2.5vw, 30px);
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 10px;
  max-width: 100%;
  width: 100%;
}

.feature-item {
  font-size: clamp(0.75em, 1.5vw, 1.1em);
  font-weight: 700;
  color: var(--brand-white);
  letter-spacing: 0.5px;
  padding: 0 clamp(6px, 1.5vw, 12px);
  border-right: 2px solid rgba(232, 119, 34, 0.4);
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

.feature-item:last-child {
  border-right: none;
}

.header-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 40px);
  overflow: hidden;
}

/* Navigation Bar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  font-size: 1em;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-icon {
  display: none;
}

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

.logo-text {
  display: none; /* logo.png already contains text */
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: visible;
}

.nav-links a {
  color: var(--brand-dark);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--brand-orange);
  transition: left 0.3s ease;
  z-index: -1;
  border-radius: 6px;
}

.nav-links a:hover::before {
  left: 0;
}

.nav-links a:hover {
  color: var(--brand-white);
  transform: translateY(-1px);
}

.nav-links a.active {
  background: var(--brand-orange);
  color: var(--brand-white);
  box-shadow: 0 4px 12px rgba(232, 119, 34, 0.25);
}

/* Hero Section for Home Page */
.hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
}

.title-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 900px;
}

.title-block h1 {
  font-size: 3.5em;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.title-block h2 {
  font-size: 1.5em;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.title-block p {
  font-size: 1.1em;
  opacity: 0.96;
  letter-spacing: 0.2px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1.2s ease;
}

/* Page Header Titles */
.page-header {
  text-align: center;
  padding: clamp(50px, 10vw, 80px) clamp(20px, 4vw, 40px);
  background: var(--brand-white);
  border-bottom: 1px solid rgba(74, 74, 74, 0.1);
}

.page-header h1 {
  font-size: clamp(2em, 4vw, 3em);
  color: var(--brand-dark);
  font-weight: 700;
  margin-bottom: clamp(12px, 2.5vw, 16px);
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: clamp(1.05em, 1.8vw, 1.2em);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Main Content */
main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 50px);
  position: relative;
  overflow: hidden;
}

/* Intro Section */
.intro {
  text-align: center;
  margin-top: 30px;
  margin-bottom: clamp(50px, 10vw, 80px);
  padding: clamp(35px, 6vw, 50px) clamp(20px, 4vw, 40px);
  background: transparent;
  border-left: 4px solid var(--brand-orange);
}

.intro h3 {
  font-size: clamp(1.6em, 3.5vw, 2.4em);
  color: var(--brand-dark);
  margin-bottom: clamp(15px, 3vw, 20px);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.intro p {
  font-size: clamp(1em, 1.8vw, 1.15em);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}

/* Highlights Section */
.highlights {
  display: none; /* Hide old version */
}

/* ========================================
   HIGHLIGHTS SECTION - COMPLETE REDESIGN
   ======================================== */

.highlights-section {
  padding: clamp(60px, 12vw, 100px) clamp(15px, 4vw, 50px);
  background: var(--brand-white);
  position: relative;
  margin-bottom: clamp(50px, 10vw, 80px);
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.highlights-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    180deg,
    var(--brand-light) 0%,
    var(--brand-white) 100%
  );
  z-index: 0;
}

.highlights-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(0px, 8vw, 0px);
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.section-label {
  display: inline-block;
  background: rgba(232, 119, 34, 0.08);
  color: var(--brand-orange);
  padding: clamp(6px, 1.2vw, 8px) clamp(15px, 3vw, 20px);
  border-radius: 20px;
  font-size: clamp(0.75em, 1.2vw, 0.85em);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.3vw, 1.8px);
  margin-bottom: clamp(12px, 2.5vw, 18px);
  border: 2px solid rgba(232, 119, 34, 0.2);
}

.highlights-header h2 {
  font-size: clamp(2em, 4vw, 3em);
  color: var(--brand-dark);
  margin-bottom: clamp(15px, 3vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.highlights-header p {
  font-size: clamp(1.05em, 1.8vw, 1.2em);
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 3vw, 30px);
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Services Slider - Premium Modern Design */
.services-slider {
  position: relative;
  width: 100%;
  max-width: 100vw;
  padding: clamp(40px, 8vw, 60px) clamp(30px, 8vw, 80px);
  box-sizing: border-box;
  overflow: hidden;
}

.services-slider .slides {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  min-height: 380px;
}

.services-slider .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transform: translateX(50px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-slider .slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--brand-white);
  color: var(--brand-dark);
  border: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5em;
  font-weight: 300;
  box-shadow: 0 8px 24px rgba(74, 74, 74, 0.15),
    0 2px 8px rgba(74, 74, 74, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.slider-arrow:hover,
.slider-arrow:focus {
  background: var(--brand-orange);
  color: var(--brand-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(232, 119, 34, 0.35),
    0 4px 12px rgba(232, 119, 34, 0.2);
  outline: none;
}

.slider-arrow.prev {
  left: 20px;
  z-index: 10;
}
.slider-arrow.next {
  right: 20px;
  z-index: 10;
}

/* If calc produces negative offset on small screens, clamp using media query */
@media (max-width: 1100px) {
  .slider-arrow.prev {
    left: 12px;
  }
  .slider-arrow.next {
    right: 12px;
  }
}

.slider-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(74, 74, 74, 0.2);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dots .dot.active {
  background: var(--brand-orange);
  width: 32px;
  border-radius: 5px;
  transform: none;
}

.slider-dots .dot:focus {
  outline: 2px solid rgba(176, 139, 79, 0.25);
}

/* Premium Slide Card Design - FULL IMAGE PROFESSIONAL PRESENTATION */
.slide .highlight-card {
  max-width: min(900px, 95vw);
  width: 100%;
  height: 340px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: var(--brand-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(74, 74, 74, 0.12),
    0 8px 24px rgba(74, 74, 74, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide .highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(74, 74, 74, 0.16),
    0 12px 32px rgba(74, 74, 74, 0.12);
}

/* Enlarged image area: 55% of card width for full professional display - NO WHITE SPACE SIDES */
.slide .highlight-card .card-image-wrapper {
  flex: 0 0 55%;
  height: 100%;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.slide .highlight-card .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill entire area while showing full image */
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Keep full-fit intact in slider: no zoom on hover */
.services-slider .highlight-card:hover .card-image-wrapper img {
  transform: none;
}

.slide .highlight-card .card-image-wrapper .image-overlay {
  background: linear-gradient(
    135deg,
    rgba(232, 119, 34, 0.02) 0%,
    rgba(74, 74, 74, 0.01) 100%
  );
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

.slide .highlight-card:hover .card-image-wrapper .image-overlay {
  opacity: 0.1;
}

/* Optimized content area: 45% for compact, readable text */
.slide .highlight-card .card-content {
  flex: 0 0 45%;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--brand-white);
  overflow-y: auto;
}

.slide .card-content .card-icon {
  font-size: 1.6em;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(232, 119, 34, 0.1) 0%,
    rgba(232, 119, 34, 0.05) 100%
  );
  border-radius: 50%;
  border: 2px solid rgba(232, 119, 34, 0.2);
  flex-shrink: 0;
  transition: all 0.3s ease;
  line-height: 1;
  margin-top: 16px;
}

.slide .highlight-card:hover .card-icon {
  background: linear-gradient(
    135deg,
    rgba(232, 119, 34, 0.15) 0%,
    rgba(232, 119, 34, 0.08) 100%
  );
  border-color: rgba(232, 119, 34, 0.35);
  transform: scale(1.05);
}

.slide .card-content .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  min-height: 48px;
}

.slide .card-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 1.15em;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
  line-height: 1.3;
  flex: 1;
}

.slide .card-content p {
  font-family: "Segoe UI", "Roboto", Arial, sans-serif;
  color: var(--text-muted);
  font-size: 0.8em;
  margin-bottom: 12px;
  line-height: 1.5;
  display: block;
}

.slide .card-content .card-features {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}

.slide .card-content .feature-tag {
  background: rgba(232, 119, 34, 0.08);
  color: var(--brand-orange);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 600;
  border: 1px solid rgba(232, 119, 34, 0.2);
  transition: all 0.3s ease;
}

.slide .card-content .feature-tag:hover {
  background: rgba(232, 119, 34, 0.15);
  border-color: rgba(232, 119, 34, 0.4);
}

.slide .card-content .service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85em;
  transition: all 0.3s ease;
  margin-left: auto;
  white-space: nowrap;
}

.slide .card-content .service-link:hover {
  gap: 12px;
  color: var(--brand-dark);
}

/* image overlay - subtle classic tone */
.card-image-wrapper img {
  filter: saturate(0.95) contrast(0.98);
}
.card-image-wrapper .image-overlay {
  background: linear-gradient(
    180deg,
    rgba(176, 139, 79, 0) 0%,
    rgba(0, 0, 0, 0.15) 100%
  );
  opacity: 0.08;
}

/* responsive adjustments for slider */
@media (max-width: 768px) {
  .services-slider .slides {
    min-height: 340px;
  }
  .slider-arrow.prev {
    left: 4px;
  }
  .slider-arrow.next {
    right: 4px;
  }
  .slider-arrow {
    width: 38px;
    height: 38px;
  }
  .slider-dots .dot {
    width: 12px;
    height: 6px;
  }
}

@media (max-width: 992px) {
  .services-slider .slides {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .slide .highlight-card {
    max-width: 100%;
    height: auto;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .slide .highlight-card .card-image-wrapper {
    flex: 0 0 auto;
    width: 100%;
    height: 240px;
    border-radius: 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slide .highlight-card .card-content {
    flex: 0 0 auto;
    padding: 20px 18px;
    max-height: auto;
    overflow-y: visible;
    justify-content: flex-start;
  }
  .slider-arrow.prev {
    left: 6px;
  }
  .slider-arrow.next {
    right: 6px;
  }
}

.highlight-card {
  background: var(--brand-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(74, 74, 74, 0.08);
  transition: all 0.35s ease;
  position: relative;
  border: 1px solid rgba(74, 74, 74, 0.1);
  cursor: default;
  display: flex;
  flex-direction: column;
}

.highlight-card:hover {
  box-shadow: 0 8px 24px rgba(74, 74, 74, 0.12);
  transform: translateY(-4px);
  border-color: rgba(232, 119, 34, 0.2);
}

.card-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  background: var(--brand-orange);
  color: var(--brand-white);
  font-size: 1.05em;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(232, 119, 34, 0.3);
  transition: all 0.25s ease;
}

.highlight-card:hover .card-number {
  transform: scale(1.05);
}

.card-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.45s ease;
}

/* Ensure image stays centered inside its frame */
.card-image-wrapper img {
  object-position: center center;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.12) 100%
  );
  opacity: 1;
  transition: background 0.35s ease, opacity 0.35s ease;
}

.highlight-card:hover .image-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.card-content {
  padding: 28px 24px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow:  hidden !important;
}

.card-icon {
  font-size: 2.8em;
  margin-bottom: 14px;
  display: block;
  filter: grayscale(0.3);
  transition: all 0.3s ease;
}

.highlight-card:hover .card-icon {
  filter: grayscale(0);
  transform: scale(1.1);
}

.card-content h3 {
  font-size: 1.5em;
  color: var(--brand-dark);
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.highlight-card:hover .card-content h3 {
  color: var(--brand-orange);
}

.card-content p {
  font-size: 0.98em;
  color: var(--text-muted);
  line-height: 1.7;
  /* margin-bottom: 18px; */
}

.card-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--brand-light);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85em;
  font-weight: 600;
  border: 1px solid rgba(74, 74, 74, 0.15);
  transition: all 0.22s ease;
}

.highlight-card:hover .feature-tag {
  background: rgba(232, 119, 34, 0.1);
  border-color: rgba(232, 119, 34, 0.3);
  color: var(--brand-orange);
}

/* Classic Decorative Elements */
.card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, transparent 100%);
  border-radius: 2px;
}

/* Clickable Card Link Wrapper */
.highlight-card-link {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.highlight-card-link:hover {
  transform: translateY(-8px);
}

.highlight-card-link:active .highlight-card {
  transform: scale(0.98);
}

/* Service Link Button */
.service-link {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 22px;
  background: transparent;
  color: var(--brand-dark);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95em;
  transition: all 0.25s ease;
  border: 1px solid rgba(74, 74, 74, 0.3);
}

.highlight-card-link:hover .service-link {
  transform: translateX(6px);
  background: var(--brand-orange);
  color: var(--brand-white);
  border-color: var(--brand-orange);
}

.services-main {
  margin-bottom: 0;
}

/* Responsive Design for Highlights */
@media (max-width: 1200px) {
  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .highlights-section {
    padding: 60px 25px;
  }

  .highlights-header {
    margin-bottom: 50px;
  }

  .highlights-header h2 {
    font-size: 2.2em;
  }

  .highlights-header p {
    font-size: 1.1em;
  }

  .section-label {
    font-size: 0.8em;
    padding: 8px 20px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-image-wrapper {
    height: 240px;
  }

  .card-content {
    padding: 30px 25px;
  }

  .card-content h3 {
    font-size: 1.5em;
  }

  .card-number {
    width: 55px;
    height: 55px;
    font-size: 1.6em;
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .highlights-section {
    padding: 50px 20px;
  }

  .highlights-header h2 {
    font-size: 1.9em;
  }

  .highlights-header p {
    font-size: 1em;
  }

  .card-image-wrapper {
    height: 200px;
  }

  .card-content {
    padding: 25px 20px;
  }

  .card-icon {
    font-size: 3em;
  }

  .card-content h3 {
    font-size: 1.4em;
  }

  .card-content p {
    font-size: 1em;
  }

  .card-number {
    width: 50px;
    height: 50px;
    font-size: 1.4em;
  }

  .feature-tag {
    font-size: 0.8em;
    padding: 6px 12px;
  }
}

/* Old Highlights Styles - Kept for compatibility */

.highlights > div {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.highlights > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--brand-orange) 0%,
    var(--brand-dark) 100%
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.highlights > div:hover::before {
  transform: scaleX(1);
}

.highlights > div:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.highlights img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.highlights > div:hover img {
  transform: scale(1.08);
}

.highlights h4 {
  padding: 25px;
  font-size: 1.35em;
  color: var(--brand-dark);
  font-weight: 600;
}

/* CTA Section */
.cta {
  text-align: center;
}

.cta-btn {
  display: inline-block;
  background: transparent;
  color: var(--brand-dark);
  font-size: 1.05em;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--brand-dark);
  transition: all 0.25s ease;
  margin-bottom: 30px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: var(--brand-orange);
  color: var(--brand-white);
  border-color: var(--brand-orange);
  box-shadow: 0 4px 16px rgba(232, 119, 34, 0.3);
}

/* Service List */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(25px, 5vw, 40px);
  margin-top: clamp(40px, 8vw, 60px);
}

.service-box {
  background: var(--brand-white);
  border-radius: 12px;
  padding: clamp(30px, 5vw, 40px);
  box-shadow: 0 4px 16px rgba(74, 74, 74, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(74, 74, 74, 0.1);
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 74, 74, 0.12);
  border-color: var(--brand-orange);
}

.service-box img {
  width: 100%;
  height: clamp(180px, 25vw, 220px);
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: clamp(20px, 3vw, 25px);
  transition: transform 0.3s ease;
}

.service-box:hover img {
  transform: scale(1.05);
}

.service-box h3 {
  font-size: clamp(1.3em, 2.2vw, 1.6em);
  color: var(--brand-dark);
  margin-bottom: clamp(14px, 2.5vw, 18px);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.service-box p {
  color: var(--text-muted);
  font-size: clamp(1em, 1.5vw, 1.08em);
  line-height: 1.8;
}

/* ========================================
   COMPLETE ABOUT PAGE REDESIGN - NEW DESIGN
   ======================================== */

/* About Hero Section */
.about-hero-section {
  position: relative;
  height: 450px;
  background: linear-gradient(
    135deg,
    var(--brand-dark) 0%,
    #5a5a5a 50%,
    var(--brand-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>');
  background-size: 100px 100px;
  opacity: 0.5;
}

.about-hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-label {
  display: inline-block;
  background: rgba(232, 119, 34, 0.15);
  color: var(--brand-white);
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  border: 2px solid rgba(232, 119, 34, 0.3);
}

.about-hero-content h1 {
  font-size: 4em;
  color: var(--brand-white);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
}

.about-hero-content p {
  font-size: 1.3em;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.6;
}

/* Main About Content */
.about-main {
  background: var(--brand-light);
}

/* Profile Section */
.profile-section {
  padding: 100px 0;
  background: var(--brand-white);
}

.profile-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.profile-card-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--brand-white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(74, 74, 74, 0.1);
  border: 1px solid rgba(74, 74, 74, 0.08);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .profile-card-main {
    grid-template-columns: 400px 1fr;
    gap: 60px;
  }
}

.profile-image-side {
  position: relative;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #5a5a5a 100%);
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px 0 0 16px;
}

.profile-image-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="25" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1.5"/></svg>');
  background-size: 60px 60px;
  opacity: 0.5;
}

.image-frame {
  width: 100%;
  position: relative;
  z-index: 1;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(
    135deg,
    rgba(232, 119, 34, 0.25) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 16px;
  z-index: -1;
}

.image-frame img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 5px solid rgba(255, 255, 255, 0.9);
  display: block;
}

.experience-tag {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 2px solid #f5f7fa;
  z-index: 2;
  transition: all 0.3s ease;
}

.experience-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(74, 74, 74, 0.15);
  border-color: var(--brand-orange);
}

.tag-years {
  display: block;
  font-size: 3em;
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.tag-label {
  display: block;
  font-size: 0.85em;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile-content-side {
  padding: 50px 50px 50px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* New: Image-free profile card */
.profile-bio-card {
  /* background: var(--brand-white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(74, 74, 74, 0.1);
  border: 1px solid rgba(74, 74, 74, 0.08);
  padding: 40px; */
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-bio-card .name-section h2 {
  margin-bottom: 6px;
}

.profile-bio-card .qualification-badges {
  margin-top: 4px;
}

/* Bio header */
.bio-header {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid rgba(74, 74, 74, 0.08);
  flex-wrap: wrap;
}

.bio-avatar {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d66a1e 100%);
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 20px 60px rgba(74, 74, 74, 0.15), 0 0 0 6px rgba(232, 119, 34, 0.1);
  overflow: hidden;
  border: 6px solid white;
  flex-shrink: 0;
  position: relative;
}

.bio-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.bio-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.bio-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bio-title h2 {
  margin: 0;
  font-size: 2.2em;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.bio-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95em;
  font-weight: 500;
}

.designation {
  font-size: 1.15em;
  color: var(--brand-orange);
  font-weight: 700;
  margin: 0;
}

.bio-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-self: flex-start;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.btn.small {
  padding: 10px 16px;
  font-size: 0.92em;
}
.btn.primary {
  background: var(--brand-orange);
  color: #fff;
  border: 2px solid var(--brand-orange);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 119, 34, 0.35);
}
.btn.outline {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid rgba(74, 74, 74, 0.25);
}
.btn.outline:hover {
  background: rgba(74, 74, 74, 0.06);
}

/* Bio body */
.bio-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding-top: 18px;
}

.bio-left .qualification-badges {
  margin-bottom: 10px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
  border: 1px solid rgba(74, 74, 74, 0.1);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.stat-card .stat-number {
  margin-bottom: 6px;
}
.stat-card .stat-label {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.95em;
}

/* Expertise tags */
.expertise-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.expertise-tags .chip {
  background: var(--brand-light);
  border: 1px solid rgba(74, 74, 74, 0.15);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85em;
}

/* Quote box */
.bio-quote {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--brand-orange);
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
  color: var(--text-dark);
  font-style: italic;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .profile-bio-card {
    padding: 30px 20px;
    gap: 20px;
  }
  .bio-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .bio-title {
    align-items: center;
  }
  .bio-title h2 {
    font-size: 1.8em;
  }
  .bio-cta {
    justify-content: center;
    width: 100%;
    margin-top: 12px;
  }
  .bio-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bio-avatar {
    width: 140px;
    height: 140px;
    border: 4px solid white;
  }
  .qualification-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.name-section h2 {
  font-size: 2.8em;
  color: var(--brand-dark);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.designation {
  font-size: 1.25em;
  color: var(--brand-orange);
  font-weight: 700;
  margin: 0;
}

.qualification-badges {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  align-items: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-light);
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(74, 74, 74, 0.15);
}

.badge-icon {
  font-size: 1.5em;
}

.badge-text {
  font-size: 1.05em;
  font-weight: 600;
  color: var(--text-dark);
}

.about-text p {
  font-size: 1.15em;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.achievement-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 2px solid rgba(74, 74, 74, 0.15);
}

/* .number-box {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.number-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.number-box h3 {
  font-size: 2.8em;
  background: linear-gradient(135deg, #ff6b6b 0%, #1e3c72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-weight: 800;
}

.number-box p {
  font-size: 1em;
  color: #5a6c7d;
  margin: 0;
  font-weight: 600;
} */

/* Services Overview Section */
.services-overview-section {
  padding: 0px 50px 50px 50px;
  background: var(--brand-white);
}

.section-title-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.title-label {
  display: inline-block;
  background: rgba(232, 119, 34, 0.08);
  color: var(--brand-orange);
  padding: 8px 22px;
  border-radius: 6px;
  font-size: 0.88em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 2px solid rgba(232, 119, 34, 0.2);
}

.section-title-center h2 {
  font-size: 2.8em;
  color: var(--brand-dark);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-title-center p {
  font-size: 1.2em;
  color: var(--text-muted);
  line-height: 1.8;
}

.services-grid-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.service-item-about {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid #f5f7fa;
}

.service-item-about:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-orange);
}

.service-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(232, 119, 34, 0.1) 0%,
    rgba(74, 74, 74, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.service-item-about:hover .service-icon-circle {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d66a1e 100%);
  transform: scale(1.1);
}

.service-item-about h3 {
  font-size: 1.5em;
  color: var(--brand-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-item-about p {
  font-size: 1.05em;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Why Us Section */
.why-us-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.why-us-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-us-left h2 {
  font-size: 2.8em;
  color: var(--brand-dark);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.why-us-left p {
  font-size: 1.15em;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d66a1e 100%);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.3em;
  color: var(--brand-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.feature-text p {
  font-size: 1.05em;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.why-us-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.why-card-icon {
  font-size: 3em;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.6em;
  color: var(--brand-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.why-card p {
  font-size: 1.05em;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Final CTA Section */
.final-cta-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #5a5a5a 100%);
  text-align: center;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 3.5em;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 800;
}

.cta-inner p {
  font-size: 1.3em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 45px;
  line-height: 1.7;
}

.cta-button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d66a1e 100%);
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.15em;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(232, 119, 34, 0.4);
  transition: all 0.3s ease;
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 119, 34, 0.5);
}

.btn-secondary-cta {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.15em;
  font-weight: 700;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Responsive Design for New About Page */
@media (max-width: 1024px) {
  .profile-card-main {
    grid-template-columns: 350px 1fr;
    gap: 40px;
  }

  .profile-content-side {
    padding: 40px 40px 40px 0;
  }

  .why-us-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2.8em;
  }

  .about-hero-content p {
    font-size: 1.1em;
  }

  .profile-card-main {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .profile-image-side {
    padding: 30px 25px;
  }

  .image-frame::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }

  .experience-tag {
    bottom: -20px;
    right: -20px;
    padding: 25px;
  }

  .tag-years {
    font-size: 2.5em;
  }

  .tag-label {
    font-size: 0.75em;
  }

  .profile-content-side {
    padding: 40px 30px;
  }

  .name-section h2 {
    font-size: 2.2em;
  }

  .achievement-numbers {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-title-center h2 {
    font-size: 2em;
  }

  .services-grid-about {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .why-us-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-inner h2 {
    font-size: 2.2em;
  }

  .cta-button-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    text-align: center;
  }
}
.about-page-header {
  background: linear-gradient(
    135deg,
    rgba(74, 74, 74, 0.05) 0%,
    rgba(232, 119, 34, 0.05) 100%
  );
  padding: 80px 40px;
}

.about-page-header h1 {
  font-size: 3.5em;
  background: linear-gradient(
    135deg,
    var(--brand-dark) 0%,
    var(--brand-orange) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Profile Hero Section */
.profile-hero {
  padding: 0 0 100px 0;
}

.profile-container {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.profile-left {
  position: relative;
}

.profile-image-wrapper {
  position: relative;
  padding: 20px;
}

.profile-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--brand-orange) 0%,
    var(--brand-dark) 100%
  );
  border-radius: 30px;
  transform: rotate(-3deg);
  opacity: 0.1;
  z-index: 0;
}

.profile-image {
  position: relative;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 1;
  transition: transform 0.4s ease;
}

.profile-image:hover {
  transform: scale(1.02);
}

.experience-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d66a1e 100%);
  color: #fff;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(232, 119, 34, 0.4);
  text-align: center;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.badge-number {
  font-size: 3em;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-text {
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Profile Right Content */
.profile-right {
  padding-left: 20px;
}

.profile-label {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(232, 119, 34, 0.1) 0%,
    rgba(74, 74, 74, 0.1) 100%
  );
  color: var(--brand-orange);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.profile-intro h2 {
  font-size: 3.5em;
  color: var(--brand-dark);
  margin: 15px 0 30px;
  font-weight: 800;
  line-height: 1.2;
}

.profile-credentials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--brand-orange);
  transition: all 0.3s ease;
}

.credential-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.credential-icon {
  font-size: 2em;
  flex-shrink: 0;
}

.credential-item strong {
  display: block;
  font-size: 1.2em;
  color: var(--brand-dark);
  margin-bottom: 5px;
}

.credential-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95em;
}

.profile-story {
  margin-bottom: 40px;
}

.profile-story h3 {
  font-size: 2em;
  color: var(--brand-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.profile-story p {
  font-size: 1.15em;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding-top: 30px;
  border-top: 2px solid #e8ecf1;
}

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

.stat-number {
  font-size: 3em;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.95em;
  color: var(--text-muted);
  font-weight: 600;
}

/* Expertise Section */
.expertise-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f5f7fa 0%, #fff 100%);
}

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

.section-label {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(232, 119, 34, 0.1) 0%,
    rgba(74, 74, 74, 0.1) 100%
  );
  color: var(--brand-orange);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 3em;
  color: var(--brand-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2em;
  color: var(--text-muted);
  line-height: 1.7;
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
}

.expertise-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--brand-orange) 0%,
    var(--brand-dark) 100%
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-orange);
}

.expertise-card.featured {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #5a5a5a 100%);
  color: #fff;
}

.expertise-card.featured .card-icon {
  background: rgba(255, 255, 255, 0.2);
}

.expertise-card.featured h3,
.expertise-card.featured p,
.expertise-card.featured li {
  color: #fff;
}

.card-icon {
  font-size: 3.5em;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(232, 119, 34, 0.1) 0%,
    rgba(74, 74, 74, 0.1) 100%
  );
  border-radius: 20px;
  margin-bottom: 25px;
}

.expertise-card h3 {
  font-size: 1.8em;
  color: var(--brand-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.expertise-card p {
  font-size: 1.05em;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-list li {
  padding: 12px 0 12px 35px;
  color: var(--text-muted);
  font-size: 1em;
  position: relative;
  line-height: 1.6;
}

.expertise-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-weight: bold;
  font-size: 1.2em;
}

.expertise-card.featured .expertise-list li::before {
  color: #fff;
}

/* Philosophy Section */
.philosophy-section {
  padding: 100px 0;
  background: #fff;
}

.philosophy-content {
  max-width: 1400px;
  margin: 0 auto;
}

.philosophy-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.philosophy-text h2 {
  font-size: 3em;
  color: var(--brand-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.philosophy-text p {
  font-size: 1.2em;
  color: var(--text-muted);
  line-height: 1.9;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.pillar-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid #e8ecf1;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-orange);
  background: #fff;
}

.pillar-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-size: 1.5em;
  color: var(--brand-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.pillar-card p {
  font-size: 1.05em;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Why Choose Section - Premium Redesign */
.why-choose-section {
  padding: clamp(60px, 12vw, 100px) clamp(20px, 4vw, 40px);
  background: linear-gradient(135deg, #fafbfc 0%, #f0f2f5 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-choose-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 74, 74, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-choose-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(50px, 8vw, 70px);
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.why-choose-header::before {
  content: "";
  width: clamp(60px, 10vw, 80px);
  height: 4px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, transparent 100%);
  display: block;
  margin: 0 auto 25px;
  border-radius: 2px;
}

.why-choose-header h2 {
  font-size: clamp(2em, 4.5vw, 3.2em);
  color: var(--brand-dark);
  margin-bottom: clamp(15px, 3vw, 25px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.why-choose-header p {
  font-size: clamp(1.05em, 1.8vw, 1.25em);
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 4vw, 30px);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-item {
  background: #ffffff;
  padding: clamp(30px, 5vw, 45px) clamp(25px, 4vw, 35px);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(232, 119, 34, 0.08);
}

.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, #d66a1e 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-item::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: 0;
}

.why-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(232, 119, 34, 0.15);
  border-color: rgba(232, 119, 34, 0.25);
}

.why-item:hover::before {
  transform: scaleX(1);
}

.why-item:hover::after {
  transform: scale(1.5);
  opacity: 0.3;
}

.why-number {
  font-size: clamp(3em, 6vw, 5em);
  font-weight: 900;
  background: linear-gradient(135deg, rgba(232, 119, 34, 0.15) 0%, rgba(232, 119, 34, 0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.9;
  margin-bottom: 20px;
  position: absolute;
  top: clamp(15px, 3vw, 25px);
  right: clamp(15px, 3vw, 25px);
  z-index: 0;
  transition: all 0.5s ease;
}

.why-item:hover .why-number {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, rgba(232, 119, 34, 0.25) 0%, rgba(232, 119, 34, 0.1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-icon {
  width: clamp(55px, 10vw, 70px);
  height: clamp(55px, 10vw, 70px);
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d66a1e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5em, 3vw, 2em);
  color: #ffffff;
  margin-bottom: clamp(18px, 3vw, 25px);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(232, 119, 34, 0.35);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-item:hover .why-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 12px 35px rgba(232, 119, 34, 0.5);
}

.why-item h4 {
  font-size: clamp(1.25em, 2.2vw, 1.65em);
  color: var(--brand-dark);
  margin-bottom: clamp(12px, 2vw, 18px);
  font-weight: 700;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.why-item:hover h4 {
  color: var(--brand-orange);
}

.why-item p {
  font-size: clamp(0.95em, 1.5vw, 1.08em);
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Add badge for featured item */
.why-item.featured {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #5a5a5a 100%);
  border-color: var(--brand-orange);
}

.why-item.featured h4,
.why-item.featured p {
  color: #ffffff;
}

.why-item.featured .why-icon {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: var(--brand-orange);
}

.why-item.featured .why-number {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-item.featured::before {
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
}

/* About CTA Section */
.about-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #5a5a5a 100%);
  text-align: center;
  color: #fff;
}

.about-cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: 3.2em;
  margin-bottom: 25px;
  font-weight: 700;
}

.about-cta p {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.7;
}

/* New About Page Design */
.about-hero {
  margin-bottom: 80px;
}

.about-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.about-image-container {
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  max-width: 500px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

.image-badge {
  position: absolute;
  top: 60px;
  right: 60px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d66a1e 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1em;
  box-shadow: 0 8px 20px rgba(232, 119, 34, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.about-details {
  padding: 50px 60px 60px;
}

.about-header {
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e8ecf1;
}

.about-header h2 {
  font-size: 2.8em;
  color: var(--brand-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.credentials {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.credential-badge {
  background: linear-gradient(
    135deg,
    rgba(232, 119, 34, 0.1) 0%,
    rgba(74, 74, 74, 0.1) 100%
  );
  color: var(--brand-dark);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.05em;
  border: 2px solid rgba(74, 74, 74, 0.2);
}

.about-description {
  margin-bottom: 45px;
}

.about-description p {
  font-size: 1.2em;
  line-height: 1.9;
  color: var(--text-muted);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.expertise-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #e8ecf1;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  border-color: var(--brand-orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.expertise-item h4 {
  font-size: 1.25em;
  color: var(--brand-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.expertise-item p {
  color: var(--text-muted);
  font-size: 1em;
  line-height: 1.6;
  margin: 0;
}

/* Values Section */
.values-section {
  text-align: center;
  padding: 80px 0;
}

.values-section h3 {
  font-size: 2.8em;
  color: var(--brand-dark);
  margin-bottom: 60px;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.value-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brand-orange) 0%,
    var(--brand-dark) 100%
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.value-number {
  font-size: 3.5em;
  font-weight: 800;
  color: rgba(232, 119, 34, 0.15);
  line-height: 1;
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 1.4em;
  color: var(--brand-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  color: var(--text-muted);
  font-size: 1.05em;
  line-height: 1.7;
  margin: 0;
}

.about-img {
  width: 400px;
  min-width: 400px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.03);
}

.about-content h2 {
  font-size: 2.5em;
  color: var(--brand-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content p {
  font-size: 1.15em;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-content ul {
  list-style: none;
  margin-top: 30px;
}

.about-content ul li {
  padding: 15px 0 15px 40px;
  font-size: 1.1em;
  color: #2c3e50;
  position: relative;
  border-left: 3px solid var(--brand-orange);
  margin-bottom: 15px;
  padding-left: 25px;
  background: rgba(232, 119, 34, 0.05);
  border-radius: 8px;
}

.about-content ul li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  color: var(--brand-orange);
  font-weight: bold;
  font-size: 1.2em;
}

/* Contact Block */
.contact-block {
  background: #fff;
  border-radius: 24px;
  max-width: 700px;
  margin: 60px auto;
  padding: 60px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.contact-intro h2 {
  font-size: 2.8em;
  color: var(--brand-dark);
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: 700;
}

.contact-intro p {
  font-size: 1.2em;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--brand-orange);
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  margin-bottom: 20px;
}
.contact-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.contact-info-card h3 {
  font-size: 1.5em;
  color: var(--brand-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-title {
  color: var(--text-muted);
  font-size: 0.95em;
  margin: 0;
  line-height: 1.6;
}

.contact-link {
  display: block;
  color: var(--brand-orange);
  font-size: 1.15em;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--brand-dark);
}

.contact-link.whatsapp {
  color: #25d366;
}

.contact-link.whatsapp:hover {
  color: #128c7e;
}

.contact-link.gmail {
  color: #ea4335;
}

.contact-link.gmail:hover {
  color: #c5221f;
}

.contact-note {
  color: #8a9aa9;
  font-size: 0.9em;
  margin: 0;
}

/* Locations Section - Redesigned with Perfect Spacing */
.locations-section {
  margin-bottom: clamp(50px, 10vw, 70px);
  padding: clamp(40px, 8vw, 60px) clamp(15px, 3vw, 20px);
  background: linear-gradient(to bottom, #fafbfc, #ffffff);
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

/* Elegant Section Header */
.location-section-header {
  text-align: center;
  margin-bottom: clamp(35px, 6vw, 50px);
  position: relative;
  padding: 0 15px;
}

.header-ornament {
  width: clamp(50px, 10vw, 60px);
  height: 3px;
  background: var(--brand-orange);
  margin: 0 auto clamp(15px, 3vw, 20px);
  border-radius: 2px;
}

.location-section-header h2 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.8em, 4vw, 2.6em);
  color: var(--brand-dark);
  margin-bottom: clamp(8px, 1.5vw, 10px);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.3;
}

.section-description {
  font-size: clamp(0.95em, 1.5vw, 1.05em);
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* Classic Card Container */
.office-location-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 20px);
}

.office-location-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.office-location-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--brand-orange);
  transform: translateY(-4px);
}

/* Classic Header */
.classic-header {
  padding: clamp(25px, 5vw, 35px) clamp(20px, 4vw, 40px);
  background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 20px);
  border-bottom: 3px solid var(--brand-orange);
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.header-emblem {
  width: clamp(60px, 12vw, 70px);
  height: clamp(60px, 12vw, 70px);
  background: #ffffff;
  border: 3px solid var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(232, 119, 34, 0.4);
}

.header-text {
  flex: 1;
  min-width: 200px;
}

.header-text h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.3em, 3vw, 2em);
  color: #ffffff;
  margin-bottom: clamp(4px, 1vw, 6px);
  font-weight: 600;
  letter-spacing: clamp(0.5px, 0.2vw, 2px);
  line-height: 1.3;
  word-wrap: break-word;
}

.header-text p {
  font-size: clamp(0.85em, 1.5vw, 0.95em);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.5;
}

/* Classic Divider */
.classic-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0 20%, #e0e0e0 80%, transparent);
  margin: 0 clamp(20px, 4vw, 40px);
}

/* Office Content */
.office-content {
  padding: clamp(25px, 5vw, 35px) clamp(20px, 4vw, 40px);
}

/* Address Section */
.address-section {
  margin-bottom: clamp(20px, 4vw, 30px);
  padding-bottom: clamp(20px, 4vw, 30px);
  border-bottom: 2px solid #f5f5f5;
}

.address-section h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.1em, 2vw, 1.3em);
  color: var(--brand-dark);
  margin-bottom: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.4;
}

.address-icon {
  font-size: 1.2em;
  flex-shrink: 0;
}

.address-section address {
  font-style: normal;
  font-size: clamp(0.95em, 1.5vw, 1.1em);
  color: #4a4a4a;
  line-height: 1.9;
  padding-left: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.address-section address strong {
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 1px;
  display: inline;
}

/* Contact Details Grid - Redesigned */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(15px, 3vw, 20px);
  width: 100%;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 2.5vw, 15px);
  padding: clamp(16px, 3vw, 20px);
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-left: 4px solid var(--brand-orange);
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 100px;
  width: 100%;
  overflow: hidden;
}

.detail-item:hover {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-left-width: 6px;
}

.detail-icon {
  width: clamp(50px, 10vw, 55px);
  height: clamp(50px, 10vw, 55px);
  min-width: 50px;
  background: linear-gradient(135deg, var(--brand-orange), #d66419);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232, 119, 34, 0.35);
  font-size: clamp(1.2em, 2.5vw, 1.5em);
}

.detail-icon svg {
  opacity: 1;
  filter: none;
}

.detail-content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.detail-label {
  display: block;
  font-size: clamp(0.75em, 1.2vw, 0.85em);
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: clamp(4px, 1vw, 6px);
  line-height: 1.4;
}

.detail-content a,
.detail-text {
  display: block;
  font-size: clamp(0.95em, 1.4vw, 1.05em);
  color: var(--brand-dark);
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.detail-content a:hover {
  color: var(--brand-orange);
  text-decoration: underline;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-orange), #d66419);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.info-details {
  flex: 1;
}

.info-label {
  font-size: 0.9em;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.info-value {
  font-size: 1.05em;
  color: var(--brand-dark);
  font-weight: 500;
  line-height: 1.6;
}

.info-value a {
  color: var(--brand-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-value a:hover {
  color: var(--brand-orange);
}

.detail-item svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

.location-map-placeholder {
  height: 280px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  position: relative;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 74, 74, 0.05);
}

.map-overlay p {
  font-size: 1.3em;
  color: var(--brand-dark);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* CTA Contact Section */
.cta-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #5a5a5a 100%);
  padding: 80px 60px;
  border-radius: 24px;
  margin-bottom: 80px;
}

.cta-contact-content {
  color: #fff;
}

.cta-contact-content h2 {
  font-size: 2.8em;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--brand-white);
}

.cta-contact-content p {
  font-size: 1.2em;
  line-height: 1.9;
  margin-bottom: 35px;
  opacity: 0.97;
  color: var(--brand-white);
}
.emblem-img {
  width: 55px;
  height: 55px;
  z-index: 0;
  border-radius: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-btn.primary {
  background: var(--brand-orange);
  color: var(--brand-white);
  padding: 16px 42px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(232, 119, 34, 0.25);
  display: inline-block;
  border: 2px solid var(--brand-orange);
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 119, 34, 0.35);
  background: #d66a1e;
  border-color: #d66a1e;
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--brand-white);
  padding: 16px 42px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08em;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: inline-block;
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--brand-white);
  border-color: var(--brand-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-btn.whatsapp {
  background: #25d366;
  color: #ffffff;
  padding: 16px 42px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
  display: inline-block;
  border: 2px solid #25d366;
}

.cta-btn.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  background: #1ebe5d;
  border-color: #1ebe5d;
}

.cta-btn.gmail {
  background: #ea4335;
  color: #ffffff;
  padding: 16px 42px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(234, 67, 53, 0.25);
  display: inline-block;
  border: 2px solid #ea4335;
}

.cta-btn.gmail:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.35);
  background: #c5221f;
  border-color: #c5221f;
}

.consultation-image {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultation-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.contact-block h2 {
  font-size: 2.5em;
  color: var(--brand-dark);
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact-block h3 {
  font-size: 1.6em;
  color: var(--brand-orange);
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 700;
}

.contact-block p {
  font-size: 1.15em;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-block a {
  color: var(--brand-orange);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-block a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.contact-block address {
  font-style: normal;
  font-size: 1.15em;
  color: var(--text-dark);
  line-height: 1.8;
  background: var(--brand-light);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 28px;
  border: 1px solid rgba(74, 74, 74, 0.1);
}

.contact-block img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  margin-top: 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Footer */
footer {
  background: var(--brand-dark);
  color: var(--brand-white);
  text-align: center;
  padding: clamp(30px, 5vw, 40px) clamp(20px, 3vw, 30px);
  border-top: 3px solid var(--brand-orange);
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

footer p {
  font-size: clamp(0.95em, 1.5vw, 1.05em);
  opacity: 0.95;
  letter-spacing: 0.3px;
  margin: 0;
  padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   CLASSIC REVEAL ANIMATIONS (GLOBAL)
   Subtle, professional motion with easing
   ======================================== */

[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Types */
[data-reveal="fade"] {
  transform: none;
}
[data-reveal="up"] {
  transform: translateY(24px);
}
[data-reveal="down"] {
  transform: translateY(-24px);
}
[data-reveal="left"] {
  transform: translateX(24px);
}
[data-reveal="right"] {
  transform: translateX(-24px);
}
[data-reveal="scale"] {
  transform: scale(0.96);
}

/* Stagger utility via CSS var */
[data-reveal] {
  transition-delay: var(--reveal-delay, 0ms);
}

/* Hover polish (subtle) */
.reveal-hover:hover {
  transform: translateY(-3px);
  transition: transform 220ms ease;
}

/* Reduced motion: disable transforms */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .title-block h1 {
    font-size: 3em;
  }
  .page-header h1 {
    font-size: 2.5em;
  }
  .about-content {
    gap: 40px;
    padding: 40px;
  }
  .about-img {
    width: 320px;
    min-width: 320px;
  }

  .about-details {
    padding: 40px;
  }
  .about-header h2 {
    font-size: 2.3em;
  }
  .image-badge {
    top: 40px;
    right: 40px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }

  nav {
    flex-direction: column;
    gap: 20px;
    padding: 15px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    padding: 10px 18px;
    font-size: 0.95em;
  }

  /* Hero Section Responsive */
  .about-hero-section {
    height: 400px;
  }

  .about-hero-content h1 {
    font-size: 2.5em;
  }

  .about-hero-content p {
    font-size: 1.05em;
  }

  .hero-label {
    font-size: 0.85em;
    padding: 8px 18px;
  }

  .title-block h1 {
    font-size: 2.2em;
  }
  .title-block h2 {
    font-size: 1.3em;
  }
  .page-header h1 {
    font-size: 2em;
  }
  .page-header {
    padding: 40px 20px;
  }

  main {
    padding: 40px 20px;
  }

  .intro {
    padding: 40px 25px;
    margin-bottom: 50px;
  }
  .intro h3 {
    font-size: 1.8em;
  }

  .highlights {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .service-list {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .service-box {
    padding: 30px;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    padding: 30px;
    gap: 30px;
  }

  .about-img {
    width: 100%;
    min-width: auto;
    max-width: 400px;
  }

  /* About Page Responsive */
  .about-page-header h1 {
    font-size: 2.2em;
  }

  .profile-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .profile-right {
    padding-left: 0;
  }
  .profile-intro h2 {
    font-size: 2.5em;
  }

  .experience-badge {
    bottom: 20px;
    right: 20px;
    padding: 20px 25px;
  }

  .badge-number {
    font-size: 2.5em;
  }
  .badge-text {
    font-size: 0.8em;
  }

  .profile-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 2.5em;
  }

  .section-header h2 {
    font-size: 2em;
  }
  .section-header p {
    font-size: 1.05em;
  }

  .expertise-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .expertise-card {
    padding: 35px 25px;
  }
  .card-icon {
    width: 75px;
    height: 75px;
    font-size: 3em;
  }
  .expertise-card h3 {
    font-size: 1.5em;
  }

  .philosophy-text h2 {
    font-size: 2em;
  }
  .philosophy-pillars {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .pillar-card {
    padding: 30px 25px;
  }

  .why-choose-header h2 {
    font-size: 2em;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-item {
    padding: 30px 25px;
  }
  .why-number {
    font-size: 3em;
    top: 15px;
    right: 15px;
  }
  .why-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5em;
  }
  .why-choose-section::before,
  .why-choose-section::after {
    width: 250px;
    height: 250px;
  }

  .about-cta h2 {
    font-size: 2em;
  }
  .about-cta p {
    font-size: 1.1em;
  }

  .about-card {
    border-radius: 16px;
  }
  .about-image-container {
    padding: 25px;
  }
  .image-badge {
    top: 30px;
    right: 30px;
    font-size: 0.95em;
    padding: 10px 20px;
  }

  .about-details {
    padding: 30px 25px;
  }
  .about-header h2 {
    font-size: 2em;
  }
  .credential-badge {
    font-size: 0.95em;
    padding: 8px 16px;
  }
  .about-description p {
    font-size: 1.05em;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .expertise-item {
    padding: 25px;
  }

  .values-section {
    padding: 50px 0;
  }
  .values-section h3 {
    font-size: 2em;
    margin-bottom: 40px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .value-card {
    padding: 30px 25px;
  }
  .value-number {
    font-size: 2.8em;
  }

  /* Contact Page Responsive */
  .contact-intro h2 {
    font-size: 2em;
  }
  .contact-intro p {
    font-size: 1.05em;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .contact-info-card {
    padding: 30px 25px;
  }

  /* Office Location - Tablet 1024px */
  .locations-section {
    padding: 50px 0;
  }

  .locations-section h2 {
    font-size: 2em;
    margin-bottom: 35px;
  }

  .office-location-card {
    max-width: 720px;
    margin: 0 auto;
  }

  .classic-header {
    padding: 32px 28px;
  }

  .header-emblem {
    width: 80px;
    height: 80px;
  }

  .header-text h3 {
    font-size: 1.75em;
  }

  .office-content {
    padding: 32px 28px;
  }

  .contact-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .location-card {
    padding: 35px 25px;
  }

  .cta-contact {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 35px;
  }

  .cta-contact-content h2 {
    font-size: 2em;
  }
  .cta-contact-content p {
    font-size: 1.05em;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-btn.primary,
  .cta-btn.secondary {
    width: 100%;
    text-align: center;
  }

  .contact-block {
    padding: 40px 25px;
    margin: 40px 20px;
  }

  footer {
    margin-top: 50px;
  }
}

/* Mobile Responsive - Extra Small Devices */
@media (max-width: 480px) {
  .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .logo span {
    font-size: 0.9em;
  }

  /* Hero Section Mobile */
  .about-hero-section {
    height: 350px;
  }

  .about-hero-overlay {
    padding: 0 20px;
  }

  .about-hero-content h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .about-hero-content p {
    font-size: 0.95em;
  }

  .hero-label {
    font-size: 0.75em;
    padding: 6px 15px;
    margin-bottom: 15px;
  }

  .title-block h1 {
    font-size: 1.8em;
  }
  .title-block h2 {
    font-size: 1.1em;
  }
  .title-block p {
    font-size: 0.9em;
  }

  .intro h3 {
    font-size: 1.5em;
  }
  .intro p {
    font-size: 1em;
  }

  .service-box h3 {
    font-size: 1.4em;
  }
  .service-box p {
    font-size: 0.95em;
  }

  .highlight-card h4 {
    font-size: 1.3em;
  }

  .profile-content-side {
    padding: 30px 20px;
  }
  .name-section h2 {
    font-size: 2em;
  }
  .achievement-numbers {
    padding-top: 20px;
  }
  .number-box h3 {
    font-size: 2.2em;
  }

  .section-title-center h2 {
    font-size: 1.8em;
  }
  .services-grid-about {
    gap: 20px;
  }
  .service-item-about {
    padding: 30px 20px;
  }

  .why-us-left h2 {
    font-size: 2em;
  }
  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3em;
  }
  .feature-text h4 {
    font-size: 1.15em;
  }

  .cta-inner h2 {
    font-size: 2em;
  }
  .cta-inner p {
    font-size: 1.1em;
  }
}

/* ========================================
   SERVICE DETAIL PAGES - ENHANCED HERO SECTION
   ======================================== */

/* Service Detail Hero Section - Complete Redesign */
.service-detail-hero {
  position: relative;
  min-height: 500px;
  height: auto;
  background: linear-gradient(
    135deg,
    #2b2b2b 0%,
    var(--brand-dark) 30%,
    #5a5a5a 70%,
    var(--brand-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0px 40px;
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(232, 119, 34, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(90, 90, 90, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 30%
    );
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.service-detail-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 80px,
      rgba(255, 255, 255, 0.03) 81px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 1px,
      transparent 80px,
      rgba(255, 255, 255, 0.03) 81px
    );
  opacity: 0.4;
}

.service-detail-hero .about-hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.service-detail-hero .hero-label {
  display: inline-block;
  background: rgba(232, 119, 34, 0.25);
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 35px;
  border: 2px solid rgba(232, 119, 34, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(232, 119, 34, 0.3);
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-detail-hero .about-hero-content h1 {
  font-size: 5em;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(232, 119, 34, 0.2);
  letter-spacing: -1px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-detail-hero .about-hero-content p {
  font-size: 1.55em;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  animation: fadeInUp 1.2s ease;
}

/* Decorative Elements for Hero */
.service-detail-hero .about-hero-content::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(232, 119, 34, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.service-detail-hero .about-hero-content::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(90, 90, 90, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

/* Service Detail Intro Section */
.service-detail-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.service-intro-content h2 {
  font-size: 3em;
  color: var(--brand-dark);
  margin-bottom: 25px;
  font-weight: 700;
}

.lead-text {
  font-size: 1.25em;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
}

.service-offerings {
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
  padding: 100px 40px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 60px;
}

.offering-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid #f5f7fa;
}

.offering-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--brand-orange);
}

.offering-icon {
  font-size: 4em;
  margin-bottom: 25px;
  display: block;
}

.offering-card h3 {
  font-size: 1.8em;
  color: var(--brand-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.offering-card p {
  font-size: 1.1em;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
}

.offering-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offering-features li {
  padding: 12px 0 12px 30px;
  color: #2c3e50;
  font-size: 1.05em;
  position: relative;
  border-left: 3px solid var(--brand-orange);
  margin-bottom: 10px;
  background: rgba(232, 119, 34, 0.05);
  border-radius: 6px;
}

.offering-features li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  color: var(--brand-orange);
  font-weight: bold;
}

.service-specialties {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.specialty-item {
  background: linear-gradient(135deg, #f8f9fc 0%, #fff 100%);
  padding: 35px 30px;
  border-radius: 20px;
  border: 2px solid #e8ecf1;
  transition: all 0.3s ease;
}

.specialty-item:hover {
  border-color: var(--brand-orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.specialty-item h3 {
  font-size: 1.5em;
  color: var(--brand-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.specialty-item p {
  color: var(--text-muted);
  font-size: 1.05em;
  line-height: 1.7;
  margin: 0;
}

.service-process {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #5a5a5a 100%);
  padding: 100px 40px;
  color: #fff;
}

.service-process .section-title-center h2,
.service-process .section-title-center p {
  color: #fff;
}

.process-timeline {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.process-step {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d66a1e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(232, 119, 34, 0.5);
}

.step-content h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  margin-top: 15px;
  font-weight: 600;
}

.step-content p {
  font-size: 1.05em;
  line-height: 1.7;
  opacity: 0.95;
  margin: 0;
}

.service-why-choose {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.why-left h2 {
  font-size: 2.8em;
  color: var(--brand-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.why-left p {
  font-size: 1.15em;
  color: var(--text-muted);
  line-height: 1.8;
}

.why-right {
  display: grid;
  gap: 25px;
}

.why-feature-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d66a1e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.why-feature-item h4 {
  font-size: 1.4em;
  color: var(--brand-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.why-feature-item p {
  color: var(--text-muted);
  font-size: 1.05em;
  line-height: 1.6;
  margin: 0;
}

.service-cta {
  background: linear-gradient(
    135deg,
    rgba(74, 74, 74, 0.05) 0%,
    rgba(232, 119, 34, 0.05) 100%
  );
  padding: 100px 40px;
}

.service-cta .cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.service-cta .cta-inner h2 {
  font-size: 3em;
  color: var(--brand-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.service-cta .cta-inner p {
  font-size: 1.25em;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.service-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-cta .cta-btn {
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15em;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-cta .cta-btn.primary {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #d66a1e 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(232, 119, 34, 0.3);
}

.service-cta .cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(232, 119, 34, 0.4);
}

.service-cta .cta-btn.secondary {
  background: rgba(74, 74, 74, 0.1);
  color: var(--brand-dark);
  border: 2px solid var(--brand-dark);
}

.service-cta .cta-btn.secondary:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive Design for Service Detail Pages */
@media (max-width: 768px) {
  .service-detail-intro {
    padding: 50px 25px;
  }

  .service-intro-content h2 {
    font-size: 2.2em;
  }

  .lead-text {
    font-size: 1.1em;
  }

  .service-offerings {
    padding: 60px 25px;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .offering-card {
    padding: 35px 25px;
  }

  .service-specialties {
    padding: 60px 25px;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-process {
    padding: 60px 25px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-why-choose {
    padding: 60px 25px;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-left h2 {
    font-size: 2.2em;
  }

  .service-cta {
    padding: 60px 25px;
  }

  .service-cta .cta-inner h2 {
    font-size: 2.2em;
  }

  .service-cta .cta-inner p {
    font-size: 1.1em;
  }

  .service-cta .cta-buttons {
    flex-direction: column;
  }

  .service-cta .cta-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-intro-content h2 {
    font-size: 1.9em;
  }

  .lead-text {
    font-size: 1em;
  }

  .offering-icon {
    font-size: 3.5em;
  }

  .offering-card h3 {
    font-size: 1.5em;
  }

  .specialty-item h3 {
    font-size: 1.3em;
  }

  .step-content h3 {
    font-size: 1.3em;
  }

  .why-left h2 {
    font-size: 1.9em;
  }

  .why-feature-item {
    padding: 20px;
  }

  .why-feature-item h4 {
    font-size: 1.2em;
  }

  .service-cta .cta-inner h2 {
    font-size: 1.9em;
  }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

/* Base Mobile Styles (Already set in main CSS) */

/* Small Mobile Devices - 320px to 480px */
@media (max-width: 480px) {
  /* Global */
  body {
    font-size: 14px;
  }

  /* Header & Navigation */
  .header-container {
    padding: 0 15px;
  }

  nav {
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .logo-img {
    height: 55px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .nav-links a {
    padding: 8px 14px;
    font-size: 0.8em;
    border-radius: 4px;
  }

  /* Banner Hero */
  .banner-hero {
    height: 200px;
  }

  .banner-content {
    padding: 0 15px;
  }

  .banner-content h1 {
    font-size: 1.4em;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
  }

  .banner-content h2 {
    font-size: 0.85em;
    margin-bottom: 8px;
  }

  .banner-content p {
    font-size: 0.75em;
    margin-bottom: 10px;
  }

  .banner-features {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-item {
    font-size: 0.7em;
    padding: 5px 10px;
  }

  /* Services Slider */
  .services-slider {
    padding: 30px 12px;
  }

  .services-slider .slides {
    min-height: 420px;
  }

  .slide {
    padding: 10px;
  }

  .slide .highlight-card {
    flex-direction: column;
    height: auto;
    min-height: 400px;
  }

  .slide .highlight-card .card-image-wrapper {
    flex: 0 0 auto;
    height: 180px;
    border-radius: 12px 12px 0 0;
  }

  .slide .highlight-card .card-content {
    flex: 1;
    padding: 16px 18px;
  }

  .slide .card-content .card-header {
    gap: 10px;
    margin-bottom: 8px;
  }

  .slide .card-content .card-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2em;
  }

  .slide .card-content h3 {
    font-size: 1.05em;
    line-height: 1.3;
  }

  .slide .card-content p {
    font-size: 0.8em;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .slide .card-content .card-features {
    gap: 5px;
    flex-wrap: wrap;
  }

  .slide .card-content .feature-tag {
    font-size: 0.65em;
    padding: 4px 10px;
  }

  .slide .card-content .service-link {
    font-size: 0.75em;
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }

  /* Slider Controls */
  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.1em;
  }

  .slider-arrow.prev {
    left: 8px;
  }

  .slider-arrow.next {
    right: 8px;
  }

  .slider-dots {
    gap: 6px;
    margin-top: 68px;
  }

  .slider-dots .dot {
    width: 8px;
    height: 4px;
  }

  .slider-dots .dot.active {
    width: 24px;
  }

  /* Highlights Section */
  .highlights-section {
    padding: 40px 15px;
  }

  .highlights-header {
    margin-bottom: 35px;
  }

  .highlights-header h2 {
    font-size: 1.6em;
    margin-bottom: 12px;
  }

  .highlights-header p {
    font-size: 0.95em;
  }

  .section-label {
    font-size: 0.7em;
    padding: 6px 14px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card-image-wrapper {
    height: 200px;
  }

  .card-content {
    padding: 22px 18px;
  }

  .card-content h3 {
    font-size: 1.25em;
  }

  .card-content p {
    font-size: 0.9em;
  }

  .card-number {
    width: 40px;
    height: 40px;
    font-size: 1.1em;
    top: 12px;
    right: 12px;
  }

  /* Footer */
  footer {
    padding: 18px 15px;
    font-size: 0.8em;
  }
}

/* Mobile Devices - 481px to 767px */
@media (min-width: 481px) and (max-width: 767px) {
  .header-container {
    padding: 0 20px;
  }

  .logo-img {
    height: 70px;
  }

  nav {
    flex-direction: row;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    padding: 9px 16px;
    font-size: 0.85em;
  }

  .banner-hero {
    height: 240px;
  }

  .banner-content h1 {
    font-size: 1.8em;
  }

  .banner-content h2 {
    font-size: 1em;
  }

  .services-slider {
    padding: 40px 20px;
  }

  .services-slider .slides {
    min-height: 440px;
  }

  .slide .highlight-card {
    flex-direction: column;
    height: auto;
  }

  .slide .highlight-card .card-image-wrapper {
    flex: 0 0 auto;
    height: 220px;
    border-radius: 16px 16px 0 0;
  }

  .slide .highlight-card .card-content {
    flex: 1;
    padding: 20px 24px;
  }

  .slide .card-content .card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.3em;
  }

  .slide .card-content h3 {
    font-size: 1.15em;
  }

  .slide .card-content p {
    font-size: 0.85em;
  }

  .slide .card-content .service-link {
    margin-left: 0;
    margin-top: 6px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Tablets - 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }

  .logo-img {
    height: 85px;
  }

  .nav-links a {
    padding: 10px 18px;
    font-size: 0.9em;
  }

  .banner-hero {
    height: 280px;
  }

  .banner-content h1 {
    font-size: 2.2em;
  }

  .banner-content h2 {
    font-size: 1.2em;
  }

  .services-slider {
    padding: 50px 35px;
  }

  .services-slider .slides {
    min-height: 420px;
  }

  .slide .highlight-card {
    flex-direction: row;
    height: 420px;
  }

  .slide .highlight-card .card-image-wrapper {
    flex: 0 0 42%;
    height: auto;
    border-radius: 0;
  }

  .slide .highlight-card .card-content {
    flex: 0 0 58%;
    padding: 24px 28px;
  }

  .slide .card-content .service-link {
    margin-left: auto;
    margin-top: 0;
  }

  .highlights-section {
    padding: 70px 35px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .slider-arrow {
    width: 48px;
    height: 48px;
  }

  .slider-arrow.prev {
    left: 15px;
  }

  .slider-arrow.next {
    right: 15px;
  }
}

/* Small Laptops - 1025px to 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
  .header-container {
    padding: 0 40px;
  }

  .services-slider {
    padding: 60px 50px;
  }

  .highlights-section {
    padding: 80px 50px;
  }

  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Large Screens - 1281px and up */
@media (min-width: 1281px) {
  .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
  }

  .services-slider {
    padding: 60px 80px;
  }

  .highlights-section {
    padding: 90px 60px;
  }

  .highlights-grid {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* Landscape Mobile - Special Case */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .banner-hero {
    height: 180px;
  }

  .services-slider {
    padding: 25px 20px;
  }

  .services-slider .slides {
    min-height: 320px;
  }

  .slide .highlight-card {
    height: 300px;
  }

  .slide .highlight-card .card-image-wrapper {
    flex: 0 0 45%;
  }

  .slide .highlight-card .card-content {
    flex: 0 0 55%;
    padding: 16px 20px;
  }

  nav {
    flex-direction: row;
    gap: 8px;
  }
}

/* ========================================
   ENHANCED RESPONSIVE IMPROVEMENTS
   Premium Mobile-First Design
   ======================================== */

/* Ultra Small Devices - 320px */
@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .header-container {
    padding: 0 10px;
  }

  .logo-img {
    height: 50px;
  }

  .nav-links a {
    padding: 6px 10px;
    font-size: 0.75em;
  }

  .banner-content h1 {
    font-size: 1.2em;
  }

  .banner-content h2 {
    font-size: 0.75em;
  }

  .intro {
    padding: 30px 15px;
  }

  .intro h3 {
    font-size: 1.3em;
  }

  .card-content {
    padding: 18px 14px;
  }
}

/* Enhanced Tablet Responsiveness */
@media (min-width: 768px) and (max-width: 1024px) {
  .intro {
    padding: 45px 35px;
  }

  .intro h3 {
    font-size: 2em;
  }

  .intro p {
    font-size: 1.05em;
  }

  .page-header {
    padding: 60px 30px;
  }

  .page-header h1 {
    font-size: 2.5em;
  }

  .service-box img,
  .card-image-wrapper {
    height: 200px;
  }

  .about-hero-content h1 {
    font-size: 3.2em;
  }

  .profile-card-main {
    grid-template-columns: 1fr;
  }

  .profile-image-side {
    border-radius: 16px 16px 0 0;
    padding: 40px;
  }

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

  /* Office Location Card - Tablet */
  .office-location-card {
    margin: 0 15px;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  }

  .classic-header {
    padding: 30px 25px;
    gap: 15px;
  }

  .header-emblem {
    width: 75px;
    height: 75px;
  }

  .header-text h3 {
    font-size: 1.6em;
    line-height: 1.3;
  }

  .office-content {
    padding: 30px 25px;
  }

  .address-section h4 {
    font-size: 1.05em;
    margin-bottom: 12px;
  }

  .address-section address {
    font-size: 1em;
    line-height: 1.8;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .detail-item {
    padding: 18px;
    border-radius: 10px;
  }

  .detail-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
}

/* Enhanced Mobile Navigation */
@media (max-width: 767px) {
  nav {
    padding: 12px 0;
  }

  .logo-img {
    height: 60px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    padding: 8px 12px;
    font-size: 0.85em;
    white-space: nowrap;
  }

  /* Ensure navigation wraps properly */
  .nav-links {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }
}

/* Service List Responsive Improvements */
@media (max-width: 480px) {
  .service-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-box {
    padding: 25px 18px;
  }

  .service-box h3 {
    font-size: 1.3em;
  }

  .service-box p {
    font-size: 0.95em;
  }

  .service-box img {
    height: 180px;
  }
}

/* About Page Mobile Enhancements */
@media (max-width: 767px) {
  .profile-card-main {
    border-radius: 16px;
  }

  .profile-image-side {
    border-radius: 16px 16px 0 0;
  }

  .bio-header {
    padding-bottom: 20px;
  }

  .bio-avatar {
    width: 120px;
    height: 120px;
  }

  .bio-title h2 {
    font-size: 1.6em;
  }

  .designation {
    font-size: 1.05em;
  }

  .bio-body {
    grid-template-columns: 1fr;
  }

  .qualification-badges {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .badge {
    width: 100%;
    justify-content: center;
  }

  .achievement-numbers {
    grid-template-columns: 1fr;
  }

  .services-overview-section {
    padding: 50px 20px;
  }

  .services-grid-about {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-item-about {
    padding: 30px 20px;
  }
}

/* Contact Page Mobile Improvements */
@media (max-width: 767px) {
  .contact-hero {
    margin-bottom: 40px;
  }

  .contact-intro {
    margin-bottom: 40px;
  }

  .contact-intro h2 {
    font-size: 1.8em;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Office Location Section - Mobile Redesign */
  .locations-section {
    padding: 35px 0;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
  }

  .office-location-container {
    padding: 0 12px;
  }

  .office-location-card {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    background: #ffffff;
  }

  /* Header Section - Mobile */
  .classic-header {
    flex-direction: column;
    padding: 28px 20px;
    text-align: center;
    background: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%);
    gap: 12px;
  }

  .header-emblem {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(232, 119, 34, 0.3);
  }

  .emblem-img {
    width: 50px;
    height: 50px;
  }

  .header-text {
    text-align: center;
  }

  .header-text h3 {
    font-size: 1.4em;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  /* Office Content - Mobile */
  .office-content {
    padding: 25px 18px;
  }

  /* Address Section - Mobile */
  .address-section {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #fafafa 100%);
    border-radius: 12px;
    border-left: 5px solid var(--brand-orange);
  }

  .address-section h4 {
    font-size: 0.95em;
    margin-bottom: 12px;
    color: var(--brand-orange);
    letter-spacing: 1.2px;
  }

  .address-section address {
    padding-left: 0;
    font-size: 0.98em;
    line-height: 1.8;
    color: #4a4a4a;
  }

  /* Contact Details Grid - Mobile */
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 16px;
    gap: 14px;
    border-radius: 10px;
    background: #fafafa;
    border-left: 4px solid var(--brand-orange);
    min-height: auto;
  }

  .detail-item:hover {
    transform: translateX(4px);
  }

  .detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    margin: 0;
    font-size: 1.3em;
  }

  .detail-content {
    text-align: left;
  }

  .detail-label {
    font-size: 0.72em;
    margin-bottom: 4px;
    letter-spacing: 0.8px;
  }

  .detail-content a,
  .detail-text {
    font-size: 0.96em;
    line-height: 1.5;
  }

  .cta-contact {
    grid-template-columns: 1fr;
    padding: 50px 20px;
    margin: 0 15px 40px;
    border-radius: 16px;
  }

  .cta-contact-content h2 {
    font-size: 1.8em;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn.primary,
  .cta-btn.secondary,
  .cta-btn.whatsapp,
  .cta-btn.gmail {
    width: 100%;
    padding: 14px 30px;
    text-align: center;
  }

  .consultation-image {
    display: none;
  }
}

/* Service Detail Pages Mobile */
@media (max-width: 767px) {
  .service-detail-hero {
    min-height: 400px;
    padding: 40px 20px;
  }

  .service-detail-hero .about-hero-content h1 {
    font-size: 2.5em;
  }

  .service-detail-hero .about-hero-content p {
    font-size: 1.1em;
  }

  .service-detail-hero .hero-label {
    font-size: 0.85em;
    padding: 10px 20px;
  }

  .service-detail-intro {
    padding: 50px 20px;
  }

  .service-intro-content h2 {
    font-size: 1.8em;
  }

  .lead-text {
    font-size: 1.05em;
  }

  .service-offerings {
    padding: 60px 20px;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .offering-card {
    padding: 30px 20px;
  }

  .service-specialties {
    padding: 60px 20px;
  }

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

  .service-process {
    padding: 60px 20px;
  }

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

  .service-why-choose {
    padding: 60px 20px;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
  }

  .service-cta {
    padding: 60px 20px;
  }

  .service-cta .cta-buttons {
    flex-direction: column;
  }

  .service-cta .cta-btn {
    width: 100%;
  }
}

/* Image Optimization for All Devices */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.card-image-wrapper img,
.service-box img,
.about-img {
  width: 100%;
  object-fit: cover;
}

/* Flexible Grid Improvements */
.highlights-grid,
.services-grid-about,
.expertise-cards,
.why-choose-grid,
.values-grid,
.contact-grid {
  width: 100%;
  max-width: 100%;
}

/* Touch-Friendly Buttons and Links */
@media (hover: none) and (pointer: coarse) {
  .nav-links a,
  .cta-btn,
  .service-link,
  .btn {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .slider-arrow {
    min-width: 48px;
    min-height: 48px;
  }
}

/* Print Styles */
@media print {
  header,
  footer,
  .slider-arrow,
  .slider-dots,
  .cta-buttons {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .banner-hero {
    height: auto;
    page-break-after: avoid;
  }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-img,
  .banner-img,
  .card-image-wrapper img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Dark Mode Support (Optional Enhancement) */
@media (prefers-color-scheme: dark) {
  /* Keep light theme but improve contrast for accessibility */
  body {
    background: var(--brand-light);
  }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Very Large Screens - 4K and Above */
@media (min-width: 1920px) {
  .header-container,
  main,
  .profile-wrapper,
  .services-overview-section,
  .why-us-content,
  .expertise-cards,
  .philosophy-content,
  .why-choose-grid {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-content h1 {
    font-size: 3.5em;
  }

  .intro h3 {
    font-size: 3em;
  }

  .highlights-header h2,
  .section-title-center h2 {
    font-size: 3.5em;
  }
}

/* Intermediate Breakpoint for Better Tablet Experience */
@media (min-width: 600px) and (max-width: 900px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

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

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

  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    padding: 8px 14px;
    font-size: 0.88em;
  }
}

/* Container Width Optimization */
@media (min-width: 1440px) {
  .header-container {
    max-width: 1400px;
  }

  main {
    max-width: 1300px;
  }

  .services-slider {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* Improve Spacing on Mid-Size Tablets */
@media (min-width: 900px) and (max-width: 1200px) {
  .highlights-section {
    padding: 80px 40px;
  }

  .services-slider {
    padding: 50px 60px;
  }

  .intro {
    padding: 45px 35px;
  }

  .page-header {
    padding: 60px 35px;
  }

  main {
    padding: 0 35px;
  }
}

/* Optimize Card Layouts for Different Screens */
@media (min-width: 1200px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .expertise-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Ensure Content Doesn't Touch Screen Edges on Mobile */
@media (max-width: 767px) {
  section {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  .header-container {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
}

/* Safari iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
  .banner-hero {
    min-height: -webkit-fill-available;
  }

  input,
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on focus */
  }
}

/* Landscape Orientation Improvements */
@media (orientation: landscape) and (max-height: 600px) {
  .banner-hero {
    height: 250px;
  }

  .service-detail-hero {
    min-height: 350px;
  }

  .about-hero-section {
    height: 350px;
  }
}

/* Small Desktop Optimization */
@media (min-width: 1024px) and (max-width: 1366px) {
  .slide .highlight-card {
    max-width: 750px;
  }

  .highlights-grid {
    gap: 28px;
  }

  .intro h3 {
    font-size: 2.2em;
  }
}

/* Enhanced Focus States for Keyboard Navigation */
@media (hover: hover) and (pointer: fine) {
  a:focus-visible,
  button:focus-visible {
    outline: 3px solid var(--brand-orange);
    outline-offset: 2px;
  }
}

/* Flexible Typography Scaling */
@media (max-width: 374px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  html {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  html {
    font-size: 15.5px;
  }
}

@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}

/* ========================================
   CRITICAL OVERFLOW FIXES
   Prevents horizontal scroll on all devices
   ======================================== */

/* Prevent overflow on all container elements */
section,
.section,
.container,
.wrapper,
div[class*="section"],
div[class*="container"] {
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure all rows and grids stay within bounds */
.row,
[class*="grid"],
[class*="flex"] {
  max-width: 100%;
  width: 100%;
}

/* Prevent images from causing overflow */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Responsive tables */
table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

/* Text overflow handling */
h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Ensure service detail sections don't overflow */
.service-detail-hero,
.service-offerings,
.service-specialties,
.service-process,
.service-why-choose,
.service-cta {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

/* About page sections */
.about-hero-section,
.profile-section,
.services-overview-section,
.why-us-section,
.final-cta-section,
.why-choose-section,
.philosophy-section,
.expertise-section {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

/* Contact page sections */
.contact-hero,
.locations-section,
.cta-contact {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

/* Fix for absolute positioned elements */
.banner-content,
.title-block,
.about-hero-overlay {
  max-width: 95vw;
}
