/* ==========================================================================
   Beton Aslan - Modern, Responsive & SEO Optimized Stylesheet (Multi-Page)
   ========================================================================== */

:root {
  --primary: #f59e0b;
  --primary-hover: #d97706;
  --primary-dark: #b45309;
  --primary-light: #fef3c7;
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  --accent: #2563eb;
  --accent-green: #22c55e;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebd5a;
  
  --dark: #090d16;
  --dark-card: #151d2e;
  --dark-border: #243048;
  
  --text-main: #1f2937;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --bg-main: #f8fafc;
  --bg-white: #ffffff;
  --bg-dark: #0b1120;
  --bg-darker: #070b14;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.25s ease-in-out;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 74px; /* Space for mobile action bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Utilities & Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-primary {
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary-dark);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-pulse {
  position: relative;
}

.badge-pulse::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Top Notification Bar */
.top-bar {
  background: var(--dark);
  color: var(--text-light);
  font-size: 0.84rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-border);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info i {
  color: var(--primary);
}

.top-bar-phones {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-phones a {
  color: var(--text-white);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
}

.top-bar-phones a:hover {
  color: var(--primary);
}

/* ==========================================================================
   Header & Dropdown Navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--secondary);
  line-height: 1.1;
  white-space: nowrap;
}

.logo-title span {
  color: var(--primary-hover);
}

.logo-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav Links & Dropdowns */
.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
}

@media (min-width: 1080px) {
  .nav-links {
    display: flex;
  }
}

.nav-item {
  position: relative;
  padding: 26px 0;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--secondary);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  min-width: 280px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 6px;
  padding: 6px;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
}

.nav-dropdown-item i {
  color: var(--primary-dark);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.nav-dropdown-item:hover {
  background: #f8fafc;
  color: var(--primary-dark);
  transform: translateX(3px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone-box {
  display: none;
  flex-direction: column;
  text-align: right;
  line-height: 1.2;
}

@media (min-width: 820px) {
  .header-phone-box {
    display: flex;
  }
}

.header-phone-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.header-phone-number {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--secondary);
  white-space: nowrap;
}

.header-phone-number:hover {
  color: var(--primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
  color: #fff;
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  color: #fff;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

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

/* Mobile Toggle & Drawer */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #f1f5f9;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  color: var(--secondary);
  cursor: pointer;
}

@media (min-width: 1080px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 10000;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--dark-border);
}

.drawer-close {
  background: #1e293b;
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}

.drawer-nav a {
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
}

.drawer-nav a:hover {
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary);
}

.drawer-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   Breadcrumb & Inner Page Hero
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 60%, #152238 100%);
  color: #fff;
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: #94a3b8;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs span.current {
  color: var(--primary);
  font-weight: 600;
}

.page-hero h1 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 2.8rem;
  }
}

.page-hero-desc {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 800px;
  line-height: 1.7;
}

/* ==========================================================================
   Service / Detail Page Layout (Content + Sticky Sidebar)
   ========================================================================== */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 0 80px;
}

@media (min-width: 992px) {
  .detail-layout {
    grid-template-columns: 1fr 360px;
  }
}

.detail-content {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 40px 35px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.detail-content h2 {
  font-size: 1.75rem;
  margin: 35px 0 16px;
  color: var(--secondary);
  position: relative;
  padding-bottom: 8px;
}

.detail-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.detail-content h3 {
  font-size: 1.35rem;
  margin: 25px 0 12px;
  color: var(--secondary);
}

.detail-content p {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.detail-content ul, .detail-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.detail-content li {
  color: #475569;
  font-size: 0.98rem;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.6;
}

.detail-content ul li::before {
  content: '✓';
  position: absolute;
  left: -20px;
  color: var(--primary-dark);
  font-weight: bold;
}

.step-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 25px 0;
}

@media (min-width: 640px) {
  .step-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 20px;
  border-radius: var(--radius-lg);
  position: relative;
}

.step-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 8px;
}

.step-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Sidebar Elements */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card.highlight {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
  color: #fff;
  border: none;
}

.sidebar-card.highlight h4 {
  color: #fff;
}

.sidebar-card h4 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: var(--secondary);
  position: relative;
  padding-bottom: 8px;
}

.sidebar-card h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.sidebar-services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-services-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
}

.sidebar-services-list a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* Common Section Styles */
.section {
  padding: 75px 0;
  position: relative;
}

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

.section-dark h2, .section-dark h3 {
  color: #fff;
}

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

