/* ================================================================
   DEKATECH - Ana CSS Dosyası
   AYDINLIK TEMA - Modern, Profesyonel Tasarım
   ================================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Değişkenleri (EKSTRA AYDINLIK & MODERN) ---- */
:root {
  --primary:       #0056b3;
  --primary-light: #f0f7ff;
  --primary-dark:  #003d80;
  --secondary:     #1a73e8;
  --accent:        #ff6f00;
  --accent-light:  #fff8f0;
  --dark:          #1a1a2e; /* Sadece footer ve top-bar için */
  --dark2:         #2d2d44;

  --bg-body:       #ffffff;
  --bg-white:      #ffffff;
  --bg-light:      #f8fafc;
  --bg-card:       #ffffff;
  --bg-footer:     #0f172a; /* Tam siyah/koyu lacivert footer */

  --text-dark:     #0f172a;
  --text-body:     #334155;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;
  --text-white:    #ffffff;

  --border:        #f1f5f9;
  --border-light:  #f8fafc;

  --gradient:      linear-gradient(135deg, #0056b3 0%, #1a73e8 100%);
  --gradient-soft: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --gradient-white:linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

  --shadow:        0 10px 30px -12px rgba(0, 0, 0, 0.08);
  --shadow-hover:  0 20px 40px -15px rgba(0, 86, 179, 0.12);
  --shadow-card:   0 4px 6px -1px rgba(0, 0, 0, 0.05);
  
  --radius:        20px; /* Yumuşak hatlar */
  --radius-sm:     12px;
  --radius-lg:     30px;
  --transition:    all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ================================================================
   TOP BAR (Hafif Koyu veya Soft Gri olabilir, kullanıcı siyah footer dediği için burayı soft bırakalım)
   ================================================================ */
.top-bar {
  background: var(--bg-light);
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.top-bar a { color: var(--text-body); font-weight: 500; }
.top-bar a:hover { color: var(--primary); }
.top-bar .top-info { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar .top-info i { color: var(--primary); margin-right: 6px; }
.top-bar .top-social { display: flex; gap: 10px; }
.top-bar .top-social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}
.top-bar .top-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 15px 0 !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.navbar-brand {
  padding: 12px 0;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text-dark) !important;
}
.navbar-brand span { color: var(--primary); }
.navbar-brand .logo-img { height: 40px; }

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  padding: 10px 18px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary) !important; background: var(--primary-light); }
.navbar-nav .nav-link::after { display: none; }

/* Dropdown */
.dropdown-menu {
  background: var(--bg-white) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 8px !important;
  margin-top: 0 !important;
  box-shadow: var(--shadow) !important;
  min-width: 260px !important;
}
.dropdown-item {
  color: var(--text-body) !important;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.88rem !important;
  transition: var(--transition) !important;
}
.dropdown-item:hover {
  background: var(--primary-light) !important;
  color: var(--primary) !important;
  padding-left: 20px !important;
}

.navbar-toggler { border-color: var(--border) !important; padding: 8px; }
.navbar-toggler-icon { filter: none; }

/* Call CTA in Navbar */
.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  border-radius: 6px;
  padding: 10px 20px !important;
  font-weight: 600;
  margin-left: 8px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; color: #fff !important; }

/* ================================================================
   HERO SLIDER (AYDINLIK)
   ================================================================ */
#heroSlider { background: var(--bg-body); }
.hero-slide {
  min-height: 650px;
  background: var(--gradient-white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 1;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; color: var(--text-dark); max-width: 650px; }
.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  border: 1px solid rgba(0,86,179,0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}
.hero-title .highlight { color: var(--accent); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.8;
}
.hero-icon-grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow-card);
}
.hero-icon-item i { color: var(--accent); font-size: 1.2rem; }

.carousel-indicators button { width: 10px !important; height: 10px !important; border-radius: 50% !important; background-color: var(--text-light) !important; border: none !important; }
.carousel-indicators .active { background-color: var(--primary) !important; width: 30px !important; border-radius: 5px !important; }
.carousel-control-prev-icon,
.carousel-control-next-icon { background-color: rgba(255,255,255,0.3); border-radius: 50%; padding: 10px; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary-custom {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 20px -5px rgba(0, 86, 179, 0.3);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: #fff;
}
.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 30px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-custom:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Sayfa içi outline buton (koyu arkaplan dışında) */
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ================================================================
   SECTION STYLES
   ================================================================ */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-header { margin-bottom: 50px; }
.section-header .badge-label {
  display: inline-block;
  background: var(--primary-light);
  border: 1px solid rgba(0,86,179,0.15);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text-light); max-width: 600px; font-size: 1rem; }
