/* ==========================================================================
   ÇELEBİ TESİSAT & DOĞALGAZ MÜHENDİSLİK - PROFESSIONAL DESIGN SYSTEM
   Renk Paleti: Gedik.com çizgisi — Lacivert + Elektrik Mavisi baskın, Beyaz zemin
   Turuncu yalnızca ince aksan olarak kullanılır (progress, küçük vurgular)
   Full-Width Top Header + High-Radius Oval Rounded Cards
   Logo: Şeffaf PNG logo sol köşe
   Fonts: Outfit (Display) & Plus Jakarta Sans (Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* === Gedik.com Renk Paleti Design Tokens === */
:root {
  --font-family: 'Plus Jakarta Sans', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Montserrat', sans-serif;

  /* ── ANA MARKA RENKLERİ (BASKИН) ── */
  --color-corporate-navy:  #091E5E;     /* Gedik Lacivert — başlıklar, navbar bg karanlık */
  --color-corporate-blue:  #3061EF;     /* Gedik Elektrik Mavisi — CTA, linkler, vurgular */
  --color-corporate-dark:  #071A56;     /* Derin Lacivert — hover, footer */
  --color-blue-second:     #3138D8;     /* Hover/tablo vurgu mavisi */

  /* ── TURUNCU — yalnızca ince aksan ── */
  --color-flame:           #FF6F00;     /* Çok az — yalnızca ince progress çizgisi gibi */
  --color-flame-hover:     #E06200;
  --color-flame-light:     #FFF7ED;
  --color-flame-glow:      rgba(48, 97, 239, 0.10);

  /* ── MARKA HEDEFLEMELERİ ── */
  --color-brand-black:     #091E5E;     /* Başlıklar için Lacivert */
  --color-brand-dark:      #071A56;
  --color-subtext:         #3138D8;

  /* ── ARKA PLAN (BEYAZ ZEMİN) ── */
  --color-bg-pure:         #FFFFFF;     /* Saf Beyaz */
  --color-bg-light:        #F0F6FB;     /* Açık Mavi-Gri Tonu */
  --color-bg-dark-blue:    #E5F1FF;     /* Hafif Mavi Kart BG */
  --color-bg-muted:        #F8FAFC;

  /* ── METİN ── */
  --color-text-main:       #191A1C;
  --color-text-muted:      #64748B;
  --color-border:          #E2E8F0;
  --color-border-hover:    #CBD5E1;

  /* ── GRADİYAN ── */
  --gradient-navbar:       #2810c8;
  --gradient-hero:         linear-gradient(141.97deg, #0B2065 28.84%, #071A56 108.83%);
  --gradient-btn:          linear-gradient(135deg, #3061EF 0%, #091E5E 100%);

  /* ── FORM ── */
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 36px;
  --radius-pill: 9999px;

  --transition-fast:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--color-bg-pure);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-brand-black);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

/* ==========================================================================
   FULL-WIDTH TOP NAVIGATION BAR (TRANSPARENT OFFICIAL LOGO FAR LEFT, CTA FAR RIGHT)
   ========================================================================== */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 0;
  margin: 0;
}

.main-header {
  width: 100%;
  max-width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-navbar);
  border-radius: 0;
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  width: 100%;
  max-width: 100%;
  padding: 0 2.5rem;
}

/* Brand Logo - Şeffaf PNG (Navbar) */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  background: transparent;
  transition: opacity var(--transition-fast);
}

.brand-logo:hover {
  opacity: 0.82;
}

.brand-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
  /* Arka plan yok - şeffaf PNG */
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}


/* ==========================================================================
   LIMAK-STYLE FULL-WIDTH NAVBAR & MEGA DROPDOWN MENU SYSTEM
   ========================================================================== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-wrapper.scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  background: #FFFFFF;
}

.main-header {
  position: relative;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  height: 82px;
}

/* Nav Menu Items */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 100%;
}

.nav-item {
  position: static; /* Allows full-width mega menu positioning */
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--color-brand-black);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 3px;
  background: var(--color-corporate-blue);
  border-radius: 3px 3px 0 0;
  transition: transform 0.25s ease;
}

/* LIMAK FULL-WIDTH MEGA PANEL */
.limak-mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #FFFFFF;
  border-top: 3px solid var(--color-corporate-blue);
  box-shadow: 0 25px 50px -12px rgba(9, 30, 94, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out, visibility 0.25s ease-out;
  pointer-events: none;
  z-index: 999;
}

/* Invisible bridge so mouse moving from link down to panel never breaks hover state */
.limak-mega-panel::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 25px;
  background: transparent;
  pointer-events: auto;
}

.nav-item:hover > .nav-link,
.nav-item.is-mega-open > .nav-link {
  color: var(--color-corporate-blue);
}

.nav-item:hover > .nav-link::after,
.nav-item.is-mega-open > .nav-link::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-item:hover .arrow-icon,
.nav-item.is-mega-open .arrow-icon {
  transform: rotate(180deg);
  stroke: var(--color-corporate-blue);
}

.nav-item:hover .limak-mega-panel,
.nav-item.is-mega-open .limak-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.limak-mega-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 2.25rem 2rem 2.5rem 2rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Left Featured Summary Card (Gedik Holding Corporate Style) */
.limak-mega-intro {
  background: var(--color-bg-light);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-corporate-navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  box-shadow: 0 4px 12px rgba(9, 30, 94, 0.04);
}

.mega-intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-corporate-blue);
  background: #FFFFFF;
  border: 1.5px solid rgba(48, 97, 239, 0.28);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(48, 97, 239, 0.08);
}

.mega-intro-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-corporate-navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.mega-intro-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.mega-intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-corporate-blue);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.mega-intro-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
  stroke: var(--color-corporate-blue);
}

.mega-intro-btn:hover {
  color: var(--color-corporate-navy);
}

.mega-intro-btn:hover svg {
  transform: translateX(5px);
  stroke: var(--color-corporate-navy);
}

/* Right Content Columns */
.limak-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.limak-mega-col {
  display: flex;
  flex-direction: column;
}

.limak-col-header {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-corporate-navy);
  letter-spacing: 0.06em;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #E2E8F0;
  position: relative;
}

.limak-col-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gradient-btn);
}

.limak-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.limak-col-links li a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.limak-col-links li a:hover {
  background: var(--color-bg-light);
  transform: translateX(5px);
}

.limak-item-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #1E293B;
  transition: color 0.2s ease;
}

.limak-col-links li a:hover .limak-item-title {
  color: var(--color-corporate-blue);
}

.limak-item-desc {
  display: block;
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 500;
  margin-top: 0.15rem;
  line-height: 1.35;
}

/* Header Quote CTA Button — Gedik.com çizgisi: Lacivert Gradyan */
.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-btn);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(48, 97, 239, 0.35);
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.header-btn:hover {
  background: linear-gradient(135deg, #2050D8 0%, #071A56 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(48, 97, 239, 0.48);
  color: #FFFFFF;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--color-brand-black);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   AUTO-ROTATING HERO SLIDER
   ========================================================================== */
.hero-slider-container {
  position: relative;
  min-height: 82vh;
  padding: 0;
  overflow: hidden;
  border-bottom: 4px solid var(--color-corporate-blue);
  background: var(--color-brand-black);
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(11, 18, 32, 0.95) 0%, rgba(11, 18, 32, 0.82) 50%, rgba(11, 18, 32, 0.45) 100%);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 3;
}

.hero-slide .hero-overlay-content {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, opacity 0.9s ease 0.3s;
}

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

.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 1.25rem;
  backdrop-filter: none;
  box-shadow: none;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #3061EF;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border: 2px solid #3061EF;
  border-radius: 50%;
  animation: pulse-ring 1.8s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title span {
  color: var(--color-corporate-blue);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.2rem;
  color: #E2E8F0;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  max-width: 700px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #2810c8 !important;
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1.1rem 2.4rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(40, 16, 200, 0.2) !important;
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #ffffff !important;
  color: #181c24 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16) !important;
}

.btn-primary:hover svg {
  stroke: #181c24 !important;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1.1rem 2.4rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-normal);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: #FFFFFF;
  background: #FFFFFF;
  color: var(--color-brand-black);
  transform: translateY(-3px);
}

/* Slider Controls (Dots & Arrows) */
.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(11, 18, 32, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 1.35rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.slider-arrow {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0 0.4rem;
  transition: color var(--transition-fast);
  line-height: 1;
}

.slider-arrow:hover {
  color: var(--color-corporate-blue);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.slider-dot.active {
  width: 32px;
  border-radius: var(--radius-pill);
  background: var(--gradient-btn);
}

/* ==========================================================================
   PURE WHITE STATS COUNTER SECTION
   ========================================================================== */
.stats-section {
  background: #FFFFFF;
  color: var(--color-brand-black);
  padding: 4.5rem 0;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(48, 97, 239, 0.25);
  box-shadow: 0 16px 36px rgba(48, 97, 239, 0.10);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #181c24;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-brand-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   BRIGHT FULL-WIDTH HERO-STYLE ABOUT US SECTION (FULL IMAGE COVER, OVERLAY TEXT)
   ========================================================================== */
.about-bright-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background-image: url('images/about_bright.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 6.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 5px solid var(--color-corporate-blue);
  overflow: hidden;
}

.about-bright-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.85) 55%, rgba(11, 18, 32, 0.45) 100%);
  z-index: 1;
}

.about-bright-section .container {
  position: relative;
  z-index: 2;
}

.about-overlay-wrapper {
  max-width: 860px;
}

.about-overlay-wrapper .about-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-top: 0.6rem;
  margin-bottom: 1.25rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.about-overlay-wrapper .about-lead {
  font-size: 1.15rem;
  color: #E2E8F0;
  line-height: 1.8;
  margin-bottom: 2.25rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Feature Cards on Overlay - Glassmorphic / Crisp White text */
.about-feature-cards-overlay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.about-feature-card-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 1.5rem 1.65rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: var(--transition-normal);
}

.about-feature-card-glass:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(48, 97, 239, 0.45);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.about-feature-card-glass .about-check-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--color-corporate-blue);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(48, 97, 239, 0.30);
}

.about-feature-card-glass h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.about-feature-card-glass p {
  font-size: 0.9rem;
  color: #CBD5E1;
  line-height: 1.55;
}

/* Glass Quote Box */
.about-quote-box-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-left: 5px solid var(--color-corporate-blue);
  border-radius: 0 22px 22px 0;
  padding: 1.6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-quote-box-glass .quote-text {
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.7;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.about-quote-box-glass .quote-author {
  font-size: 0.95rem;
  font-weight: 800;
  color: #6790FF;
}

.about-quote-box-glass .quote-author span {
  color: #CBD5E1;
  font-weight: 600;
}

/* ==========================================================================
   FULL-WIDTH SHOWCASE COVER SECTIONS
   ========================================================================== */
.full-showcase-cover {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 5.5rem 0;
  overflow: hidden;
  border-top: 3px solid var(--color-corporate-blue);
  border-bottom: 3px solid var(--color-corporate-blue);
}

.full-showcase-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(270deg, rgba(11, 18, 32, 0.97) 0%, rgba(11, 18, 32, 0.88) 55%, rgba(11, 18, 32, 0.45) 100%);
  z-index: 1;
}