.section-subtitle {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-dark .section-subtitle {
  color: var(--primary);
}

.section-title {
  font-size: 1.95rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

.section-dark .section-desc {
  color: #94a3b8;
}

/* Forms */
.form-group {
  margin-bottom: 13px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 60%, #152238 100%);
  color: var(--text-white);
  padding: 65px 0 85px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  margin: 16px 0 18px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

.hero-content h1 span.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.08rem;
  color: #cbd5e1;
  margin-bottom: 24px;
  max-width: 600px;
  line-height: 1.68;
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: #e2e8f0;
}

.hero-feature-item i {
  color: var(--primary);
  font-size: 1.05rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-numbers-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.hero-num-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-num-icon {
  width: 38px;
  height: 38px;
  background: rgba(245, 158, 11, 0.2);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-num-text small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
}

.hero-num-text a {
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
}

.hero-num-text a:hover {
  color: var(--primary);
}

.hero-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 28px 22px;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-card-header {
  margin-bottom: 18px;
  text-align: center;
}

.hero-card-header h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.hero-card-header p {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card.featured {
  border: 2px solid var(--primary);
  position: relative;
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  z-index: 5;
  box-shadow: var(--shadow-md);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #1e293b;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-icon-floating {
  position: absolute;
  bottom: -18px;
  left: 20px;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.service-body {
  padding: 24px 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.service-tag {
  font-size: 0.75rem;
  padding: 3px 8px;
  background: #f1f5f9;
  color: #475569;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.service-footer-btns {
  display: flex;
  gap: 8px;
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.service-footer-btns .btn {
  flex: 1;
}

/* Pump Showcase */
.pump-banner {
  background: linear-gradient(135deg, #0d1424 0%, #1e293b 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pump-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

@media (min-width: 992px) {
  .pump-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.pump-info h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}

.pump-info p {
  color: #cbd5e1;
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.pump-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.pump-spec-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
}

.pump-spec-box strong {
  display: block;
  color: var(--primary);
  font-size: 1.3rem;
  font-family: var(--font-heading);
}

.pump-spec-box span {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Calculator & Quote Box */
.calculator-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 35px 30px;
  box-shadow: var(--shadow-xl);
  border: 1px solid #e2e8f0;
  max-width: 920px;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .calc-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.calc-form .form-control {
  background: #f8fafc;
  color: var(--text-main);
  border: 1px solid #cbd5e1;
}

.calc-form select.form-control option {
  background: #fff;
  color: var(--text-main);
}

.calc-result-box {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  padding: 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.calc-result-title {
  font-size: 0.88rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calc-result-badge {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  margin: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.calc-result-note {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Districts */
.districts-section {
  background: #f1f5f9;
}

.district-search-wrap {
  max-width: 480px;
  margin: 0 auto 24px;
  position: relative;
}

.district-search-input {
  width: 100%;
  padding: 12px 20px 12px 44px;
  border-radius: var(--radius-full);
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: var(--transition);
}

.district-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.district-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.districts-badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-height: 320px;
  overflow-y: auto;
  padding: 15px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.district-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
  cursor: pointer;
}

.district-pill:hover, .district-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.district-pill i {
  font-size: 0.78rem;
  color: var(--primary-dark);
}

.district-pill:hover i, .district-pill.active i {
  color: #fff;
}

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

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.stat-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
}

.stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.84rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 230px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  background: #1e293b;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: #fff;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-header h4 {
  font-size: 1.02rem;
  color: var(--secondary);
  font-weight: 700;
  margin: 0;
}

.faq-icon {
  font-size: 1rem;
  color: var(--primary-dark);
  transition: transform 0.3s ease;
}

.faq-body {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  display: none;
}

.faq-card.open .faq-body {
  display: block;
}

.faq-card.open .faq-icon {
  transform: rotate(180deg);
}

.faq-card.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.dual-phone-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 20px;
}

@media (min-width: 500px) {
  .dual-phone-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.phone-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.phone-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.phone-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 10px;
}

.phone-card h4 {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.phone-card a.tel-link {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  margin-bottom: 10px;
}

.phone-card a.tel-link:hover {
  color: var(--primary-dark);
}

/* Footer */
.footer {
  background: var(--bg-darker);
  color: #94a3b8;
  padding: 60px 0 25px;
  border-top: 1px solid var(--dark-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-col h4 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* Mobile Sticky Action Bar */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 10px;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

@media (min-width: 992px) {
  .mobile-action-bar {
    display: none;
  }
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  margin: 0 3px;
}

.mobile-action-btn i {
  font-size: 1.2rem;
}

.mobile-action-btn.call-1 {
  background: var(--primary);
  color: #fff;
}

.mobile-action-btn.call-2 {
  background: var(--secondary-light);
  color: #fff;
}

.mobile-action-btn.whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--whatsapp);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  z-index: 990;
  transition: var(--transition);
}

@media (min-width: 992px) {
  .floating-whatsapp {
    display: flex;
  }
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
  color: #fff;
}
