/* ===== CSS Variables - Dark Theme ===== */
:root {
  --primary-color: #0087D7;
  --secondary-color: #2C3E50;
  --dark-bg: #0A0E14;
  --darker-bg: #060810;
  --card-bg: #131820;
  --light-gray: #1A1F2E;
  --white: #E8EAF0;
  --text-dark: #E8EAF0;
  --text-light: #9BA3B4;
  --gradient-primary: linear-gradient(135deg, #0087D7 0%, #0062A3 100%);
  --gradient-secondary: linear-gradient(135deg, #1A1F2E 0%, #0A0E14 100%);
  --gradient-dark: linear-gradient(135deg, #0A0E14 0%, #131820 100%);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 135, 215, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
  height: 100%;
  scroll-padding-top: 100px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--dark-bg);
  position: relative;
  min-height: 100vh;
  /* overflow-x: hidden; REMOVED - This breaks position: fixed */
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(0, 135, 215, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 14, 20, 0.98);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 80px;
}

.logo {
  position: absolute;
  left: 0.5rem;
}

.logo.hidden {
  display: none !important;
}

.logo {
  position: relative;
}

.logo img {
  height: 70px;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(0, 135, 215, 0.6));
}

/* Removed hero logo styling - logo now in navbar only */

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0 auto;
  padding-right: 90px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background: rgba(0, 135, 215, 0.15);
  box-shadow: 0 0 15px rgba(0, 135, 215, 0.2);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-bg);
  border: 1px solid rgba(0, 135, 215, 0.2);
  min-width: 250px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-radius: 12px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-content a:hover {
  background: rgba(0, 135, 215, 0.15);
  color: var(--primary-color);
  padding-left: 2rem;
  box-shadow: inset 3px 0 0 var(--primary-color);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 3px 0;
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding: 4rem 2rem;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 135, 215, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 135, 215, 0.1) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230087D7" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: bottom;
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 1;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  opacity: 0.8;
  z-index: 1;
}

.hero-scroll span {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.scroll-indicator {
  width: 2px;
  height: 40px;
  background: var(--white);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }

  50% {
    transform: translateY(20px);
    opacity: 1;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 135, 215, 0.4);
  background: #0098F0;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* ===== Container ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Section Styles ===== */
section {
  padding: 6rem 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 4rem;
}

/* ===== Services Overview ===== */
.services-overview {
  background: var(--darker-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 135, 215, 0.1);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(0, 135, 215, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 20px;
  color: var(--white);
}

.service-icon svg {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover {
  gap: 0.5rem;
}

/* ===== Why Choose Section ===== */
.why-choose {
  background: var(--dark-bg);
}

.why-choose .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}

.why-choose-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.why-choose-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.features-list {
  margin-bottom: 2rem;
}

.features-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.why-choose-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 135, 215, 0.3);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 135, 215, 0.4);
}

.stat-card h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== Blog Preview ===== */
.blog-preview {
  background: var(--darker-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 135, 215, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(0, 135, 215, 0.3);
}

.blog-image {
  width: 100%;
  height: 220px;
  background: var(--gradient-primary);
  position: relative;
}

.blog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.blog-content {
  padding: 2rem;
}

.blog-category {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 135, 215, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.blog-link:hover {
  margin-left: 5px;
}

.blog-cta {
  text-align: center;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--gradient-dark);
  border-top: 1px solid rgba(0, 135, 215, 0.2);
  border-bottom: 1px solid rgba(0, 135, 215, 0.2);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 135, 215, 0.1) 0%, transparent 70%);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* ===== Footer ===== */
.footer {
  background: var(--darker-bg);
  border-top: 1px solid rgba(0, 135, 215, 0.2);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 120px;
  margin-bottom: 1rem;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-column p {
  line-height: 1.8;
  opacity: 0.8;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 100px;
    flex-direction: column;
    background-color: var(--dark-bg);
    border-top: 1px solid rgba(0, 135, 215, 0.2);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow-lg);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0.5rem 0;
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .hero {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .why-choose .container {
    grid-template-columns: 1fr;
  }

  section {
    padding: 4rem 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .price {
    font-size: 2.5rem;
  }

  .pricing-comparison {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .pricing-note {
    padding: 1.5rem;
  }
}

/* ===== Scroll Indicator ===== */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10000;
  pointer-events: none;
}

.scroll-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--primary-color);
}

