/* =============================================
   PREMIUM ENHANCEMENTS - BNC Contract
   ============================================= */

:root {
  --primary: #fd4a36;
  --primary-dark: #c93520;
  --primary-light: rgba(253,74,54,0.12);
  --gold: #d4a843;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --glass: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.15);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- ANIMATED COUNTER STATS STRIP ---- */
.premium-stats-strip {
  background: #1a1a2e;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.premium-stats-strip::before { display: none; }
.stat-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-card:last-child { border-right: none; }
.stat-number {
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  display: block;
}
.stat-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
.stat-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border: 1px solid rgba(253,74,54,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--primary);
  transition: all 0.4s var(--transition);
}
.stat-card:hover .stat-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(253,74,54,0.25);
}

/* ---- PREMIUM FEATURE CARDS (Home icons) ---- */
.premium-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  height: 100%;
}
.premium-feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition);
}
.premium-feature-card::after { display: none; }
.premium-feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.premium-feature-card:hover::before { transform: scaleX(1); }
.pf-number {
  position: absolute; top: 24px; right: 24px;
  font-size: 64px; font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  font-family: 'Barlow', sans-serif;
  transition: color 0.3s;
}
.premium-feature-card:hover .pf-number { color: rgba(253,74,54,0.08); }
.pf-icon {
  width: 70px; height: 70px;
  background: var(--primary-light);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--transition);
  font-size: 32px;
  color: var(--primary);
}
.premium-feature-card:hover .pf-icon {
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(253,74,54,0.2);
}
.pf-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: #1a1a2e; }
.pf-text { font-size: 15px; color: #6b7280; line-height: 1.7; margin-bottom: 24px; }
.pf-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--primary);
  text-decoration: none;
  transition: gap 0.3s;
}
.pf-link:hover { gap: 14px; color: var(--primary-dark); }
.pf-link::after {
  content: '→';
  transition: transform 0.3s;
}
.pf-link:hover::after { transform: translateX(4px); }

