/*
  TvTamir35.com - Multi-Page Premium Cyber-Design System
  Extends and integrates with Bootstrap 5
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700;800&display=swap');

:root {
  --navy: #0a1628;
  --navy2: #0f2040;
  --blue: #1a4fa0;
  --accent: #e8303a;
  --accent2: #ff5c45;
  --gold: #f5c842;
  --white: #f5f2ec;
  --gray: #8a9ab5;
  --light: #d0dce8;
  --glass-bg: rgba(10, 22, 40, 0.85);
  --glass-border: rgba(26, 79, 160, 0.3);
}

/* Base resets & styles */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Barlow', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* typography overrides */
h1, h2, h3, h4, .font-bebas {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
}

.font-condensed {
  font-family: 'Barlow Condensed', sans-serif;
}

/* NAVBAR MODERNIZE */
.custom-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0.8rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.custom-nav.scrolled {
  padding: 0.5rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: rgba(8, 18, 32, 0.96);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.2s ease;
}
.nav-logo:hover {
  color: var(--white);
  transform: scale(1.02);
}
.nav-logo span {
  color: var(--accent);
}

.nav-links-list .nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light) !important;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 0.5rem 1rem !important;
}

.nav-links-list .nav-link:hover,
.nav-links-list .nav-link.active {
  color: var(--gold) !important;
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 15px rgba(232, 48, 58, 0.3);
}

.nav-cta:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 48, 58, 0.5);
  color: #fff !important;
}

/* Custom Hamburger Toggle */
.navbar-toggler {
  border: 1px solid rgba(26, 79, 160, 0.5);
  padding: 0.4rem 0.6rem;
}
.navbar-toggler:focus {
  box-shadow: 0 0 10px rgba(26, 79, 160, 0.5);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245, 242, 236, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* TICKER */
.ticker-container {
  overflow: hidden;
  background: var(--accent);
  padding: 0.6rem 0;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.ticker-inner {
  display: inline-flex;
  animation: ticker-anim 30s linear infinite;
}
.ticker-inner span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}
.ticker-inner span::after {
  content: '◆';
  margin-left: 2rem;
  opacity: 0.5;
  color: var(--gold);
}
@keyframes ticker-anim {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* HERO SECTION */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(26,79,160,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 85%, rgba(232,48,58,0.1) 0%, transparent 65%);
  z-index: 1;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(26,79,160,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,79,160,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 80%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(232,48,58,0.15);
  border: 1px solid rgba(232,48,58,0.4);
  border-radius: 4px;
  padding: 0.4rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff9090;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-ring-glow 1.5s infinite;
}

@keyframes pulse-ring-glow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 48, 58, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(232, 48, 58, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 48, 58, 0); }
}

.hero-title {
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  line-height: 0.92;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-title .line2 {
  color: var(--accent);
  display: block;
}

.hero-title .line3 {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,242,236,0.35);
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--light);
  line-height: 1.75;
  max-width: 480px;
  margin: 1.5rem 0 2.2rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-premium-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 5px 20px rgba(232,48,58,0.35);
}

.btn-premium-primary:hover {
  background: var(--accent2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,48,58,0.5);
}

.btn-premium-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1px solid rgba(245,242,236,0.3);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-premium-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,200,66,0.06);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26,79,160,0.3);
  animation: fadeUp 0.6s 0.4s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* HERO STOCK TV PHOTO CONTAINER */
.hero-image-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.8s 0.2s ease both;
  width: 100%;
  max-width: 520px;
}

.hero-image-wrap {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(26,79,160,0.4);
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.6), 
    0 0 40px rgba(26,79,160,0.25);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  transition: transform 0.5s ease, border-color 0.5s ease;
}

.hero-image-wrap:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 
    0 30px 70px rgba(0,0,0,0.7), 
    0 0 50px rgba(245,200,66,0.2);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pulsing cyber-rings for image */
.pulse-ring-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  border: 1px solid rgba(26,79,160,0.15);
  border-radius: 18px;
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.1; transform: translate(-50%, -50%) scale(1.04); }
}

/* TV Floating Badge on Hero */
.hero-floating-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--accent);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,48,58,0.45);
  animation: spin-slow 15s linear infinite;
  line-height: 1.2;
  text-align: center;
  padding: 0.5rem;
  z-index: 5;
}