.scroll-down-arrow {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.scroll-down-arrow.hidden {
  opacity: 0;
  visibility: hidden;
}

.scroll-down-text {
  font-size: 0.75rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.scroll-down-arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
  animation: bounce 2s infinite;
  filter: drop-shadow(0 0 8px rgba(0, 135, 215, 0.6));
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(8px);
  }

  60% {
    transform: translateY(4px);
  }
}

@media (max-width: 768px) {
  .scroll-down-text {
    font-size: 0.65rem;
  }

  .scroll-down-arrow svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 135, 215, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 135, 215, 0.6);
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== Pricing Section ===== */
.pricing-section {
  padding: 6rem 0;
  background: var(--dark-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 135, 215, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 135, 215, 0.2);
}

.pricing-header {
  margin-bottom: 1.5rem;
  position: relative;
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pricing-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-badge.featured {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.pricing-amount {
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 135, 215, 0.2);
}

.price {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.price-note {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.pricing-comparison {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.8rem;
  background: rgba(0, 135, 215, 0.1);
  border-radius: 10px;
}

.national-avg {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.savings {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.7rem 0;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 1.8rem;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.pricing-note {
  background: rgba(0, 135, 215, 0.1);
  border: 1px solid rgba(0, 135, 215, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.pricing-note p {
  color: var(--text-light);
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.pricing-note p:last-child {
  margin-bottom: 0;
}

.pricing-note strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* ===== Value Proposition Section ===== */
.value-section {
  padding: 6rem 0;
  background: var(--darker-bg);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 135, 215, 0.2);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 135, 215, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 135, 215, 0.2), rgba(0, 191, 255, 0.1));
  border-radius: 50%;
  border: 2px solid rgba(0, 135, 215, 0.3);
}

.value-icon svg {
  width: 35px;
  height: 35px;
  stroke: var(--primary-color);
}

.value-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== ROI Section ===== */
.roi-section {
  padding: 6rem 0;
  background: var(--dark-bg);
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.roi-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 135, 215, 0.2);
  transition: var(--transition);
}

.roi-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 135, 215, 0.2);
}

.roi-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.package-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-breakdown {
  margin-bottom: 2rem;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.cost-row.agency {
  background: rgba(255, 159, 64, 0.1);
  border-left: 3px solid #ff9f40;
}

.cost-row.ours {
  background: rgba(0, 135, 215, 0.1);
  border-left: 3px solid var(--primary-color);
}

.cost-label {
  color: var(--text-light);
  font-weight: 600;
}

.cost-value {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.cost-value.highlight {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.savings-highlight {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(52, 211, 153, 0.1));
  border-radius: 10px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.savings-amount {
  display: block;
  color: #4ade80;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.savings-percent {
  display: block;
  color: #34d399;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 6rem 0;
  background: var(--darker-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 135, 215, 0.2);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 135, 215, 0.15);
}

.faq-item h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
  }

  .value-icon svg {
    width: 30px;
    height: 30px;
  }

  .roi-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cost-value {
    font-size: 1rem;
  }

  .cost-value.highlight {
    font-size: 1.2rem;
  }

  .savings-amount {
    font-size: 1.2rem;
  }
}

/* ===== Page-Specific Styles ===== */

/* Blog List Page */
.blog-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding: 4rem 2rem;
  z-index: 1;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 135, 215, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 135, 215, 0.1) 0%, transparent 50%);
}

.blog-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230087D7" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: bottom;
}

.blog-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 1;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.blog-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
  color: var(--white);
}

.blog-hero p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-align: center;
  color: var(--white);
}

.blog-list {
  padding: 6rem 0;
  background: var(--dark-bg);
}

.blog-list .container {
  max-width: 1200px;
}

.blog-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.blog-full-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 135, 215, 0.2);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-full-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 135, 215, 0.25);
  border-color: var(--primary-color);
}

.blog-full-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, rgba(0, 135, 215, 0.3), rgba(0, 191, 255, 0.2));
  position: relative;
}

.blog-full-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-full-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.4;
}

.blog-full-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.blog-meta span {
  opacity: 0.7;
}