/* ---- PREMIUM ACCORDION ---- */
.premium-accordion { list-style: none; padding: 0; margin: 0; }
.premium-accordion-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.premium-accordion-item.open {
  box-shadow: 0 10px 40px rgba(253,74,54,0.12);
  border-color: rgba(253,74,54,0.25);
}
.pa-trigger {
  width: 100%; background: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  text-align: left;
  transition: background 0.3s;
}
.premium-accordion-item.open .pa-trigger { background: #fff; }
.pa-trigger-left { display: flex; align-items: center; gap: 20px; }
.pa-num {
  font-size: 12px; font-weight: 800; color: var(--primary);
  text-transform: uppercase; letter-spacing: 2px;
  min-width: 30px;
}
.pa-name { font-size: 20px; font-weight: 700; color: #1a1a2e; }
.pa-icon-wrap {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 1.5px solid rgba(253,74,54,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s var(--transition);
}
.premium-accordion-item.open .pa-icon-wrap {
  background: var(--primary);
  transform: rotate(45deg);
}
.pa-icon-wrap svg { width: 14px; height: 14px; }
.pa-icon-wrap svg line { stroke: var(--primary); stroke-width: 2.5; transition: stroke 0.3s; }
.premium-accordion-item.open .pa-icon-wrap svg line { stroke: #fff; }
.pa-body {
  background: #fff;
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--transition), padding 0.3s;
  padding: 0 28px;
}
.premium-accordion-item.open .pa-body { max-height: 300px; padding: 0 28px 24px; }
.pa-body p { color: #6b7280; font-size: 16px; line-height: 1.8; margin: 0; }
.pa-body-inner { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 20px; }

/* ---- ABOUT PAGE: TIMELINE ---- */
.premium-timeline {
  position: relative;
  padding-left: 0;
}
.premium-timeline::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0; width: 2px;
  background: rgba(253,74,54,0.2);
}
.timeline-item {
  display: flex; gap: 30px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s, transform 0.6s;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-dot {
  width: 50px; height: 50px; min-width: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: #fff;
  box-shadow: 0 4px 12px rgba(253,74,54,0.2);
  position: relative; z-index: 1;
}
.timeline-content {
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  border: 1px solid rgba(0,0,0,0.07);
  flex: 1;
  transition: box-shadow 0.3s, transform 0.3s;
}
.timeline-content:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.timeline-year {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--primary); margin-bottom: 6px;
}
.timeline-title { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.timeline-text { font-size: 15px; color: #6b7280; line-height: 1.7; margin: 0; }

/* ---- WHY CHOOSE US FEATURE PILLS ---- */
.premium-feature-list { list-style: none; padding: 0; margin: 0; }
.premium-feature-list li {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 22px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s var(--transition);
  cursor: default;
}
.premium-feature-list li:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(253,74,54,0.3);
}
.pfl-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--primary);
  transition: all 0.3s;
}
.premium-feature-list li:hover .pfl-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.pfl-text {
  font-size: 16px; font-weight: 600; color: #1a1a2e;
  transition: color 0.3s;
}
.premium-feature-list li:hover .pfl-text { color: #fff; }

/* ---- SERVICES PAGE: PREMIUM SERVICE CARDS ---- */
.premium-service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all 0.45s var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.premium-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.14);
}
.psc-header {
  padding: 36px 32px 28px;
  position: relative;
  background: #f8f9fa;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.psc-header::after { display: none; }
.psc-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 80px; font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  transition: color 0.3s;
}
.premium-service-card:hover .psc-num { color: rgba(253,74,54,0.07); }
.psc-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: #fff;
  margin-bottom: 20px;
  transition: all 0.4s var(--transition);
  box-shadow: 0 4px 14px rgba(253,74,54,0.2);
}
.premium-service-card:hover .psc-icon-wrap {
  border-radius: 20px;
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(253,74,54,0.25);
}
.psc-title { font-size: 22px; font-weight: 800; color: #1a1a2e; margin: 0; }
.psc-body { padding: 0 32px 32px; flex: 1; display: flex; flex-direction: column; }
.psc-text { font-size: 15px; color: #6b7280; line-height: 1.75; flex: 1; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.06); }
.psc-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px;
  padding: 13px 24px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.35s var(--transition);
  border: 1.5px solid rgba(253,74,54,0.2);
  align-self: flex-start;
}
.psc-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(253,74,54,0.35);
}

/* ---- SCROLL REVEAL BASE ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ---- SECTION LABEL ---- */
.premium-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 3px; color: var(--primary); margin-bottom: 16px;
}
.premium-label::before {
  content: '';
  display: block; width: 32px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* ---- ABOUT HERO BADGES ---- */
.about-badge-strip {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 30px;
}
.about-badge {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.about-badge:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(253,74,54,0.15); border-color: rgba(253,74,54,0.2); }
.ab-dot {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff;
}
.ab-text { font-size: 14px; font-weight: 700; color: #1a1a2e; }

/* ---- PREMIUM SECTION HEADING ---- */
.section-eyebrow {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 3px; color: var(--primary);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.section-eyebrow span { display: block; width: 32px; height: 2px; background: var(--primary); }

/* ---- GLOWING CTA BUTTON ---- */
.btn-premium {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 6px;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; text-decoration: none;
  transition: all 0.3s var(--transition);
  border: 2px solid var(--primary); cursor: pointer;
  box-shadow: 0 4px 14px rgba(253,74,54,0.2);
}
.btn-premium::before { display: none; }
.btn-premium:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(253,74,54,0.25); }
.btn-premium span { position: relative; z-index: 1; }

/* =============================================
   INNER SERVICE DETAIL PAGE STYLES
   ============================================= */

/* ---- SERVICE INTRO BLOCK ---- */
.service-intro-block {
  padding: 80px 0 70px;
  background: #fff;
}
.service-intro-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  position: relative;
}
.service-intro-image img { width: 100%; display: block; height: 480px; object-fit: cover; }
.service-intro-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.sib-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.sib-text { font-size: 13px; font-weight: 700; line-height: 1.4; }
.service-intro-content {
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.service-intro-content h2 {
  font-size: 40px; font-weight: 900;
  color: #1a1a2e; line-height: 1.2; margin-bottom: 18px;
}
.service-intro-content p {
  font-size: 16px; color: #6b7280; line-height: 1.85; margin-bottom: 16px;
}
.service-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 22px 0 28px;
}
.sh-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 3px solid var(--primary);
  font-size: 14px; font-weight: 600; color: #1a1a2e;
  transition: all 0.3s;
  white-space: nowrap;
}
.sh-item:hover {
  background: var(--primary);
  color: #fff;
  border-left-color: transparent;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(253,74,54,0.3);
}
.sh-item i { font-size: 14px; color: var(--primary); transition: color 0.3s; flex-shrink: 0; }
.sh-item:hover i { color: #fff; }
@media (max-width: 991px) {
  .service-intro-content { padding-left: 0; margin-top: 36px; }
  .service-intro-content h2 { font-size: 32px; }
}

/* ---- PROJECT SECTION HEADER ---- */
.project-section-header {
  padding: 48px 0 20px;
}
.psh-inner {
  background: #1a1a2e;
  border-radius: 12px;
  padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  border-left: 4px solid var(--primary);
}
.psh-inner::before { display: none; }
.psh-left { position: relative; z-index: 1; }
.psh-eyebrow {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 3px; color: var(--primary);
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.psh-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--primary); border-radius: 2px;
}
.psh-title {
  font-size: 22px; font-weight: 800; color: #fff;
  margin: 0; line-height: 1.35;
}
.psh-subtitle { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 5px; }
.psh-right { position: relative; z-index: 1; flex-shrink: 0; }
.psh-count {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 22px;
  text-align: center;
}
.psh-count-num {
  font-size: 30px; font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.psh-count-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }

/* ---- PREMIUM PHOTO GALLERY ---- */
.premium-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
}
.premium-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
  background: #f0f0f0;
}
.premium-gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  z-index: 2;
}
.premium-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
  display: block;
}
.premium-gallery-item:hover img { transform: scale(1.06); }
.premium-gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.premium-gallery-item:hover .premium-gallery-overlay { opacity: 1; }
.pgo-zoom {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(253,74,54,0.5);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: transform 0.35s var(--transition), opacity 0.35s;
}
.premium-gallery-item:hover .pgo-zoom {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
@media (max-width: 768px) {
  .premium-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .premium-gallery-grid { grid-template-columns: 1fr; }
}

/* ---- PROJECT BLOCK PAIRING (header + gallery) ---- */
.project-block {
  background: #fff;
}
.project-block:nth-child(even) {
  background: #f8f9fa;
}
.project-block .project-section-header {
  padding-top: 50px;
  padding-bottom: 20px;
}
.project-block .gallery-section {
  padding: 0 0 60px;
}

/* ---- DETAIL PAGE: SECTION DIVIDER ---- */
.section-divider {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin: 0;
}

/* ---- SERVICE CTA STRIP ---- */
.service-cta-strip {
  background: var(--primary);
  padding: 70px 0;
}
.service-cta-strip::before { display: none; }
.service-cta-strip .auto-container { position: relative; z-index: 1; }
.scs-content { text-align: center; }
.scs-content h3 {
  font-size: 38px; font-weight: 900; color: #fff;
  margin-bottom: 14px; line-height: 1.2;
}
.scs-content p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: #fff;
  color: var(--primary) !important;
  border-radius: 50px;
  font-size: 14px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: all 0.35s var(--transition);
}
.btn-cta-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
  color: var(--primary-dark) !important;
}