.hero-floating-badge-inner {
  animation: spin-slow 15s linear infinite reverse;
}

/* SUBPAGE HEADER (BREADCRUMB HEADER) */
.subpage-header {
  padding: 10rem 0 4.5rem;
  background: linear-gradient(180deg, rgba(15,32,64,0.7) 0%, rgba(10,22,40,1) 100%);
  border-bottom: 1px solid rgba(26,79,160,0.22);
  position: relative;
}

.subpage-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 20%, rgba(26,79,160,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.breadcrumb-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin-top: 0.8rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  justify-content: center;
}

.breadcrumb-list a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
  color: var(--gold);
}

.breadcrumb-list span.active {
  color: var(--gray);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '>';
  margin-left: 0.5rem;
  color: rgba(26, 79, 160, 0.4);
}

/* COMMON SECTIONS */
.section-padding {
  padding: 6.5rem 0;
  position: relative;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.section-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--light);
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* SERVICES GRID & CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-card {
  background: var(--navy2);
  padding: 2.5rem 2rem;
  transition: all 0.35s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: rgba(18, 38, 75, 0.95);
}

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

.service-icon {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  display: block;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.service-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 0;
}

.service-tag {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.25rem 0.8rem;
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.22);
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* WHY US SECTION */
.why-section {
  background: rgba(15, 32, 64, 0.4);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 0;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.4rem 1.6rem;
  background: rgba(10, 22, 40, 0.7);
  border: 1px solid rgba(26, 79, 160, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.why-item:hover {
  border-color: rgba(232, 48, 58, 0.5);
  transform: translateX(6px);
  background: rgba(10, 22, 40, 0.9);
}

.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: rgba(232, 48, 58, 0.35);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
  transition: color 0.3s ease;
}
.why-item:hover .why-num {
  color: var(--accent);
}

.why-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.why-text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* PROCESS FLOW */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(26, 79, 160, 0.18);
  position: relative;
}

.process-step:last-child {
  border-bottom: none;
}

.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  background: rgba(26, 79, 160, 0.15);
  box-shadow: 0 0 15px rgba(26, 79, 160, 0.3);
  transition: all 0.3s ease;
}
.process-step:hover .step-circle {
  border-color: var(--gold);
  background: rgba(245, 200, 66, 0.15);
  box-shadow: 0 0 20px rgba(245, 200, 66, 0.4);
  transform: scale(1.05);
}

.step-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.step-info p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.5;
}

/* 2ND HAND PRODUCTS */
.stock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

.stock-card {
  background: var(--navy2);
  border: 1px solid rgba(26, 79, 160, 0.2);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.stock-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 200, 66, 0.45);
  box-shadow: 0 15px 35px rgba(245, 200, 66, 0.12), 0 5px 15px rgba(0,0,0,0.5);
}

.stock-img-container {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: rgba(26, 79, 160, 0.15);
  overflow: hidden;
  position: relative;
}

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

.stock-card:hover .stock-img-container img {
  transform: scale(1.08);
}

.stock-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.stock-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.stock-model {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--white);
  line-height: 1.3;
}

.stock-price-block {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.stock-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}

.stock-price-old {
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray);
  text-decoration: line-through;
}

.stock-badge {
  display: inline-block;
  align-self: flex-start;
  margin-top: 0.8rem;
  padding: 0.2rem 0.7rem;
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(46, 125, 50, 0.35);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #81c784;
}