.section-divider {
  width: 60px; height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 12px 0 20px;
}

/* Alt Sayfalar İçin Sayfa Banner */
.page-banner {
  background: var(--gradient-soft);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.page-banner h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}
.page-banner .breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-light); }
.breadcrumb-item.active { color: var(--primary); font-weight: 600; }

.page-banner .badge-label {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

/* ================================================================
   SERVICES CARDS
   ================================================================ */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}
.service-card-icon {
  width: 70px; height: 70px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  border: 1px solid rgba(0,86,179,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-card-icon { background: var(--primary); color: #fff; }
.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}
.service-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; margin: 0; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
}
.service-card .card-link i { transition: transform 0.3s; }
.service-card:hover .card-link i { transform: translateX(4px); }

/* ================================================================
   FEATURED BOXES (Hero altı 4 kutu)
   ================================================================ */
.featured-boxes { border: none; margin-top: -50px; position: relative; z-index: 10; padding: 0; }
.featured-boxes .container {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
  display: flex;
}
.feat-box {
  flex: 1;
  padding: 40px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: none;
  transition: var(--transition);
}
.feat-box:last-child { border-right: none; }
.feat-box:hover { background: #fff; border-bottom: 4px solid var(--primary); }
.feat-box-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; }
.feat-box h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.feat-box p { color: var(--text-light); font-size: 0.85rem; margin: 0; }

/* ================================================================
   BLOG CARDS
   ================================================================ */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(0,86,179,0.2); }
.blog-card-img {
  height: 250px;
  overflow: hidden;
  background: var(--bg-light);
  border-radius: var(--radius) var(--radius) 0 0;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img .no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  background: var(--gradient-light);
}
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.blog-meta span { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.blog-meta span i { color: var(--primary); }
.blog-card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}
.blog-card-body h5 a { color: var(--text-dark); }
.blog-card-body h5 a:hover { color: var(--primary); }
.blog-card-body p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }
.blog-read-more {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-read-more:hover { color: var(--primary-dark); }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section { background: var(--bg-white); }
.about-stats { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 30px; }
.stat-item { text-align: center; }
.stat-item .num { font-size: 2.5rem; font-weight: 900; color: var(--primary); font-family: 'Poppins', sans-serif; }
.stat-item .label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); width: 100%; }
.about-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--gradient);
  color: #fff;
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  width: 120px;
}
.about-badge .num { font-size: 2rem; font-weight: 900; display: block; }
.about-badge span { font-size: 0.75rem; }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--gradient);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; font-family: 'Poppins', sans-serif; color: #fff; }
.cta-section p { font-size: 1.1rem; opacity: 0.9; color: #fff; }

/* ================================================================
   FOOTER (Siyah Kalan Tek Bölüm)
   ================================================================ */
.site-footer {
  background: var(--bg-footer);
  padding: 80px 0 0;
  border-top: none;
  color: rgba(255,255,255,0.7);
}
.footer-logo { font-size: 2rem; font-weight: 900; margin-bottom: 12px; color: #fff; }
.footer-logo span { color: var(--secondary); }
.footer-about { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 0.9rem;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--secondary);
  border-radius: 5px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }
.footer-links a i { color: var(--secondary); font-size: 0.75rem; }

.footer-contact li { margin-bottom: 14px; display: flex; gap: 10px; }
.footer-contact i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.footer-contact span { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--secondary); }

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact-form .form-control,
.contact-form .form-select {
  background: var(--bg-white) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-dark) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-size: 0.92rem;
  transition: var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(0,86,179,0.1) !important;
}
.contact-form .form-control::placeholder { color: var(--text-muted) !important; }
.contact-form label { color: var(--text-body); font-size: 0.88rem; font-weight: 500; margin-bottom: 6px; }
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-item .icon {
  width: 50px; height: 50px;
  border-radius: var(--radius);
  background: var(--primary-light);
  border: 1px solid rgba(0,86,179,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h6 { font-weight: 700; margin-bottom: 4px; font-size: 0.92rem; color: var(--text-dark); }
.contact-info-item p, .contact-info-item a { color: var(--text-light); font-size: 0.88rem; margin: 0; }
.contact-info-item a:hover { color: var(--primary); }

/* ================================================================
   INNER PAGE
   ================================================================ */
.inner-section { background: var(--bg-body); }
.service-detail-img { border-radius: var(--radius); width: 100%; height: auto; box-shadow: var(--shadow); }
.service-content h2 { color: var(--primary); font-family: 'Poppins', sans-serif; }
.service-content p { color: var(--text-body); line-height: 1.9; }
.service-content ul { padding-left: 1rem; }
.service-content ul li { color: var(--text-body); margin-bottom: 8px; }
.service-content ul li::marker { color: var(--primary); }

/* Sidebar */
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}
.sidebar-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-body);
  transition: var(--transition);
  border: 1px solid transparent;
  margin-bottom: 4px;
}
.sidebar-link:hover,
.sidebar-link.active {
  background: var(--primary-light);
  border-color: rgba(0,86,179,0.1);
  color: var(--primary);
}
.sidebar-link i { color: var(--primary); }