/* ---- RELATED SERVICES MINI CARDS ---- */
.related-services-section { padding: 80px 0; background: #f8f9fa; }
.rs-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex; align-items: center; gap: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
  transition: all 0.35s var(--transition);
  margin-bottom: 16px;
}
.rs-card:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 35px rgba(253,74,54,0.15);
  border-color: rgba(253,74,54,0.25);
}
.rs-icon {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary);
  transition: all 0.35s;
}
.rs-card:hover .rs-icon {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
}
.rs-info h5 {
  font-size: 16px; font-weight: 700; color: #1a1a2e;
  margin: 0 0 4px; transition: color 0.3s;
}
.rs-card:hover .rs-info h5 { color: var(--primary); }
.rs-info span { font-size: 13px; color: #9ca3af; }
.rs-arrow {
  margin-left: auto;
  font-size: 18px; color: #d1d5db;
  transition: all 0.3s;
}
.rs-card:hover .rs-arrow { color: var(--primary); transform: translateX(4px); }

/* =============================================
   PREMIUM RESPONSIVE TYPOGRAPHY & SECTIONS
   ============================================= */
.premium-section { padding: 80px 0; }
.premium-section-about { padding: 100px 0 80px; }
.premium-bg-light { background: #f8f9fa; }

.premium-heading {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 20px;
}
.premium-heading-sm {
    font-size: 38px;
}
.premium-text {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 28px;
}
.premium-text-sm {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
    padding: 20px 20px 40px 0;
}
.about-image-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}
.about-experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #fd4a36, #ff8c42);
    color: #fff;
    border-radius: 16px;
    padding: 22px 28px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(253, 74, 54, 0.4);
    z-index: 2;
}
.aeb-num {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
}
.aeb-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-top: 5px;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 1199px) {
    .premium-heading { font-size: 36px; }
    .premium-heading-sm { font-size: 32px; }
}

@media (max-width: 991px) {
    .premium-section, .premium-section-about { padding: 60px 0; }
    .premium-heading { font-size: 32px; }
    .premium-heading-sm { font-size: 28px; }
    .about-image-wrapper { padding: 0 0 30px 0; margin-bottom: 30px; }
    .about-experience-badge { padding: 15px 20px; }
    .aeb-num { font-size: 40px; }
    .aeb-text { font-size: 11px; }
    .stat-number { font-size: 48px; }
    
    .banner-1-section .fs_65 { font-size: 48px !important; }
}

@media (max-width: 767px) {
    .premium-heading { font-size: 28px; }
    .premium-heading-sm { font-size: 24px; }
    .premium-text { font-size: 15px; }
    .premium-text-sm { font-size: 14px; }
    .about-badge-strip { gap: 10px; }
    .about-badge { padding: 8px 15px 8px 8px; width: 100%; }
    
    .premium-accordion-item .pa-trigger { padding: 16px 20px; }
    .premium-accordion-item .pa-name { font-size: 18px; }
    .premium-accordion-item .pa-body { padding: 0 20px; }
    .premium-accordion-item.open .pa-body { padding: 0 20px 20px; }
    
    .stat-card { padding: 20px 10px; border-right: none; border-bottom: none; }
    .premium-stats-strip .row > div:nth-child(1) .stat-card,
    .premium-stats-strip .row > div:nth-child(2) .stat-card {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .premium-stats-strip .row > div:nth-child(odd) .stat-card {
        border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat-number { font-size: 40px; }
    
    .banner-1-section .fs_65 { font-size: 38px !important; }
}

@media (max-width: 575px) {
    .premium-section, .premium-section-about { padding: 50px 0; }
    .about-experience-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: max-content;
    }
    .stat-number { font-size: 32px; }
    .banner-1-section .fs_65 { font-size: 32px !important; }
    .banner-1-section .fs_20 { font-size: 16px !important; }
}

/* ---- CALL BUTTON FIX ---- */
.call-button {
    position: fixed !important;
    bottom: 25px !important;
    left: 25px !important;
    right: auto !important;
    z-index: 9999 !important;
    transition: transform 0.3s var(--transition);
}
.call-button:hover {
    transform: scale(1.1);
}

/* ---- PREMIUM FOOTER ENHANCEMENTS ---- */
.premium-footer {
    position: relative;
    border-top: 3px solid var(--primary);
}
.premium-footer-top {
    background: #151525 !important;
    padding: 30px 0;
}
.premium-footer-middle {
    background: #1a1a2e !important;
}
.premium-widget-title {
    position: relative;
    padding-bottom: 12px;
}
.premium-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}
.social-links-premium a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s var(--transition);
}
.social-links-premium a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.footer-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.contact-info-box2:hover .footer-icon-wrap {
    background: var(--primary);
}