.full-showcase-cover .container {
  position: relative;
  z-index: 2;
}

.showcase-right-content {
  max-width: 680px;
  margin-left: auto;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.showcase-right-content .section-title {
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-top: 0.6rem;
  margin-bottom: 1.25rem;
}

.showcase-right-content .section-subtitle {
  color: #E2E8F0;
  font-size: 1.15rem;
  line-height: 1.75;
}

.showcase-right-content .feature-check-icon {
  background: var(--color-corporate-blue);
  color: #FFFFFF;
}

.showcase-right-content strong {
  color: #FFFFFF !important;
  font-size: 1.05rem;
}

.showcase-right-content p {
  color: #CBD5E1 !important;
}

.cover-rms { background-image: url('images/rms.webp'); }
.cover-radiant { background-image: url('images/radiant.webp'); }
.cover-chiller { background-image: url('images/chiller.webp'); }

/* ==========================================================================
   HORIZONTAL SCROLLABLE IMAGE CARDS CAROUSEL (.services-carousel-section)
   ========================================================================== */
.services-carousel-section {
  padding: 5.5rem 0;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}

.carousel-wrapper-side-nav {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.carousel-side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none !important;
  background: #2810c8 !important;
  color: #FFFFFF !important;
  font-size: 1.6rem !important;
  font-weight: 800;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 4px 16px rgba(40, 16, 200, 0.3) !important;
}

.carousel-side-arrow.left-arrow {
  left: -28px;
}

.carousel-side-arrow.right-arrow {
  right: -28px;
}

.carousel-side-arrow:hover {
  background: #1c0a96 !important;
  color: #FFFFFF !important;
  border-color: transparent !important;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(40, 16, 200, 0.4) !important;
}

.services-carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.75rem 0.25rem 2rem 0.25rem;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-corporate-blue) var(--color-bg-muted);
}

.services-carousel-track::-webkit-scrollbar {
  height: 8px;
}

.services-carousel-track::-webkit-scrollbar-track {
  background: var(--color-bg-muted);
  border-radius: 9999px;
}

.services-carousel-track::-webkit-scrollbar-thumb {
  background: var(--color-corporate-blue);
  border-radius: 9999px;
}

.carousel-image-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: calc((100% - 3rem) / 3);
  height: 490px;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  border: 1px solid var(--color-border);
}

.carousel-image-card::before {
  display: none !important;
  content: none !important;
}

.carousel-image-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.carousel-image-card:hover::before {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.1) 0%, rgba(17, 24, 39, 0.88) 100%);
}

.floating-info-card {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.carousel-image-card:hover .floating-info-card {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.floating-card-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-brand-black);
  margin-bottom: 0.5rem;
}

.floating-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.floating-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--gradient-btn);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(48, 97, 239, 0.25);
}

.floating-card-btn:hover {
  background: linear-gradient(135deg, #2050D8 0%, #071A56 100%);
  box-shadow: 0 8px 20px rgba(48, 97, 239, 0.40);
}

/* ==========================================================================
   IMAGE-HEADER BLOG CARDS SECTION (.home-blog-section)
   ========================================================================== */
.home-blog-section {
  padding: 5.5rem 0;
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.home-blog-card {
  background: #FFFFFF;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.home-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(48, 97, 239, 0.20);
}

.blog-card-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-card-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1E293B !important;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  transition: color var(--transition-fast);
}

.home-blog-card:hover .blog-card-title {
  color: #1E293B !important;
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: #000000 !important;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.blog-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-btn);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(48, 97, 239, 0.20);
  width: fit-content;
}

.home-blog-card:hover .blog-card-btn {
  background: linear-gradient(135deg, #2050D8 0%, #071A56 100%);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(48, 97, 239, 0.35);
}

/* ==========================================================================
   TALLER PAGE BANNERS WITH 7 UNIQUE IMAGES (.page-banner)
   ========================================================================== */
.page-banner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 7rem 0;
  overflow: hidden;
  border-bottom: 5px solid var(--color-corporate-navy);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(11, 18, 32, 0.94) 0%, rgba(11, 18, 32, 0.75) 60%, rgba(11, 18, 32, 0.45) 100%);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner-title {
  font-size: 3.4rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  color: #CBD5E1;
  font-weight: 600;
}

.page-breadcrumb a {
  color: var(--color-corporate-blue);
  font-weight: 800;
}

.banner-kurumsal { background-image: url('images/kurumsal.webp'); }
.banner-hizmetler { background-image: url('images/hero.webp'); }
.banner-isitma { background-image: url('images/radiant.webp'); }
.banner-sogutma { background-image: url('images/chiller.webp'); }
.banner-urunler { background-image: url('images/rms.webp'); }
.banner-blog { background-image: url('images/hero3.webp'); }
.banner-iletisim { background-image: url('images/hero2.webp'); }

/* ==========================================================================
   ULTRA-LUXURY CONTACT PAGE STYLES (.contact-page-grid)
   ========================================================================== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  margin: 4.5rem auto;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-premium {
  background: #FFFFFF;
  border: 1.5px solid rgba(48, 97, 239, 0.10);
  border-radius: 28px;
  padding: 2.1rem 1.85rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.03);
  display: flex;
  gap: 1.4rem;
  align-items: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.contact-card-premium:hover {
  transform: translateY(-6px);
  border-color: rgba(48, 97, 239, 0.25);
  box-shadow: 0 20px 50px rgba(48, 97, 239, 0.10);
}

.contact-icon-premium {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(135deg, #EBF0FF 0%, #CEDAF7 100%);
  color: var(--color-corporate-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-normal);
  box-shadow: 0 8px 22px rgba(48, 97, 239, 0.12);
}

.contact-card-premium:hover .contact-icon-premium {
  background: linear-gradient(135deg, #3061EF 0%, #2050D8 100%);
  color: #FFFFFF;
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 12px 30px rgba(48, 97, 239, 0.30);
}

.contact-details-premium {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-details-premium h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-brand-black);
}

.contact-details-premium p, .contact-details-premium div {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.contact-details-premium a {
  color: var(--color-corporate-blue);
  font-weight: 800;
}

.contact-details-premium a:hover {
  color: var(--color-corporate-dark);
  text-decoration: underline;
}

.contact-form-panel {
  background: #FFFFFF;
  border-radius: 36px;
  padding: 3.25rem 2.85rem;
  border: 1.5px solid rgba(48, 97, 239, 0.10);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
}

.contact-form-panel:hover {
  box-shadow: 0 25px 60px rgba(48, 97, 239, 0.08);
}

.form-header-premium {
  margin-bottom: 2.25rem;
}

.form-header-premium h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-brand-black);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.form-header-premium p {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  margin-bottom: 1.35rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.form-group-row .form-group {
  margin-bottom: 0;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-brand-black);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 1rem 1.35rem;
  background-color: var(--color-bg-light);
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--color-brand-black);
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: var(--color-corporate-blue);
  box-shadow: 0 0 0 4px rgba(48, 97, 239, 0.12);
}

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

.btn-whatsapp-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  background: var(--gradient-btn);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 1.15rem 2rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(48, 97, 239, 0.35);
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
  margin-top: 0.75rem;
}

.btn-whatsapp-submit:hover {
  background: linear-gradient(135deg, #2050D8 0%, #071A56 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(48, 97, 239, 0.45);
}

/* FULL-WIDTH EDGE-TO-EDGE MAPS SECTION */
.full-width-map-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0;
  height: 520px;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 4px solid var(--color-corporate-blue);
  margin-top: 4rem;
}

.full-width-map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* PREMIUM BLOG PAGE STYLES */
.blog-page-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  margin: 4rem auto;
}

.blog-sidebar {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-card);
  align-self: start;
  position: sticky;
  top: 110px;
}

.blog-sidebar-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-brand-black);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-bg-light);
}

.blog-filter-container {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blog-filter-btn {
  width: 100%;
  text-align: left;
  padding: 0.8rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 12px;
  background-color: transparent;
  color: var(--color-text-muted);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-filter-btn::after {
  content: '→';
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition-normal);
}

.blog-filter-btn:hover {
  background-color: var(--color-bg-light);
  color: var(--color-corporate-blue);
  padding-left: 1.35rem;
}

.blog-filter-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.blog-filter-btn.active {
  background-color: var(--color-corporate-blue);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(48, 97, 239, 0.25);
}

.blog-filter-btn.active::after {
  opacity: 1;
  transform: translateX(0);
}

.blog-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ULTRA-PREMIUM SERVICE CARDS & VECTOR SVG ICONS */
.section-padding { padding: 5.5rem 0; }
.section-header { text-align: center; max-width: 780px; margin: 0 auto 3.75rem auto; }
.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-corporate-blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
  background: #FFFFFF;
  border: 1.5px solid rgba(48, 97, 239, 0.28);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(48, 97, 239, 0.08);
}
.section-title { font-size: 2.5rem; font-weight: 900; color: var(--color-brand-black); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--color-text-muted); line-height: 1.7; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid rgba(48, 97, 239, 0.10);
  border-top: 4px solid var(--color-corporate-blue);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  display: none !important;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 97, 239, 0.18);
  box-shadow: var(--shadow-hover);
}

.card-icon-wrap {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(48, 97, 239, 0.06) 0%, rgba(48, 97, 239, 0.03) 100%);
  border: 1.5px solid rgba(48, 97, 239, 0.14);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: var(--transition-normal);
  color: var(--color-corporate-blue);
  box-shadow: 0 6px 16px rgba(48, 97, 239, 0.05);
}

.service-card:hover .card-icon-wrap {
  transform: none;
}

.card-icon-wrap svg {
  width: 38px;
  height: 38px;
  transition: transform var(--transition-normal);
}

.card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: var(--color-brand-black);
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.card-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFFFFF;
  background: var(--color-flame);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
  width: fit-content;
}

.service-card:hover .card-footer-link {
  background: var(--color-flame-hover);
  color: #FFFFFF;
  transform: none;
  box-shadow: none;
}

.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(0,0,0,0.22);
  transition: var(--transition-normal);
  position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.whatsapp { background-color: #25D366; }

/* ============================================================
   AYSOFT-STYLE PREMIUM DARK FOOTER
   Logo sol | 2 Link Kolonu | İletişim Kutusu Sağ
   Alt Bar: Telif | Nav Linkleri | Scroll-to-top
   ============================================================ */
.main-footer {
  background: #2810c8;
  color: #ffffff;
  padding: 3.5rem 0 0 0;
  border-top: none;
  position: relative;
}

.footer-inner {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 280px;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
}

/* ── Sol: Logo ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.footer-logo-wrap a {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 0.55rem 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.footer-logo-wrap a:hover {
  background: #FFFFFF;
  transform: scale(1.03);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Navbar ile aynı logo, aynı renkler */
}