.stock-card-cta {
  background: rgba(245, 200, 66, 0.05);
  border-color: rgba(245, 200, 66, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 250px;
  cursor: pointer;
  padding: 1.5rem;
}

.stock-card-cta .cta-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.stock-card-cta:hover .cta-icon {
  transform: scale(1.15) rotate(90deg);
}

.stock-card-cta h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

/* BLOG LISTING & CARD POSTS */
.blog-card {
  background: var(--navy2);
  border: 1px solid rgba(26, 79, 160, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 30px rgba(232, 48, 58, 0.12), 0 5px 15px rgba(0,0,0,0.4);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.blog-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-link {
  color: var(--accent2);
}

/* INDIVIDUAL BLOG POST DETAILED FORMAT */
.blog-post-content {
  background: var(--navy2);
  border: 1px solid rgba(26, 79, 160, 0.2);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.3);
}

.blog-post-content h2, .blog-post-content h3 {
  color: var(--gold);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-post-content h2 {
  font-size: 1.8rem;
}

.blog-post-content h3 {
  font-size: 1.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-post-content p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-post-content li {
  font-size: 1rem;
  font-weight: 300;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.blog-post-content strong {
  color: var(--white);
  font-weight: 600;
}

.blog-post-banner {
  width: 100%;
  max-height: 450px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(26, 79, 160, 0.3);
}

.blog-post-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PREMIUM VISIBLE FAQ ACCORDION */
.accordion-custom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-custom-item {
  background: var(--navy2);
  border: 1px solid rgba(26, 79, 160, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-custom-item:hover,
.accordion-custom-item.active {
  border-color: rgba(26, 79, 160, 0.5);
  box-shadow: 0 5px 20px rgba(26, 79, 160, 0.15);
}

.accordion-custom-header {
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.accordion-custom-header h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.4;
  letter-spacing: normal;
  text-transform: none;
}

.accordion-custom-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.accordion-custom-item.active .accordion-custom-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.accordion-custom-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-custom-content {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

.accordion-custom-content p:last-child {
  margin-bottom: 0;
}

/* CONTACT SECTION & CARDS */
.contact-section {
  background: linear-gradient(135deg, rgba(15,32,64,0.85) 0%, rgba(8,18,32,0.98) 100%);
  border-top: 1px solid var(--glass-border);
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.5rem 1.8rem;
  background: rgba(26, 79, 160, 0.08);
  border: 1px solid rgba(26, 79, 160, 0.18);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(26, 79, 160, 0.15);
  border-color: rgba(26, 79, 160, 0.35);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
}

.contact-val {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.contact-val a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-val a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Map frame wrap */
.contact-map-wrap {
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  height: 100%;
  min-height: 380px;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  filter: grayscale(0.8) invert(0.9) contrast(1.2);
}

/* FOOTER */
footer {
  background: rgba(5, 12, 24, 0.98);
  border-top: 1px solid rgba(26, 79, 160, 0.25);
  padding: 3rem 0;
  position: relative;
  z-index: 10;
}

.footer-copy {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26, 79, 160, 0.35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 200, 66, 0.06);
  transform: translateY(-2px);
}

/* DIVIDER LINE WITH TEXT */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26, 79, 160, 0.3);
}

/* FLOATING WHATSAPP CTA WIDGET (BOTTOM RIGHT) */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1040;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.whatsapp-bubble {
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(255,255,255,0.15);
}

.whatsapp-bubble::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: widgetPulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes widgetPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.whatsapp-bubble:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-bubble svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: transform 0.3s ease;
}

.whatsapp-bubble:hover svg {
  transform: scale(1.08);
}

.whatsapp-label {
  background: var(--navy2);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  pointer-events: all;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  white-space: nowrap;
}

.whatsapp-widget:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* RESPONSIVE LAYOUT OVERRIDES */
@media (max-width: 991.98px) {
  .hero {
    padding-top: 130px;
    text-align: center;
  }
  .hero-sub {
    margin: 1.5rem auto 2.2rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-image-container {
    margin-top: 4rem;
    max-width: 100%;
  }
  .custom-nav {
    padding: 0.6rem 1rem;
  }
  .nav-links-list {
    padding: 1.5rem 0;
    text-align: center;
    gap: 1rem;
  }
  .nav-cta {
    display: inline-block;
    margin-top: 0.5rem;
  }
  .blog-post-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 4.5rem 0;
  }
  .subpage-header {
    padding: 8rem 0 3.5rem;
  }
  .divider {
    margin-bottom: 2.5rem;
  }
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .stat-num {
    font-size: 2rem;
  }
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-bubble {
    width: 52px;
    height: 52px;
  }
  .whatsapp-bubble svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-label {
    display: none;
  }
  .contact-map-wrap {
    min-height: 280px;
  }
  .contact-map-wrap iframe {
    min-height: 280px;
  }
}