/* ================================================================
   BLOG DETAIL
   ================================================================ */
.blog-content { color: var(--text-body); line-height: 2; }
.blog-content h2, .blog-content h3 { color: var(--text-dark); font-family: 'Poppins', sans-serif; margin: 28px 0 14px; }
.blog-content p { margin-bottom: 20px; }
.blog-content ul { padding-left: 20px; margin-bottom: 20px; }
.blog-content ul li { margin-bottom: 8px; }
.blog-content ul li::marker { color: var(--primary); }
.blog-content img { border-radius: var(--radius); margin: 20px 0; width: 100%; }
.blog-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  background: var(--primary-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-body);
}

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 95px; right: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ================================================================
   REFERENCES
   ================================================================ */
.ref-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.ref-card img { max-height: 60px; filter: grayscale(1); transition: var(--transition); opacity: 0.6; }
.ref-card:hover { border-color: rgba(0,86,179,0.2); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.ref-card:hover img { filter: grayscale(0); opacity: 1; }
.ref-card .ref-name { color: var(--text-muted); font-weight: 600; font-size: 0.88rem; }

/* ================================================================
   BADGES & TAGS
   ================================================================ */
.tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(0,86,179,0.12);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 3px;
  transition: var(--transition);
}
.tag:hover { background: var(--primary); color: #fff; text-decoration: none; }

/* ================================================================
   PAGINATION
   ================================================================ */
.pagination .page-link {
  background: var(--bg-card) !important;
  border-color: var(--border) !important;
  color: var(--text-body) !important;
  transition: var(--transition) !important;
}
.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

/* ================================================================
   ALERTS
   ================================================================ */
.alert-success { background: #edf7ee !important; border-color: #c3e6cb !important; color: #155724 !important; }
.alert-danger { background: #fce4ec !important; border-color: #f5c6cb !important; color: #721c24 !important; }
.alert-info { background: #e3f2fd !important; border-color: #b3e5fc !important; color: #0c5460 !important; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .navbar-nav .nav-link { padding: 12px 16px !important; }
  .navbar-nav .nav-link::after { display: none; }
  .hero-slide { min-height: 450px; }
  .feat-box { border-right: none; border-bottom: 1px solid var(--border); }
  .top-bar .top-info { flex-direction: column; gap: 6px; font-size: 0.78rem; }
}
@media (max-width: 767px) {
  .section-pad { padding: 50px 0; }
  .hero-slide { min-height: 380px; }
  .hero-title { font-size: 1.8rem; }
  .about-badge { display: none; }
  .hero-icon-grid { gap: 10px; }
  .hero-icon-item { padding: 10px 14px; font-size: 0.8rem; }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp 0.6s ease forwards; }
.animate-up.delay-1 { animation-delay: 0.1s; }
.animate-up.delay-2 { animation-delay: 0.2s; }
.animate-up.delay-3 { animation-delay: 0.3s; }

/* AOS fallback */
[data-aos] { opacity: 0; transition: opacity 0.5s ease, transform 0.5s ease; }
[data-aos].aos-animate { opacity: 1; transform: none !important; }