/* ── Orta: Link Kolonları ── */
.footer-col {
  display: flex;
  flex-direction: column;
  padding-top: 0.25rem;
}

.footer-col-heading {
  display: inline-flex;
  width: fit-content;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.35rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.footer-col-heading:hover,
a.footer-col-heading:focus-visible {
  color: var(--color-flame);
}

.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.footer-col-links a {
  font-size: 0.9rem;
  color: #8B9AB0;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-col-links a:hover {
  color: #FFFFFF;
  padding-left: 5px;
}

/* ── Sağ: Bize Ulaşın Kutusu ── */
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.25rem;
}

.footer-contact-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
}

.footer-contact-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-corporate-blue);
  border-radius: 50%;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #BCC8D8;
  transition: color 0.2s;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-item:hover {
  color: #FFFFFF;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #6790FF;
}

/* ── Sosyal İkon Satırı ── */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #8B9AB0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.social-circle-btn:hover {
  background: var(--color-corporate-blue);
  border-color: var(--color-corporate-blue);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(48, 97, 239, 0.35);
}

/* ── Alt Bar ── */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.83rem;
  color: #4B5A6A;
  font-weight: 500;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6B7A8D;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

.back-to-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-corporate-blue);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(48, 97, 239, 0.40);
  flex-shrink: 0;
}