.blog-load-more {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 968px) {
  .blog-grid-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-full-image {
    height: 240px;
  }

  .blog-full-content h2 {
    font-size: 1.3rem;
  }
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Stats Highlight Section */
.stats-highlight {
  padding: 4rem 0;
  background: var(--darker-bg);
  border-bottom: 1px solid rgba(0, 135, 215, 0.1);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 15px;
  border: 1px solid rgba(0, 135, 215, 0.2);
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 135, 215, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Services Showcase */
.services-showcase {
  padding: 6rem 0;
  background: var(--dark-bg);
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.services-grid-modern .service-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 135, 215, 0.2);
  transition: var(--transition);
}

.services-grid-modern .service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 135, 215, 0.2);
}

.services-grid-modern .service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 135, 215, 0.2), rgba(0, 191, 255, 0.1));
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(0, 135, 215, 0.3);
}

.services-grid-modern .service-icon svg {
  width: 35px;
  height: 35px;
  stroke: var(--primary-color);
}

.services-grid-modern h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.services-grid-modern p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.services-grid-modern ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.services-grid-modern ul li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.services-grid-modern ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Why Choose Services Section */
.why-choose-services {
  padding: 6rem 0;
  background: var(--darker-bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.benefit-item {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 135, 215, 0.2);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 135, 215, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 135, 215, 0.2), rgba(0, 191, 255, 0.1));
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(0, 135, 215, 0.3);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary-color);
}

.benefit-item h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefit-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 968px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid-modern,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Case Studies Section */
.case-studies {
  padding: 6rem 0;
  background: var(--darker-bg);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.case-study-card {
  background: var(--card-bg);
  border-radius: 15px;
  border: 1px solid rgba(0, 135, 215, 0.2);
  overflow: hidden;
  transition: var(--transition);
}

.case-study-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(0, 135, 215, 0.25);
}

.case-study-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(0, 135, 215, 0.1);
}

.case-study-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.case-study-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(0, 135, 215, 0.2), rgba(0, 191, 255, 0.1));
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 135, 215, 0.3);
}

.case-study-content {
  padding: 2.5rem;
}

.case-study-challenge,
.case-study-solution,
.case-study-results {
  margin-bottom: 2rem;
}

.case-study-results {
  margin-bottom: 0;
}

.case-study-content h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-study-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 135, 215, 0.1);
}

.result-stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

@media (max-width: 968px) {
  .results-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .case-study-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .case-study-content {
    padding: 1.5rem;
  }

  .case-study-header h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .stat-value {
    font-size: 1.8rem;
  }

  .case-study-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }
}

/* Featured Section & Image Responsiveness */
.featured-section {
  padding: 6rem 0;
  background: var(--darker-bg);
}

@media (max-width: 968px) {
  .featured-section>.container>div {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .featured-section img {
    height: 300px !important;
  }

  .featured-section h2 {
    font-size: 2rem !important;
  }

  .featured-section p {
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  .featured-section img {
    height: 250px !important;
  }
}

/* Individual Service Pages */
.service-overview {
  padding: 5rem 0;
  background: var(--dark-bg);
}

.overview-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.overview-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.overview-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-offerings {
  padding: 6rem 0;
  background: var(--darker-bg);
}

.service-process {
  padding: 6rem 0;
  background: var(--dark-bg);
}

@media (max-width: 768px) {
  .overview-content h2 {
    font-size: 2rem;
  }

  .overview-content p {
    font-size: 1rem;
  }
}

/* Service Pages */
.service-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding: 4rem 2rem;
  z-index: 1;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 135, 215, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 135, 215, 0.1) 0%, transparent 50%);
}

.service-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230087D7" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: bottom;
}

.service-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 1;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.service-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
  color: var(--white);
}

.service-hero p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-align: center;
  color: var(--white);
}

.service-details {
  padding: 4rem 0;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-box {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid rgba(0, 135, 215, 0.1);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.feature-box:hover {
  border-color: rgba(0, 135, 215, 0.3);
  box-shadow: var(--shadow-glow);
  transform: translateX(5px);
}

.feature-box h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Contact Page */
.contact-section {
  background: var(--dark-bg);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid rgba(0, 135, 215, 0.1);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--dark-bg);
  border: 2px solid rgba(0, 135, 215, 0.2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 135, 215, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 135, 215, 0.1);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}