.back-to-top-btn:hover {
  background: var(--color-corporate-navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(48, 97, 239, 0.50);
}

/* Eski footer utility class'ları - geriye dönük uyumluluk */
.footer-grid-wrapper { display: none; }


/* Responsive */
@media (max-width: 1200px) {
  .nav-container { padding: 0 1.25rem; }
  .nav-link { font-size: 0.88rem; padding: 0.5rem 0.65rem; }
  .showcase-right-content { max-width: 100%; margin-left: 0; }
  .carousel-image-card { flex: 0 0 calc((100% - 1.5rem) / 2); min-width: calc((100% - 1.5rem) / 2); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-contact-col { grid-column: 1 / -1; flex-direction: row; gap: 2rem; }
  .footer-contact-box { flex: 1; }
  .footer-social-row { flex-direction: row; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
  .carousel-side-arrow.left-arrow { left: -10px; }
  .carousel-side-arrow.right-arrow { right: -10px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .about-overlay-wrapper { max-width: 100%; }
  .about-overlay-wrapper .about-title { font-size: 2.5rem; }
  .about-feature-cards-overlay { grid-template-columns: 1fr; }
  .blog-page-wrapper { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-grid-layout { grid-template-columns: repeat(2, 1fr); }
  .page-banner { min-height: 45vh; padding: 5rem 0; }
  .page-banner-title { font-size: 2.6rem; }
}

@media (max-width: 1024px) {
  .cards-grid, .blog-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .carousel-image-card { flex: 0 0 100%; min-width: 100%; height: 440px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-contact-col { flex-direction: column; }
  .footer-bottom-bar { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom-right { flex-direction: column; gap: 0.85rem; }
  .carousel-side-arrow { display: none; }
  .blog-grid-layout { grid-template-columns: 1fr; }
  .form-group-row { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-container { padding: 0 1rem; height: 78px; }
  .hero-title { font-size: 2.5rem; }
  .page-banner-title { font-size: 2.2rem; }
  .mobile-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 78px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 78px);
    background: #FFFFFF;
    box-shadow: var(--shadow-navbar);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    overflow-y: auto;
    transition: left var(--transition-normal);
    z-index: 999;
  }
  .nav-menu.active { left: 0; }
  .nav-item { width: 100%; flex-direction: column; align-items: flex-start; height: auto; }
  .nav-link { width: 100%; justify-content: space-between; padding: 0.85rem 0; font-size: 1.05rem; border-bottom: 1px solid #F1F5F9; }
  .nav-link::after { display: none; }
  .limak-mega-panel {
    position: static;
    transform: none !important;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-shadow: none;
    border-top: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0;
  }
  .nav-item.active-mobile .limak-mega-panel {
    display: block;
  }
  .limak-mega-inner {
    grid-template-columns: 1fr;
    padding: 1rem 0;
    gap: 1.5rem;
  }
  .limak-mega-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .cards-grid, .blog-cards-grid { grid-template-columns: 1fr; }
}

:root {
  --color-corporate-navy: #17118f;
  --color-corporate-blue: #405cf5;
  --color-corporate-dark: #0b0754;
  --color-blue-second: #657dfb;
  --color-brand-black: #10123f;
  --color-brand-dark: #080a2e;
  --color-subtext: #405cf5;
  --color-bg-light: #f3f5ff;
  --color-bg-dark-blue: #e9edff;
  --color-bg-muted: #f8f9fd;
  --color-text-main: #15162b;
  --color-text-muted: #646a85;
  --color-border: #dfe3f1;
  --color-border-hover: #c5ccef;
  --color-flame: #ff6a2b;
  --gradient-navbar: #2810c8;
  --gradient-hero: linear-gradient(135deg, #160d9c 0%, #344ee6 58%, #7699ff 100%);
  --gradient-btn: linear-gradient(135deg, #405cf5 0%, #2416bd 100%);
  --shadow-navbar: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.06);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
}

html {
  scroll-padding-top: 150px;
}

body {
  background:
    radial-gradient(circle at 95% 25%, rgba(64, 92, 245, 0.05), transparent 22rem),
    #ffffff;
}

::selection {
  color: #ffffff;
  background: var(--color-corporate-blue);
}

:focus-visible {
  outline: 3px solid #ffb08d;
  outline-offset: 4px;
}

.anchor-target {
  display: block;
  width: 0;
  height: 0;
  scroll-margin-top: 112px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--color-corporate-navy);
  background: #ffffff;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  max-width: 1400px;
  padding-inline: clamp(1.15rem, 3vw, 3rem);
}

.header-wrapper {
  background: #2810c8;
  border-bottom: 0;
  box-shadow: 0 4px 20px rgba(40, 16, 200, 0.25);
}

.header-wrapper.scrolled {
  background: #2810c8;
  box-shadow: 0 6px 24px rgba(40, 16, 200, 0.35);
}

.main-header {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.nav-container {
  height: 86px;
  max-width: 1400px;
  padding: 0 clamp(1.15rem, 3vw, 3rem);
}

.brand-logo {
  min-width: 188px;
  height: 54px;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: 30px 18px;
  column-gap: 0.65rem;
  align-items: center;
  color: #ffffff;
}

.brand-logo-img {
  display: none;
}

.brand-logo::before {
  content: "Ç";
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.brand-logo::after {
  content: "ÇELEBİ\A MÜHENDİSLİK";
  grid-column: 2;
  grid-row: 1 / 3;
  white-space: pre;
  font-family: var(--font-heading);
  font-size: 1.24rem;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.brand-logo:hover {
  color: #ffffff;
  opacity: 1;
}

.nav-menu {
  gap: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  padding: 0.72rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 750;
}

.nav-link:hover,
.nav-link.active,
.nav-item:hover > .nav-link,
.nav-item.is-mega-open > .nav-link {
  color: #ffffff;
}

.nav-link::after {
  bottom: -19px;
  height: 2px;
  width: calc(100% - 1.3rem);
  background: #ffffff;
}

.arrow-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  stroke: currentColor;
}

.header-btn {
  min-height: 46px;
  padding: 0.8rem 1.25rem;
  color: var(--color-corporate-navy);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(18, 11, 99, 0.2);
  font-size: 0.82rem;
}

.header-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 11, 99, 0.24);
}

.limak-mega-panel {
  left: 0;
  right: 0;
  width: auto;
  margin-left: 0;
  margin-right: 0;
  border-top: 0;
  box-shadow: 0 34px 80px rgba(11, 7, 84, 0.2);
}

.limak-mega-inner {
  max-width: 1400px;
}

.limak-mega-intro {
  background:
    linear-gradient(140deg, rgba(64, 92, 245, 0.1), rgba(255, 255, 255, 0.85)),
    #f5f7ff;
  border-left-color: var(--color-flame);
}

.mega-intro-btn,
.card-footer-link,
.floating-card-btn {
  border-radius: 11px;
}

.hero-slider-container {
  min-height: 680px;
  height: calc(100vh - 82px);
  max-height: 840px;
  margin-top: 86px;
  width: 100%;
  margin-inline: 0;
  border: 0;
  border-radius: 0;
  background: var(--color-corporate-dark);
  box-shadow: 0 30px 80px rgba(18, 14, 89, 0.2);
}

.hero-slide {
  padding: 5rem 0 7rem;
  background-position: center;
}

.hero-slide-overlay {
  background:
    linear-gradient(90deg, rgba(8, 6, 62, 0.97) 0%, rgba(18, 18, 88, 0.91) 42%, rgba(18, 24, 78, 0.32) 72%, rgba(18, 24, 78, 0.1) 100%),
    linear-gradient(0deg, rgba(12, 9, 66, 0.38), transparent 45%);
}

.hero-overlay-content {
  max-width: 780px;
}

.pulse-badge {
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: none;
  box-shadow: none;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #405cf5;
}

.pulse-dot::after {
  border-color: rgba(64, 92, 245, 0.6);
}

.hero-title {
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(5, 4, 36, 0.3);
}

.hero-title span {
  color: #9fb3ff;
}

.hero-title span::after {
  content: "";
  display: block;
  width: 104px;
  height: 5px;
  margin-top: 1rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.16));
}

.hero-description {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.72;
  text-shadow: none;
}

.btn-primary,
.btn-outline {
  min-height: 52px;
  padding: 0.95rem 1.55rem;
  border-radius: 12px;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.btn-primary {
  color: #ffffff !important;
  background: #2810c8 !important;
  box-shadow: 0 4px 14px rgba(40, 16, 200, 0.2) !important;
}

.btn-primary:hover {
  color: #181c24 !important;
  background: #ffffff !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16) !important;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.btn-whatsapp-hero,
.btn-whatsapp,
.float-btn.whatsapp {
  background: #25D366 !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
}

.btn-whatsapp-hero:hover,
.btn-whatsapp:hover,
.float-btn.whatsapp:hover {
  background: #20bd5a !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}

.slider-controls {
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: 2.4rem;
  left: auto;
  transform: none;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  background: rgba(10, 7, 69, 0.56);
}

.slider-arrow {
  width: 34px;
  height: 34px;
  padding: 0;
}

.slider-dot {
  width: 7px;
  height: 7px;
}

.slider-dot.active {
  width: 34px;
  background: #ffffff;
}

.stats-section {
  position: relative;
  z-index: 15;
  max-width: 1280px;
  margin: -46px auto 0;
  background: transparent;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.stats-section .container {
  padding: 0;
}

.stats-grid {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(64, 92, 245, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 60px rgba(23, 17, 143, 0.14);
  backdrop-filter: blur(20px);
}

.stat-card {
  min-height: 142px;
  padding: 1.8rem 2rem;
  border: 0;
  border-right: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card:hover {
  transform: none;
  background: #f7f8ff;
  box-shadow: none;
}

.stat-number {
  font-size: 2.65rem;
  color: #181c24;
  letter-spacing: -0.05em;
}

.stat-label {
  color: var(--color-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.section-padding,
.services-carousel-section,
.home-blog-section {
  padding-block: clamp(5rem, 8vw, 8rem);
}

.section-header {
  width: 100%;
  max-width: 100%;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem) auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services-carousel-section .section-header,
.home-blog-section .section-header {
  width: 100%;
  max-width: 100%;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem) auto;
  text-align: center;
}

.section-title {
  width: 100%;
  font-size: clamp(1.5rem, 2.7vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-wrap: unset;
  white-space: nowrap;
  text-align: center;
  margin-inline: auto;
}

.services-carousel-section .section-title {
  transform: translateX(-28px);
}

.section-subtitle {
  max-width: 780px;
  text-align: center;
  margin-inline: auto;
}

@media (max-width: 1024px) {
  .section-title {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    white-space: normal;
  }
  .services-carousel-section .section-title {
    transform: none;
  }
}

.section-tag {
  padding: 0;
  color: #1E293B !important; /* Antrasit renk - açık zeminde okunabilirlik için */
  font-weight: 800;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.dark-bg .section-tag,
.article-hero .section-tag {
  color: #ffffff !important;
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 0.65rem;
  vertical-align: middle;
  background: var(--color-flame);
}





.bg-light {
  background:
    radial-gradient(circle at 0 0, rgba(64, 92, 245, 0.08), transparent 25rem),
    #f5f6fc;
}

.cards-grid {
  gap: 1.35rem;
}

.service-card {
  min-height: 410px;
  padding: 2.3rem;
  border: 1px solid rgba(64, 92, 245, 0.1);
  border-top: 0;
  border-radius: 36px;
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: "0" counter(service-card);
  counter-increment: service-card;
  position: absolute;
  top: 1.55rem;
  right: 1.8rem;
  color: rgba(23, 17, 143, 0.12);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
}

.cards-grid {
  counter-reset: service-card;
}

.service-card::after {
  display: none !important;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card:hover::after {
  display: none !important;
}

.card-icon-wrap {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 18px;
  color: #ffffff;
  background: var(--gradient-btn);
  box-shadow: 0 12px 30px rgba(64, 92, 245, 0.22);
}

.card-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.card-title {
  font-size: 1.5rem;
  line-height: 1.2;
}

.card-footer-link {
  padding: 0.72rem 1rem;
  color: var(--color-corporate-navy);
  background: #eef1ff;
}

.full-showcase-cover {
  width: 100%;
  min-height: 0;
  max-width: none;
  margin: clamp(4rem, 6vw, 6rem) 0;
  padding: 3.5rem clamp(1.2rem, 4vw, 4rem);
  border: 0;
  border-radius: 0;
  background-position: center;
  box-shadow: 0 35px 90px rgba(13, 10, 71, 0.2);
}

.full-showcase-cover::before {
  background:
    linear-gradient(270deg, rgba(11, 7, 84, 0.98) 0%, rgba(17, 12, 105, 0.91) 48%, rgba(17, 14, 80, 0.22) 78%),
    linear-gradient(0deg, rgba(11, 7, 84, 0.35), transparent 40%);
}

.showcase-right-content {
  max-width: 720px;
  padding: 0;
  text-shadow: none;
}

.showcase-right-content .section-title {
  font-size: clamp(2.35rem, 3.35vw, 3.35rem);
  letter-spacing: -0.045em;
}

.showcase-feature-item {
  padding-block: 0.35rem !important;
}

.cover-rms .section-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
}

.cover-rms .showcase-feature-list {
  gap: 0.8rem !important;
  margin: 1.4rem 0 !important;
}

.cover-rms .showcase-feature-item {
  padding-block: 0 !important;
}

.cover-rms .showcase-right-content > div:last-child {
  margin-top: 1.5rem !important;
}

.showcase-right-content .feature-check-icon {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.showcase-right-content .btn-primary {
  color: var(--color-corporate-navy);
}

.about-bright-section {
  width: 100%;
  min-height: 0;
  max-width: none;
  margin: 0 0 clamp(4rem, 6vw, 6rem);
  padding: 4rem clamp(1.2rem, 4vw, 4rem);
  border: 0;
  border-radius: 0;
  box-shadow: 0 35px 90px rgba(15, 18, 62, 0.16);
}

.about-bright-section::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 42, 0.96) 0%, rgba(14, 17, 67, 0.88) 55%, rgba(19, 25, 77, 0.22) 100%);
}

.page-banner + .about-bright-section {
  margin-top: clamp(1rem, 1.5vw, 1.75rem);
}

.about-overlay-wrapper {
  max-width: 960px;
}

.about-overlay-wrapper .about-title {
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-shadow: none;
  margin-bottom: 1rem;
}

.about-overlay-wrapper .about-title span {
  display: inline;
}

.about-overlay-wrapper .about-lead {
  max-width: 920px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.65;
  text-shadow: none;
}

.about-feature-cards-overlay {
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-feature-card-glass {
  padding: 1.15rem 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.about-feature-card-glass .about-check-icon {
  border-radius: 12px;
  background: #ffffff;
  color: var(--color-corporate-navy);
  box-shadow: none;
}

.about-quote-box-glass {
  padding: 1.15rem 1.5rem;
  border-left-color: #ff8652;
}

.about-quote-box-glass .quote-text {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  line-height: 1.55;
}

.services-carousel-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f6fc 100%);
}

.carousel-wrapper-side-nav {
  padding-inline: 0.25rem;
}

.services-carousel-track {
  gap: 1.25rem;
  scrollbar-width: none;
}

.services-carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-image-card {
  flex-basis: calc((100% - 2.5rem) / 3);
  min-width: calc((100% - 2.5rem) / 3);
  height: 540px;
  border: 0;
  border-radius: 32px;
  box-shadow: 0 18px 44px rgba(19, 22, 68, 0.12);
}

.carousel-image-card::before {
  display: none !important;
  content: none !important;
}

.floating-info-card {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1.45rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
}

.floating-card-btn {
  color: #ffffff;
  background: var(--gradient-btn);
}

.carousel-side-arrow {
  width: 52px;
  height: 52px;
  border: 0;
  color: #ffffff !important;
  background: #2810c8 !important;
}

.home-blog-section {
  border: 0;
  background: #ffffff;
}

.blog-cards-grid {
  gap: 1.35rem;
}

.home-blog-card {
  border: 0;
  border-radius: 34px;
  background: #f7f8fc;
  box-shadow: none;
}

.home-blog-card:hover {
  box-shadow: var(--shadow-card);
}

.blog-card-img-wrap {
  height: 260px;
}

.blog-card-body {
  padding: 1.65rem;
}

.blog-card-btn {
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  color: #ffffff;
  background: var(--color-flame);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(255, 106, 43, 0.24);
}

.home-blog-card:hover .blog-card-btn,
.blog-card-btn:hover {
  color: #ffffff;
  background: var(--color-flame);
  transform: none;
}

.engineering-cta {
  position: relative;
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 128, 70, 0.34), transparent 24%),
    radial-gradient(circle at 12% 90%, rgba(117, 152, 255, 0.42), transparent 28%),
    linear-gradient(125deg, #171078 0%, #3426d4 48%, #667de8 100%);
  border-radius: 46px 46px 0 0;
}

.engineering-cta::before,
.engineering-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.engineering-cta::before {
  width: 460px;
  height: 460px;
  top: -320px;
  right: -90px;
}

.engineering-cta::after {
  width: 280px;
  height: 280px;
  right: 38%;
  bottom: -230px;
}

.engineering-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.engineering-cta__intro {
  max-width: 620px;
}

.engineering-cta__eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.engineering-cta h2 {
  max-width: 660px;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.2vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.engineering-cta__lead {
  max-width: 590px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.engineering-cta__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.engineering-cta__benefits span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 34px;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.engineering-cta__benefits span::before {
  content: "✓";
  color: #ffb38f;
  font-weight: 900;
}

.engineering-cta__phone {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
  margin-top: 1.7rem;
  color: #ffffff;
}

.engineering-cta__phone span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
}

.engineering-cta__phone strong {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.quick-quote-card {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2rem);
  color: var(--color-corporate-navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(12, 8, 72, 0.28);
  backdrop-filter: blur(24px);
}

.quick-quote-card::before {
  display: none !important;
}

.quick-quote-card__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.quick-quote-card__step {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #ffffff;
  background: var(--color-flame);
  border-radius: 14px;
  font-family: var(--font-heading);
  font-weight: 900;
}

.quick-quote-card h2,
.quick-quote-card h3 {
  margin: 0;
  color: #181c24 !important;
  font-size: 2.2rem;
  line-height: 1.1;
}

.quick-quote-card__header p {
  margin-top: 0.2rem;
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.quick-quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.quick-quote__field {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.quick-quote__field--full,
.quick-quote__submit,
.quick-quote__privacy,
.quick-quote__status {
  grid-column: 1 / -1;
}

.quick-quote__field label {
  color: #181c24 !important;
  font-size: 0.76rem;
  font-weight: 800;
}

.quick-quote__field input,
.quick-quote__field select,
.quick-quote__field textarea {
  width: 100%;
  border: 1px solid #d9def4;
  border-radius: 12px;
  color: #181c24 !important;
  background: #f7f8fd;
  font: inherit;
  font-size: 0.88rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quick-quote__field input,
.quick-quote__field select {
  min-height: 48px;
  padding: 0 0.9rem;
}

.quick-quote__field textarea {
  min-height: 92px;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}

.quick-quote__field input:focus,
.quick-quote__field select:focus,
.quick-quote__field textarea:focus {
  outline: none;
  border-color: var(--color-flame);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 106, 43, 0.12);
}

.quick-quote__submit {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.15rem;
  padding: 0.9rem 1.1rem;
  border: 0;
  border-radius: 13px;
  color: #ffffff;
  background: var(--color-flame);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(255, 106, 43, 0.26);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quick-quote__submit:hover {
  background: var(--color-flame-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 106, 43, 0.34);
}

.quick-quote__privacy,
.quick-quote__status {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.quick-quote__status:not(:empty) {
  color: #247b4d;
  font-weight: 750;
}

.page-banner {
  width: 100%;
  height: 500px;
  min-height: 500px;
  max-width: none;
  margin: 86px 0 0;
  padding: 7rem clamp(1rem, 4vw, 4rem);
  border: 0;
  border-radius: 0;
  box-shadow: 0 30px 80px rgba(18, 14, 89, 0.15);
}

.page-banner::before {
  background:
    linear-gradient(90deg, rgba(9, 14, 32, 0.68) 0%, rgba(15, 23, 42, 0.42) 58%, rgba(15, 23, 42, 0.12) 100%);
}

.page-banner-title {
  max-width: 850px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-shadow: none;
}

.page-breadcrumb,
.article-hero__breadcrumb {
  display: none !important;
}

.contact-page-grid {
  gap: 1.5rem;
}

.contact-page-grid > *,
.contact-details-premium {
  min-width: 0;
}

.contact-details-premium {
  overflow-wrap: anywhere;
}

.contact-card-premium,
.contact-form-panel {
  width: 100%;
  border: 1px solid rgba(64, 92, 245, 0.1);
  box-shadow: var(--shadow-card);
}

.contact-card-premium {
  border-radius: 24px;
}

.contact-icon-premium {
  color: #ffffff;
  background: var(--gradient-btn);
}

.contact-form-panel {
  border-radius: 30px;
}

.form-input,
.form-select,
.form-textarea {
  border-color: transparent;
  border-radius: 12px;
  background: #f4f5fa;
}

.btn-whatsapp-submit {
  border-radius: 12px;
}

.full-width-map-section {
  left: 0;
  right: auto;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  border: 0;
}

.main-footer {
  padding-top: 4.5rem;
  color: #aeb9d9;
  background:
    radial-gradient(circle at 86% 12%, rgba(117, 152, 255, 0.24), transparent 24rem),
    #08072d;
}

.footer-inner {
  display: grid;
  grid-template-columns:
    minmax(160px, 0.95fr)
    repeat(4, minmax(115px, 0.78fr))
    minmax(280px, 1.4fr);
  gap: clamp(1.2rem, 1.8vw, 2.5rem);
}

.footer-logo-wrap a {
  min-width: 188px;
  height: 60px;
  display: grid;
  grid-template-columns: 44px 1fr;
  color: #ffffff;
  background: transparent;
  padding: 0;
}

.footer-logo-wrap a::before {
  content: "Ç";
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
}

.footer-logo-wrap a::after {
  content: "ÇELEBİ\A MÜHENDİSLİK";
  white-space: pre;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 0.92;
  font-weight: 900;
}

.footer-logo-img {
  display: none;
}

.footer-contact-box {
  background: rgba(255, 255, 255, 0.055);
}

.footer-contact-title::before {
  background: #ff8652;
}

.back-to-top-btn {
  border-radius: 12px;
  background: #ffffff;
  color: var(--color-corporate-navy);
  box-shadow: none;
}

.floating-actions {
  right: 1.25rem;
  bottom: 1.25rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  border: 4px solid #ffffff;
}

.js .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1240px) {
  .nav-link {
    font-size: 0.78rem;
  }

  .header-btn {
    padding-inline: 1rem;
  }

  .footer-inner {
    grid-template-columns: repeat(4, minmax(0, 0.8fr)) minmax(320px, 1.35fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact-col {
    grid-column: auto;
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .hero-slider-container {
    min-height: 700px;
  }

  .stats-section {
    margin-top: -34px;
  }

  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-border);
  }

  .full-showcase-cover {
    margin-inline: 0;
    border-radius: 0;
  }

  .about-bright-section {
    margin-inline: 0;
    border-radius: 0;
  }

  .engineering-cta {
    margin-inline: 1rem;
    border-radius: 34px 34px 0 0;
  }

  .engineering-cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .engineering-cta__actions {
    justify-content: flex-start;
  }

  .page-banner {
    margin-inline: 0;
    border-radius: 0;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 86px;
  }

  .nav-container {
    height: 78px;
  }

  .brand-logo {
    min-width: 170px;
    grid-template-columns: 38px 1fr;
  }

  .brand-logo::before {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: 1.25rem;
  }

  .brand-logo::after {
    font-size: 1.05rem;
  }

  .mobile-toggle span {
    background: #ffffff;
  }

  .nav-menu {
    top: 78px;
    height: calc(100vh - 78px);
    padding: 1.25rem;
    color: var(--color-brand-black);
    background: #ffffff;
  }

  .nav-menu .nav-item {
    display: flex;
  }

  .nav-link,
  .nav-link.active,
  .nav-item:hover > .nav-link {
    color: var(--color-brand-black);
  }

  .nav-link {
    font-size: 1rem;
  }

  .arrow-icon {
    width: 18px;
    height: 18px;
  }

  .header-btn {
    display: none;
  }

  .hero-slider-container {
    height: auto;
    min-height: 690px;
    max-height: none;
    margin: 78px 0 0;
    border-radius: 0;
  }

  .hero-slide {
    padding: 5rem 0 8rem;
  }

  .hero-slide-overlay {
    background: linear-gradient(90deg, rgba(8, 6, 62, 0.96), rgba(18, 18, 88, 0.74));
  }

  .hero-title {
    font-size: clamp(2.55rem, 11vw, 4.1rem);
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .slider-controls {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .page-banner {
    height: 410px;
    min-height: 410px;
    margin: 78px 0 0;
    border-radius: 0;
  }

  .carousel-image-card {
    flex-basis: calc((100% - 1.25rem) / 2);
    min-width: calc((100% - 1.25rem) / 2);
  }

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

  .footer-brand,
  .footer-contact-col {
    grid-column: 1 / -1;
  }

  .footer-col--sectors {
    grid-column: 1 / -1;
  }

  .footer-col--sectors .footer-col-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }
}

@media (max-width: 680px) {
  .container {
    padding-inline: 1rem;
  }

  .hero-slider-container {
    min-height: 720px;
  }

  .hero-slide {
    background-position: 62% center;
    padding-block: 3.8rem 8rem;
  }

  .hero-title {
    margin-bottom: 1.2rem;
  }

  .hero-title span::after {
    width: 72px;
    height: 4px;
    margin-top: 0.7rem;
  }

  .pulse-badge {
    align-items: flex-start;
    max-width: 100%;
    line-height: 1.45;
  }

  .hero-cta-group {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta-group a {
    width: 100%;
  }

  .stats-section {
    margin-top: -28px;
    padding-inline: 0.75rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 20px;
  }

  .stat-card {
    min-height: 122px;
    padding: 1.25rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.62rem;
  }

  .section-padding,
  .services-carousel-section,
  .home-blog-section {
    padding-block: 4.5rem;
  }

  .section-header {
    text-align: left;
  }

  .section-subtitle {
    margin-inline: 0;
  }

  .full-showcase-cover {
    min-height: auto;
    margin: 4rem 0;
    padding: 4.5rem 0.15rem;
    border-radius: 0;
  }

  .about-bright-section {
    min-height: auto;
    margin: 4rem 0;
    padding: 3.5rem 0.15rem;
    border-radius: 0;
  }

  .full-showcase-cover::before {
    background: linear-gradient(90deg, rgba(11, 7, 84, 0.94), rgba(17, 12, 105, 0.83));
  }

  .showcase-right-content .section-title {
    font-size: 2.35rem;
  }

  .about-overlay-wrapper .about-title {
    font-size: 2.15rem;
  }

  .about-feature-cards-overlay {
    grid-template-columns: 1fr;
  }

  .about-quote-box-glass {
    padding: 1.35rem;
  }

  .carousel-image-card {
    flex-basis: 88%;
    min-width: 88%;
    height: 500px;
  }

  .floating-info-card {
    padding: 1.2rem;
  }

  .engineering-cta {
    margin: 0;
    padding-block: 4rem;
    border-radius: 30px 30px 0 0;
  }

  .engineering-cta h2 {
    font-size: 2.3rem;
  }

  .engineering-cta__lead {
    font-size: 0.94rem;
  }

  .quick-quote-card {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .quick-quote-form {
    grid-template-columns: 1fr;
  }

  .quick-quote__field--full,
  .quick-quote__submit,
  .quick-quote__privacy,
  .quick-quote__status {
    grid-column: 1;
  }

  .contact-page-grid {
    margin-block: 2rem;
  }

  .contact-form-panel {
    padding: 2rem 1.25rem;
  }

  .contact-card-premium {
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
  }

  .contact-icon-premium {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

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

  .footer-brand,
  .footer-contact-col,
  .footer-col--sectors {
    grid-column: auto;
  }

  .footer-col--sectors .footer-col-links {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal-item {
    opacity: 1;
    transform: none;
  }
}

.hero-slider-container,
.hero-slide,
.hero-slide-overlay,
.page-banner,
.full-showcase-cover,
.about-bright-section,
.engineering-cta {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  border-radius: 0;
}

.service-card::before {
  content: none;
}

.about-feature-card-glass {
  border-radius: 22px;
}

.about-quote-box-glass {
  border-radius: 0 26px 26px 0;
}

.blog-sidebar,
.contact-card-premium {
  border-radius: 28px;
}

.carousel-image-card {
  border-radius: 36px;
}

.contact-form-panel,
.service-card {
  border-radius: 34px !important;
}

.floating-info-card,
.footer-contact-box {
  border-radius: 26px;
}

.home-blog-card,
.quick-quote-card {
  border-radius: 32px;
}

.limak-mega-intro {
  border-radius: 20px;
}

.stats-grid {
  border-radius: 30px;
}

.nav-item--compact {
  position: relative;
}

.nav-item--compact .nav-compact-panel {
  left: 0;
  right: auto;
  width: 320px;
  margin: 0;
  border: 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 26px 60px rgba(11, 7, 84, 0.2);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.nav-item--compact .nav-compact-panel--wide {
  width: 360px;
}

.nav-compact-links {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.nav-compact-links a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  color: var(--color-brand-black);
  font-size: 0.9rem;
  font-weight: 750;
  border-left: 3px solid transparent;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.nav-compact-links a:hover,
.nav-compact-links a:focus-visible {
  color: var(--color-corporate-navy);
  background: #f0f2ff;
  border-left-color: var(--color-flame);
  outline: none;
}

.nav-item--compact:focus-within > .limak-mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: none;
}

@media (max-width: 1180px) {
  .nav-container {
    height: 86px;
    padding-inline: 1.25rem;
  }

  .header-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 86px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 86px);
    padding: 1.25rem clamp(1rem, 4vw, 2rem) 2rem;
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    color: var(--color-brand-black);
    background: #ffffff;
    box-shadow: var(--shadow-navbar);
    transition: left var(--transition-normal);
    z-index: 999;
  }

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

  .nav-item,
  .nav-item--compact {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 0;
    color: var(--color-brand-black);
    font-size: 1rem;
    border-bottom: 1px solid #eceef6;
    border-radius: 0;
  }

  .nav-link:hover,
  .nav-link.active,
  .nav-item:hover > .nav-link,
  .nav-item.is-mega-open > .nav-link {
    color: var(--color-corporate-navy);
  }

  .nav-link::after {
    display: none;
  }

  .nav-item--compact .nav-compact-panel,
  .nav-item--compact .nav-compact-panel--wide {
    position: static;
    display: none;
    width: 100%;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    pointer-events: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-item.active-mobile .nav-compact-panel {
    display: block;
  }

  .nav-item.active-mobile .arrow-icon {
    transform: rotate(180deg);
  }

  .nav-compact-panel::before {
    display: none;
  }

  .nav-compact-links {
    gap: 0.15rem;
    padding: 0.4rem 0 0.8rem 0.7rem;
  }

  .nav-compact-links a {
    min-height: 42px;
    padding: 0.65rem 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .nav-container {
    height: 78px;
  }

  .nav-menu {
    top: 78px;
    height: calc(100vh - 78px);
  }
}

.banner-kurumsal {
  background-image: url('images/kurumsal.webp');
}

.banner-hizmetler {
  background-image: url('images/hizmetler.webp');
}

.banner-projeler {
  background-image: url('images/projeler.webp');
}

.banner-sektorler {
  background-image: url('images/sektorler.webp');
}

.banner-teknik {
  background-image: url('images/teknik.webp');
}

.banner-iletisim {
  background-image: url('images/iletisim.webp');
}

:root {
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --content-max: 1400px;
  --reading-max: 68ch;
  --section-space: clamp(4.5rem, 7vw, 7rem);
  --shadow-card: 0 18px 48px rgba(27, 31, 92, 0.08);
  --shadow-hover: 0 24px 56px rgba(29, 34, 111, 0.14);
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

[id] {
  scroll-margin-top: 108px;
}

p,
.section-subtitle,
.card-description,
.blog-card-excerpt,
.hero-description {
  text-wrap: pretty;
}

.container {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 3rem);
}

.header-wrapper {
  contain: layout style;
}

.nav-container {
  width: min(100%, 1480px);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-link,
.header-btn,
.btn-primary,
.btn-outline,
.blog-card-btn,
.card-footer-link,
.floating-card-btn,
.back-to-top-btn,
.social-circle-btn {
  min-height: 44px;
}

.hero-slider-container {
  height: min(760px, calc(100svh - 86px));
  min-height: 640px;
  max-height: 760px;
}

.hero-slide {
  padding-block: clamp(3.5rem, 6vh, 5rem) clamp(6.5rem, 10vh, 7.5rem);
}

.hero-title {
  max-width: 13ch;
  font-size: clamp(3rem, 4.6vw, 4.65rem);
  line-height: 1;
}

.hero-description {
  max-width: var(--reading-max);
}

.hero-slide[aria-hidden="true"] {
  visibility: hidden;
  pointer-events: none;
}

.hero-slide[aria-hidden="false"] {
  visibility: visible;
}

.stats-grid,
.service-card,
.home-blog-card,
.contact-card-premium,
.contact-form-panel,
.quick-quote-card,
.blog-sidebar,
.footer-contact-box {
  border-radius: var(--radius-lg) !important;
}

.service-card,
.home-blog-card,
.contact-card-premium,
.contact-form-panel {
  box-shadow: var(--shadow-card);
}

.service-card {
  min-height: 390px;
  padding: clamp(1.7rem, 2.5vw, 2.3rem);
}

.service-card:hover,
.home-blog-card:hover,
.contact-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-icon-wrap,
.contact-icon-premium {
  border-radius: var(--radius-sm);
}

.btn-primary,
.showcase-right-content .btn-primary {
  color: #ffffff;
  background: var(--color-flame);
  box-shadow: 0 14px 34px rgba(255, 106, 43, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.showcase-right-content .btn-primary:hover,
.showcase-right-content .btn-primary:focus-visible {
  color: #ffffff;
  background: var(--color-flame-hover);
  box-shadow: 0 16px 36px rgba(255, 106, 43, 0.36);
}

.hero-cta-group .btn-whatsapp-hero {
  color: #ffffff;
  border-color: #25d366;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28);
}

.hero-cta-group .btn-whatsapp-hero:hover,
.hero-cta-group .btn-whatsapp-hero:focus-visible {
  color: #ffffff;
  border-color: #1ebe5d;
  background: #1ebe5d;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.36);
}

.card-footer-link,
.floating-card-btn,
.blog-card-btn {
  width: fit-content;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: #ffffff;
  background: var(--color-flame);
  box-shadow: 0 10px 24px rgba(255, 106, 43, 0.2);
}

.service-card:hover .card-footer-link,
.service-card .card-footer-link:focus-visible,
.floating-card-btn:hover,
.floating-card-btn:focus-visible,
.home-blog-card:hover .blog-card-btn,
.blog-card-btn:hover,
.blog-card-btn:focus-visible {
  color: #ffffff;
  background: var(--color-flame-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 106, 43, 0.3);
}

.section-padding,
.services-carousel-section,
.home-blog-section {
  padding-block: var(--section-space);
}

.section-header {
  margin-bottom: clamp(2.25rem, 4vw, 3.75rem);
}

.section-title {
  max-width: 22ch;
  font-size: clamp(2.15rem, 3.7vw, 3.7rem);
}

.section-subtitle {
  max-width: var(--reading-max);
}

.full-showcase-cover,
.about-bright-section,
.page-banner,
.hero-slider-container,
.engineering-cta {
  border-radius: 0 !important;
}

.full-showcase-cover {
  margin-block: clamp(3.5rem, 5vw, 5rem);
  padding-block: clamp(3.25rem, 5vw, 4.5rem);
}

.about-bright-section {
  margin-bottom: clamp(3.5rem, 5vw, 5rem);
  padding-block: clamp(3.5rem, 5vw, 4.75rem);
}

.page-banner + .about-bright-section {
  margin-top: clamp(1.25rem, 2vw, 2rem);
}

.page-banner {
  height: 440px;
  min-height: 440px;
  padding-block: clamp(5rem, 7vw, 6.5rem);
}

.page-banner-title {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 1.02;
}

.carousel-track {
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(64, 92, 245, 0.35) transparent;
}

.carousel-image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-corporate-dark);
}

.carousel-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-image-card::before {
  z-index: 1;
}

.floating-info-card {
  z-index: 2;
  border-radius: var(--radius-md);
}

.contact-page-grid {
  align-items: start;
}

.contact-form-panel {
  position: sticky;
  top: 112px;
}

.form-input,
.form-select,
.form-textarea {
  min-height: 50px;
  border: 1px solid #e4e6f0;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: #cdd2e8;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-corporate-blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(64, 92, 245, 0.12);
  outline: 0;
}

.form-input[aria-invalid="true"],
.form-select[aria-invalid="true"],
.form-textarea[aria-invalid="true"] {
  border-color: #c9362b;
  box-shadow: 0 0 0 4px rgba(201, 54, 43, 0.1);
}

.field-error {
  display: block;
  margin-top: 0.45rem;
  color: #a82219;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-status {
  min-height: 1.3rem;
  margin: 0.25rem 0 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #a82219;
}

.btn-whatsapp-submit[aria-busy="true"],
.quick-quote__submit[aria-busy="true"] {
  cursor: wait;
  opacity: 0.78;
}

.corporate-contact-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  color: var(--color-text-main);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.corporate-contact-note strong {
  color: var(--color-corporate-navy);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.corporate-contact-note a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: var(--color-flame);
  padding-inline: 1rem;
  border-radius: 10px;
  font-weight: 800;
}

.footer-contact-item a {
  color: inherit;
  overflow-wrap: anywhere;
}

.footer-contact-item a:hover,
.footer-contact-item a:focus-visible {
  color: #ffffff;
}

.footer-copy {
  line-height: 1.6;
}

.full-width-map-section iframe {
  display: block;
  width: 100%;
  min-height: 440px;
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .nav-container {
    padding-inline: 1.25rem;
  }

  .nav-menu > .nav-item {
    display: flex;
  }

  .nav-link {
    padding-inline: 0.58rem;
    font-size: 0.74rem;
  }

  .header-btn {
    display: none;
  }
}

@media (max-width: 1180px) {
  .nav-menu {
    left: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0.28s;
  }

  .nav-menu.active {
    left: 0;
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .contact-form-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .hero-slider-container {
    height: auto;
    min-height: 630px;
    max-height: none;
  }

  .hero-slide {
    padding-block: 3.75rem 6.75rem;
  }

  .page-banner {
    height: 360px;
    min-height: 360px;
    padding-block: 4.5rem;
  }

  .page-banner-title {
    font-size: clamp(2.5rem, 9vw, 4rem);
  }

  .footer-inner {
    gap: 2.5rem 1.5rem;
  }
}

@media (max-width: 680px) {
  .container {
    padding-inline: clamp(1rem, 5vw, 1.35rem);
  }

  .hero-slider-container {
    min-height: 650px;
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(2.45rem, 12.5vw, 3.4rem);
    letter-spacing: -0.045em;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .page-banner {
    height: 340px;
    min-height: 340px;
    padding-block: 3.75rem;
  }

  .full-showcase-cover,
  .about-bright-section {
    padding-inline: 0;
  }

  .showcase-right-content .section-title,
  .about-overlay-wrapper .about-title {
    font-size: clamp(2rem, 9.5vw, 2.6rem);
  }

  .service-card {
    min-height: 0;
  }

  .carousel-image-card {
    height: 460px;
    border-radius: var(--radius-md);
  }

  .corporate-contact-note {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .corporate-contact-note a {
    width: 100%;
    justify-content: center;
  }

  .full-width-map-section iframe {
    min-height: 360px;
  }
}

@media (max-width: 430px) {
  .hero-slider-container {
    min-height: 750px;
  }

  .hero-slide {
    padding-block: 3rem 6.25rem;
  }

  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3rem);
  }

  .hero-cta-group {
    gap: 0.65rem;
  }

  .page-banner {
    height: 320px;
    min-height: 320px;
  }

  .page-banner-title {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .stats-grid {
    border-radius: var(--radius-md) !important;
  }

  .stat-card {
    padding: 1.1rem;
  }

  .contact-card-premium,
  .contact-form-panel,
  .quick-quote-card {
    border-radius: var(--radius-md) !important;
  }

  .floating-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

.article-detail-page {
  background: #f4f5fa;
}

.article-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(9, 14, 32, 0.70) 0%, rgba(15, 23, 42, 0.48) 55%, rgba(15, 23, 42, 0.22) 100%),
    var(--article-hero-image) center / cover no-repeat;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 6, 62, 0.08), rgba(8, 6, 62, 0.54));
}

.article-hero__inner {
  display: flex;
  width: min(100% - 2.5rem, 1240px);
  margin-inline: auto;
  padding-block: clamp(5.5rem, 10vw, 8rem) clamp(4rem, 7vw, 6rem);
  flex-direction: column;
  justify-content: flex-end;
}

.article-hero__breadcrumb {
  display: flex;
  margin-bottom: 1.25rem;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.article-hero__breadcrumb a {
  color: #ffffff;
  font-weight: 700;
}

.article-hero__category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-pill);
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-hero__category::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-flame);
  content: "";
}

.article-hero__title {
  max-width: 20ch;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 5.4vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.article-hero__meta {
  display: flex;
  margin-top: 1.5rem;
  align-items: center;
  gap: 0.8rem 1.4rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.article-section {
  padding-block: clamp(3.5rem, 6vw, 6.5rem);
}

.article-layout {
  display: grid;
  width: min(100% - 2.5rem, 1300px);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: start;
}

.article-content {
  min-width: 0;
  padding: clamp(1.8rem, 4vw, 4rem);
  border: 1px solid rgba(16, 18, 66, 0.08);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.article-content > :first-child {
  margin-top: 0;
}

.article-lead {
  margin-bottom: 2rem;
  color: #000000 !important;
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  font-weight: 600;
  line-height: 1.75;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin: 2.5rem 0 1rem;
  color: #1E293B !important;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.article-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.article-content h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.article-content p,
.article-content li {
  color: #000000 !important;
  font-size: 1.02rem;
  line-height: 1.85;
}

.article-content ul,
.article-content ol {
  display: grid;
  margin: 1rem 0 1.75rem;
  padding-left: 1.25rem;
  gap: 0.7rem;
}

.article-summary,
.article-callout {
  margin-block: 2rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border-radius: var(--radius-md);
}

.article-summary {
  border: 1px solid rgba(255, 106, 43, 0.22);
  background: #fff7f3;
}

.article-summary strong,
.article-callout strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #1E293B !important;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.article-summary p,
.article-callout p {
  margin: 0;
  color: #000000 !important;
}

.article-callout {
  border-left: 5px solid var(--color-flame);
  background: #f1f3ff;
}

.article-checklist {
  display: grid;
  margin-block: 1.5rem 2rem;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  list-style: none;
}

.article-checklist li {
  position: relative;
  margin: 0;
  padding: 1rem 1rem 1rem 2.8rem;
  border: 1px solid rgba(16, 18, 66, 0.08);
  border-radius: var(--radius-sm);
  background: #f8f9fd;
}

.article-checklist li::before {
  position: absolute;
  top: 1.05rem;
  left: 1rem;
  display: grid;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  place-items: center;
  color: #ffffff;
  background: var(--color-flame);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.article-table-wrap {
  margin-block: 1.5rem 2rem;
  overflow-x: auto;
  border: 1px solid rgba(16, 18, 66, 0.1);
  border-radius: var(--radius-md);
}

.article-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #ffffff;
}

.article-table th,
.article-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(16, 18, 66, 0.08);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.article-table th {
  color: #ffffff;
  background: var(--color-corporate-navy);
  font-size: 0.9rem;
}

.article-table td {
  color: #000000 !important;
  font-size: 0.94rem;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-service-link {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  background: var(--color-flame);
  box-shadow: 0 12px 28px rgba(255, 106, 43, 0.24);
  font-weight: 800;
  transition: var(--transition-normal);
}

.article-service-link:hover,
.article-service-link:focus-visible {
  color: #ffffff;
  background: var(--color-flame-hover);
  transform: translateY(-2px);
}

.article-disclaimer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(16, 18, 66, 0.1);
  color: #000000 !important;
  font-size: 0.88rem;
  line-height: 1.7;
}

.article-faq {
  margin-block: 1.5rem 2.5rem;
}

.article-faq details {
  margin-bottom: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(16, 18, 66, 0.1);
  border-radius: var(--radius-sm);
  background: #f8fafc;
}

.article-faq details summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.08rem;
  color: #1E293B !important;
}

.article-faq details summary strong {
  color: #1E293B !important;
}

.article-faq details p {
  margin-top: 0.75rem;
  margin-bottom: 0;
  color: #000000 !important;
  font-size: 1rem;
  line-height: 1.7;
}

.article-cta {
  margin-top: 3rem;
  padding: 2.2rem 2.5rem;
  border-radius: var(--radius-md);
  background: #f1f5f9;
  border-left: 5px solid var(--color-corporate-blue);
}

.article-cta h2,
.article-cta h3,
.article-cta h4 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  color: #1E293B !important;
  font-size: 1.45rem;
}

.article-cta p {
  margin-bottom: 1.25rem;
  color: #000000 !important;
  font-size: 1.02rem;
}

.article-sidebar {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-sidebar__box,
.article-sidebar__card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(9, 30, 94, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(9, 30, 94, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-sidebar__box:hover,
.article-sidebar__card:hover {
  box-shadow: 0 16px 36px rgba(9, 30, 94, 0.09), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.article-sidebar__box--contact,
.article-sidebar__box--links {
  border-top: 4px solid var(--color-flame);
}

.sidebar-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-flame);
  background: rgba(255, 111, 0, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.6rem;
}

.sidebar-title,
.article-sidebar__box h2,
.article-sidebar__box h3,
.article-sidebar__box h4,
.article-sidebar__card h2,
.article-sidebar__card h3,
.article-sidebar__card h4 {
  margin: 0 0 0.35rem 0;
  color: #1E293B !important;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.3;
}

.sidebar-subtitle {
  font-size: 0.88rem;
  color: #000000 !important;
  margin: 0 0 1.25rem 0;
  line-height: 1.5;
  font-weight: 500;
}

.article-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 1.5rem 0;
  padding: 0;
  list-style: none;
}

.article-sidebar__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  color: #000000 !important;
  font-size: 0.88rem;
  font-weight: 600;
  min-width: 0;
  overflow: hidden;
}

.sidebar-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  border: 1px solid rgba(30, 41, 59, 0.12);
  color: #1E293B;
  transition: all 0.25s ease;
}

.sidebar-icon svg {
  display: block;
  stroke: #1E293B;
  color: #1E293B;
  transition: stroke 0.25s ease, fill 0.25s ease, transform 0.25s ease;
}

.article-sidebar__list li:hover .sidebar-icon {
  background: #1E293B;
  border-color: #1E293B;
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.22);
  transform: translateY(-1px);
}

.article-sidebar__list li:hover .sidebar-icon svg,
.article-sidebar__list li:hover .sidebar-icon svg * {
  stroke: #ffffff !important;
  color: #ffffff !important;
}

.article-sidebar__list li:hover .sidebar-icon svg {
  transform: scale(1.08);
}

.article-sidebar__list li:hover .sidebar-icon circle {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

.article-sidebar__list a {
  color: #1E293B;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  word-break: break-word;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.article-sidebar__list span {
  font-size: 0.86rem;
  word-break: break-word;
}

.article-sidebar__list a:hover {
  color: var(--color-corporate-blue);
}

.article-sidebar__btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF6F00 0%, #E06200 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 111, 0, 0.28);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-sidebar__btn:hover {
  background: linear-gradient(135deg, #E06200 0%, #C85600 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 111, 0, 0.38);
  color: #ffffff !important;
}

.article-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.75rem 0 0 0;
  padding: 0;
  list-style: none;
}

.article-sidebar__links li {
  margin: 0;
}

.article-sidebar__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #1E293B !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-sidebar__links a svg {
  transition: transform 0.25s ease, color 0.25s ease;
  color: var(--color-flame);
}

.article-sidebar__links a:hover {
  background: #fff8f3;
  border-color: rgba(255, 111, 0, 0.25);
  color: var(--color-flame) !important;
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(255, 111, 0, 0.08);
}

.article-sidebar__links a:hover svg {
  transform: translateX(3px);
  color: var(--color-flame);
}

.article-toc {
  display: grid;
  gap: 0.35rem;
}

.article-toc a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--color-corporate-navy);
  background: #fff1ea;
}

.article-source-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.7rem;
  list-style: none;
}

.article-source-list a {
  color: var(--color-corporate-blue);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.55;
}

.article-sidebar__cta {
  color: #ffffff;
  background: linear-gradient(145deg, var(--color-corporate-navy), #2810c8);
}

.article-sidebar__cta h2,
.article-sidebar__cta p {
  color: #ffffff;
}

.article-sidebar__cta p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.82;
}

.article-sidebar__cta a {
  display: inline-flex;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  color: #ffffff;
  background: var(--color-flame);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 960px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 680px) {
  .article-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .article-hero {
    min-height: 560px;
  }

  .article-hero__inner,
  .article-layout {
    width: min(100% - 1.5rem, 1240px);
  }

  .article-hero__inner {
    padding-block: 4.5rem 3.5rem;
  }

  .article-hero__title {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .article-content {
    padding: 1.35rem;
    border-radius: var(--radius-md);
  }

  .article-checklist,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-sidebar__card:first-child {
    grid-column: auto;
  }
}

.contact-card-premium {
  transition: none !important;
}

.contact-card-premium:hover {
  transform: none !important;
  box-shadow: var(--shadow-card) !important;
}

.contact-icon-premium,
.contact-card-premium:hover .contact-icon-premium {
  color: #ffffff;
  background: var(--color-flame);
  box-shadow: none !important;
}

.contact-details-premium a {
  color: #334155 !important;
  font-weight: 750;
}

.contact-details-premium a:hover,
.contact-details-premium a:focus-visible {
  color: var(--color-flame) !important;
}

.btn-whatsapp-submit {
  color: #ffffff;
  background: var(--color-flame);
  box-shadow: 0 14px 34px rgba(255, 106, 43, 0.28);
}

.btn-whatsapp-submit:hover,
.btn-whatsapp-submit:focus-visible {
  color: #ffffff;
  background: var(--color-flame-hover);
  box-shadow: 0 16px 38px rgba(255, 106, 43, 0.36);
}

.header-wrapper,
.header-wrapper.scrolled,
.main-footer {
  background: var(--gradient-navbar);
}

.main-footer {
  color: rgba(255, 255, 255, 0.82);
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.012em;
}

.nav-compact-links a {
  font-size: 0.95rem;
  font-weight: 750;
}

@media (max-width: 1180px) {
  .nav-link {
    font-size: 1.08rem;
    font-weight: 800;
  }

  .nav-compact-links a {
    font-size: 1rem;
    font-weight: 750;
  }
}

.engineering-cta {
  max-width: none;
  margin: 0;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  color: var(--color-corporate-navy);
  background: #ffffff;
  overflow: visible;
}

.engineering-cta::before,
.engineering-cta::after {
  display: none;
}

.engineering-cta__inner {
  width: min(calc(100% - 3rem), 1380px);
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e7e9e4;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(23, 31, 45, 0.09);
}

.quick-quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.75rem);
  color: var(--color-corporate-navy);
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.quick-quote-card::before {
  display: none;
}

.quick-quote-card__header {
  display: block;
  margin-bottom: 2rem;
}

.quick-quote-card__header .engineering-cta__eyebrow {
  position: relative;
  margin-bottom: 1.15rem;
  padding-left: 2.15rem;
  color: var(--color-flame);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.quick-quote-card__header .engineering-cta__eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.55rem;
  height: 2px;
  background: var(--color-flame);
  transform: translateY(-50%);
}

.quick-quote-card h2 {
  max-width: 620px;
  margin: 0;
  color: var(--color-corporate-navy);
  font-size: clamp(2.7rem, 4.7vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.quick-quote-card__header p {
  max-width: 650px;
  margin-top: 1.2rem;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.quick-quote-form {
  gap: 1rem;
}

.quick-quote__field {
  gap: 0.48rem;
}

.quick-quote__field label {
  font-size: 0.76rem;
  font-weight: 800;
}

.quick-quote__field input,
.quick-quote__field select,
.quick-quote__field textarea {
  border-color: #dfe3df;
  border-radius: 16px;
  background: #f7f8f5;
  font-size: 0.9rem;
}

.quick-quote__field input,
.quick-quote__field select {
  min-height: 54px;
  padding-inline: 1rem;
}

.quick-quote__field textarea {
  min-height: 118px;
  padding: 0.95rem 1rem;
}

.quick-quote__field input:hover,
.quick-quote__field select:hover,
.quick-quote__field textarea:hover {
  border-color: #c9d0ca;
}

.quick-quote__field input:focus,
.quick-quote__field select:focus,
.quick-quote__field textarea:focus {
  border-color: var(--color-flame);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 106, 43, 0.12);
}

.quick-quote__consent {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--color-text-muted);
  font-size: 0.73rem;
  line-height: 1.5;
}

.quick-quote__consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--color-flame);
}

.quick-quote__consent label {
  flex: 1 1 240px;
  cursor: pointer;
}

.quick-quote__consent .field-error {
  order: 3;
  flex-basis: 100%;
  margin: -0.25rem 0 0;
  padding-left: 1.85rem;
}

.quick-quote__submit {
  width: fit-content;
  min-width: 220px;
  min-height: 54px;
  padding-inline: 1.35rem;
  border-radius: 999px;
}

.quick-quote__status {
  min-height: 1.1rem;
}

.engineering-cta__visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #dfe4e2;
}

.engineering-cta__visual picture,
.engineering-cta__visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.engineering-cta__visual img {
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.engineering-cta__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(8, 17, 31, 0.74));
  pointer-events: none;
}

.engineering-cta__visual:hover img {
  transform: scale(1.025);
}

.engineering-cta__visual figcaption {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #ffffff;
}

.engineering-cta__visual figcaption span {
  color: #ffb08e;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.engineering-cta__visual figcaption strong {
  max-width: 16ch;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.float-btn.whatsapp {
  width: 64px;
  height: 64px;
  overflow: visible;
  color: #ffffff;
  background: #25d366;
  border: 4px solid #ffffff;
  box-shadow:
    0 10px 28px rgba(18, 140, 126, 0.36),
    0 0 0 1px rgba(7, 94, 84, 0.12);
}

.float-btn.whatsapp svg {
  display: none;
}

.float-btn.whatsapp::before {
  content: "";
  width: 34px;
  height: 34px;
  background: url("images/whatsapp-brand.svg") center / contain no-repeat;
}

.float-btn.whatsapp:hover,
.float-btn.whatsapp:focus-visible {
  color: #ffffff;
  background: #128c7e;
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 14px 32px rgba(18, 140, 126, 0.42),
    0 0 0 1px rgba(7, 94, 84, 0.16);
}

.float-btn.whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.3);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .engineering-cta__inner {
    width: min(calc(100% - 2rem), 780px);
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .engineering-cta__visual {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .engineering-cta {
    padding-block: 2.25rem;
  }

  .engineering-cta__inner {
    width: calc(100% - 1rem);
    border-radius: 24px;
  }

  .quick-quote-card {
    padding: 1.5rem;
  }

  .quick-quote-card__header {
    margin-bottom: 1.5rem;
  }

  .quick-quote-card h2 {
    font-size: clamp(2.4rem, 13vw, 3.2rem);
  }

  .quick-quote-form {
    grid-template-columns: 1fr;
  }

  .quick-quote__field--full,
  .quick-quote__consent,
  .quick-quote__submit,
  .quick-quote__status {
    grid-column: auto;
  }

  .quick-quote__submit {
    width: 100%;
  }

  .engineering-cta__visual {
    min-height: 330px;
  }

  .float-btn.whatsapp {
    width: 58px;
    height: 58px;
  }

  .float-btn.whatsapp::before {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .engineering-cta__visual img,
  .float-btn.whatsapp {
    transition: none;
  }
}

.footer-col-heading,
.footer-contact-title {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 850;
}

.footer-col-links a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.footer-contact-item,
.footer-contact-item a {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
}

.footer-contact-icon,
.social-circle-btn {
  color: #ffffff;
}

.footer-copy {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-bottom-links a {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 420px) {
  .footer-contact-item a[href^="mailto:"] {
    font-size: 0.92rem;
    letter-spacing: -0.025em;
  }
}

.brand-logo {
  flex: 0 0 108px;
  min-width: 108px;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: inherit;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand-logo::before,
.brand-logo::after,
.footer-logo-wrap a::before,
.footer-logo-wrap a::after {
  content: none !important;
}

.brand-logo-img,
.footer-logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 4px 12px rgba(9, 30, 94, 0.16));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-logo:hover {
  opacity: 1;
  background: transparent !important;
  transform: scale(1.03);
}

.footer-logo-wrap a {
  width: 140px;
  height: 140px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: transform 0.25s ease;
}

.footer-logo-wrap a:hover {
  background: transparent !important;
  transform: scale(1.04);
}

.footer-logo-wrap {
  background: transparent !important;
}

.nav-container {
  height: 128px;
}

.hero-slider-container {
  height: min(760px, calc(100svh - 128px));
  margin-top: 128px;
}

.page-banner {
  margin-top: 128px;
}

.article-detail-page #main-content {
  padding-top: 128px;
}

@media (max-width: 1180px) {
  .nav-menu {
    top: 128px;
    height: calc(100svh - 128px);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 120px;
  }

  .nav-container {
    height: 104px;
  }

  .brand-logo {
    flex-basis: 86px;
    min-width: 86px;
    width: 86px;
    height: 86px;
    padding: 0;
    border-radius: 0;
  }

  .nav-menu {
    top: 104px;
    height: calc(100svh - 104px);
  }

  .hero-slider-container {
    height: auto;
    margin-top: 104px;
  }

  .page-banner {
    margin-top: 104px;
  }

  .article-detail-page #main-content {
    padding-top: 104px;
  }

  .footer-logo-wrap a {
    width: 120px;
    height: 120px;
    padding: 0;
    border-radius: 0;
  }
}

@media (max-width: 430px) {
  html {
    scroll-padding-top: 114px;
  }

  .nav-container {
    height: 98px;
  }

  .brand-logo {
    flex-basis: 78px;
    min-width: 78px;
    width: 78px;
    height: 78px;
  }

  .nav-menu {
    top: 98px;
    height: calc(100svh - 98px);
  }

  .hero-slider-container,
  .page-banner {
    margin-top: 98px;
  }

  .article-detail-page #main-content {
    padding-top: 98px;
  }

  .footer-logo-wrap a {
    width: 100px;
    height: 100px;
  }
}

/* ==========================================================================
   WHATSAPP TEAM SELECTION POPUP WIDGET (LUXURY MODAL)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.float-btn.whatsapp {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366 !important;
  color: #FFFFFF !important;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35) !important;
  cursor: pointer;
  border: none !important;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.float-btn.whatsapp:hover {
  background: #20bd5a !important;
  transform: scale(1.08);
}

.wa-popup-card {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: clamp(300px, 88vw, 350px);
  background: #FFFFFF;
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(226, 232, 240, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
  z-index: 1510;
}

.wa-popup-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-popup-header {
  position: relative;
  margin-bottom: 1.2rem;
  padding-right: 1.5rem;
}

.wa-popup-header-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.wa-popup-header-sub {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.4;
}

.wa-popup-close {
  position: absolute;
  top: -4px;
  right: -4px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}

.wa-popup-close:hover {
  color: #1e293b;
}

.wa-popup-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wa-popup-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: #f4fbf6;
  border: 1px solid #d2f1dc;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wa-popup-option:hover {
  background: #e8f7ec;
  border-color: #b5e8c3;
  transform: translateY(-2px);
}

.wa-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f172a;
  border: 1.5px solid #25D366;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.wa-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.wa-option-info {
  flex-grow: 1;
}

.wa-option-name {
  font-size: 0.96rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.wa-option-role {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.15rem;
}

.wa-arrow-icon {
  width: 18px;
  height: 18px;
  color: #16a34a;
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.wa-popup-option:hover .wa-arrow-icon {
  transform: translateX(3px);
  opacity: 1;
}

/* ==========================================================================
   MOBILE LAYOUT & OVERFLOW PROTECTION SYSTEM (2026 STANDARDS)
   ========================================================================== */

/* Global overflow and scaling protection */
html, body {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

img, video, canvas, svg, iframe, object, embed {
  max-width: 100% !important;
  height: auto;
}

/* Text & heading overflow prevention on small screens */
h1, h2, h3, h4, h5, h6,
.hero-title, .page-banner-title, .section-title,
.card-title, .blog-card-title, .article-title, .footer-contact-title {
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

/* Footer Social Row horizontal alignment enforcement */
.footer-social-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0.65rem !important;
  flex-wrap: wrap !important;
  margin-top: 1rem;
}

.social-circle-btn {
  flex-shrink: 0 !important;
  width: 42px !important;
  height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Email address & long links word breaking */
.footer-contact-item a,
.footer-contact-item,
.contact-card a,
.blog-sidebar a {
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}

/* Responsive Breakpoint Adjustments (< 768px, < 480px, < 360px) */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }
  .page-banner-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }
  .container {
    padding-inline: 1.25rem !important;
  }
  .article-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    margin-inline: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem !important;
    line-height: 1.22 !important;
  }
  .page-banner-title {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
  }
  .section-title {
    font-size: 1.55rem !important;
  }
  .container {
    padding-inline: 1rem !important;
  }
  .form-input, .form-select, .form-textarea {
    font-size: 1rem !important; /* Prevents iOS Safari auto-zoom on focus */
    padding: 0.85rem 1rem !important;
  }
  .floating-actions {
    right: 1rem !important;
    bottom: 1rem !important;
  }
  .wa-popup-card {
    width: calc(100vw - 2rem) !important;
    max-width: 340px !important;
    right: 0 !important;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem !important;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.45rem !important;
  }
  .page-banner-title {
    font-size: 1.3rem !important;
  }
  .brand-logo {
    flex-basis: 72px !important;
    min-width: 72px !important;
    width: 72px !important;
    height: 72px !important;
  }
  .footer-logo-wrap a {
    width: 90px !important;
    height: 90px !important;
  }
  .social-circle-btn {
    width: 38px !important;
    height: 38px !important;
  }
}




