/* ===================================
   Local Font Imports
   =================================== */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Alan Sans';
  src: url('../fonts/alan-sans/AlanSans-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Modern Tech Theme */
  --primary-color: #dc2626;
  --primary-dark: #b91c1c;
  --secondary-color: #ef4444;
  --dark-bg: #0a0e27;
  --dark-blue: #1a1f3a;
  --text-light: #ffffff;
  --text-gray: #a0a8c0;
  --text-dark: #2c3e50;
  --accent-red: #dc2626;
  --gradient-primary: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);

  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-base: all 0.3s ease;
}

body {
  font-family: "Alan Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Only h1 and h2 use Inter */
h1,
h2,
.hero-title,
.hero-heading,
.heading-line {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* All other headings and content use Alan Sans */
h3,
h4,
h5,
h6 {
  font-family: "Alan Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* ===================================
   Header Styles
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 2rem;
}

/* ===================================
   Logo Styles
   =================================== */
.logo img {
  max-width: 200px;
  transition: var(--transition-base);
}

.logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: var(--transition-base);
}

.logo a:hover img {
  transform: translateY(-2px);
}

.logo-text {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.logo-subtitle {
  font-size: 10px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2px;
}

.logo a:hover .logo-text {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

/* ===================================
   Navigation Menu
   =================================== */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.75rem 1.25rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: var(--transition-base);
  position: relative;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gradient-primary);
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(220, 38, 38, 0.1);
}

.nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-link i {
  font-size: 10px;
}

/* ===================================
   Dropdown Menu
   =================================== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #ffffff;
  border-radius: 12px;
  min-width: 220px;
  padding: 0.75rem 0;
  list-style: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-base);
  position: relative;
}

.dropdown-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.3s ease;
}

.dropdown-menu a:hover {
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-color);
  padding-left: 2rem;
}

.dropdown-menu a:hover::before {
  height: 70%;
}

/* Submenu Styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-submenu > a i.fa-chevron-right {
  font-size: 10px;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown-submenu:hover > a i.fa-chevron-right {
  transform: translateX(3px);
}

/* Nested dropdown menu - must be explicitly hidden */
.dropdown-submenu > .dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
  display: block;
}

/* Desktop only - Show submenu ONLY when hovering over that specific submenu item */
@media screen and (min-width: 993px) {
  /* Ensure all submenus are hidden by default on desktop */
  .dropdown-menu .dropdown-submenu > .dropdown-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Show ONLY when hovering over the specific submenu item */
  .dropdown-submenu:hover > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* ===================================
   CTA Button
   =================================== */
.nav-cta {
  display: flex;
  align-items: center;
  list-style: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

/* ===================================
   Mobile Menu Toggle
   =================================== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition-base);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Responsive Design
   =================================== */
@media screen and (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 0;
    gap: 0;
    transition: left 0.4s ease;
    overflow-y: auto;
  }

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

  .nav-item {
    width: 100%;
    border-bottom: none;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: none;
  }

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

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

  .dropdown .nav-link {
    border-bottom: none;
  }

  .dropdown {
    border-bottom: none;
  }

  .dropdown.active .nav-link {
    border-bottom: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: #f9fafb;
    margin: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .dropdown-menu a:hover {
    padding-left: 2.5rem;
  }

  /* Mobile Submenu Styles */
  .dropdown-submenu {
    margin: 0;
    padding: 0;
  }

  .dropdown-submenu > a {
    margin: 0;
    margin-bottom: 0 !important;
  }

  .dropdown-submenu .dropdown-menu {
    position: static;
    background: #ffffff;
    margin: 0;
    max-height: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    display: none;
  }

  .dropdown-submenu.active > .dropdown-menu {
    display: block;
    max-height: 300px;
    padding: 0.5rem 0;
    margin: 0 1rem;
  }

  .dropdown-submenu > a i.fa-chevron-right {
    transition: transform 0.3s ease;
  }

  .dropdown-submenu.active > a i.fa-chevron-right {
    transform: rotate(90deg);
  }

  .nav-cta {
    width: 100%;
    padding: 0 2rem;
    margin-top: 1rem;
  }

  .nav-cta .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    max-width: 160px;
  }

  .logo-text {
    font-size: 24px;
  }

  .logo-subtitle {
    font-size: 9px;
  }

  .header {
    height: 70px;
  }

  :root {
    --header-height: 70px;
  }

  .navbar {
    height: 70px;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    max-width: 140px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-subtitle {
    font-size: 8px;
  }

  .container {
    padding: 0 15px;
  }
}

/* ===================================
   Utility Classes
   =================================== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Body padding to prevent content from hiding under fixed header */
body {
  padding-top: var(--header-height);
}

/* ===================================
   Hero Section V2 - Modern Design
   =================================== */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Animated Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--gradient-primary);
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
  bottom: -10%;
  left: -5%;
  animation-delay: 5s;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: var(--primary-color);
  top: 50%;
  left: 30%;
  animation-delay: 10s;
}

@keyframes shapeFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* ===================================
   Camera Lens Animation
   =================================== */
.camera-lens-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0.4;
}

/* Main Camera Lens */
.camera-lens {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
}

.lens-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0.3;
}

.lens-ring-1 {
  width: 100%;
  height: 100%;
  animation: rotateLens 20s linear infinite;
  border-style: dashed;
}

.lens-ring-2 {
  width: 70%;
  height: 70%;
  animation: rotateLens 15s linear infinite reverse;
  border-width: 3px;
}

.lens-ring-3 {
  width: 40%;
  height: 40%;
  animation: rotateLens 10s linear infinite;
  border-style: dotted;
}

@keyframes rotateLens {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.lens-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.lens-aperture {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: aperture 4s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes aperture {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.2;
  }
}

.lens-glare {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  filter: blur(4px);
  animation: glare 5s ease-in-out infinite;
}

@keyframes glare {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Scan Lines */
.scan-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-color) 50%,
    transparent 100%
  );
  opacity: 0.5;
}

.scan-line-1 {
  top: 30%;
  animation: scanVertical 6s ease-in-out infinite;
}

.scan-line-2 {
  top: 70%;
  animation: scanVertical 8s ease-in-out infinite 2s;
}

@keyframes scanVertical {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(300px);
    opacity: 0.8;
  }
}

/* Focus Points */
.focus-point {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: focusPulse 3s ease-in-out infinite;
}

.focus-point::before,
.focus-point::after {
  content: "";
  position: absolute;
  background: var(--primary-color);
}

.focus-point::before {
  top: 50%;
  left: -10px;
  width: 8px;
  height: 2px;
  transform: translateY(-50%);
}

.focus-point::after {
  top: 50%;
  right: -10px;
  width: 8px;
  height: 2px;
  transform: translateY(-50%);
}

.focus-point-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.focus-point-2 {
  top: 60%;
  left: 25%;
  animation-delay: 0.8s;
}

.focus-point-3 {
  top: 40%;
  right: 20%;
  animation-delay: 1.6s;
}

.focus-point-4 {
  bottom: 25%;
  right: 35%;
  animation-delay: 2.4s;
}

@keyframes focusPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Viewfinder Corners */
.viewfinder-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid var(--primary-color);
  opacity: 0.4;
  animation: cornerPulse 4s ease-in-out infinite;
}

.corner-tl {
  top: 10%;
  left: 5%;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: 10%;
  right: 5%;
  border-left: none;
  border-bottom: none;
  animation-delay: 1s;
}

.corner-bl {
  bottom: 15%;
  left: 5%;
  border-right: none;
  border-top: none;
  animation-delay: 2s;
}

.corner-br {
  bottom: 15%;
  right: 5%;
  border-left: none;
  border-top: none;
  animation-delay: 3s;
}

@keyframes cornerPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Hero Wrapper */
.hero-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 80vh;
}

/* Left Content */
.hero-left {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 50px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
  position: relative;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

.tag-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.hero-heading {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.heading-line {
  display: block;
  color: var(--text-dark);
}

.heading-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.hero-btn-primary i {
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
  transform: translateX(5px);
}

.hero-btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid #e5e7eb;
}

.hero-btn-outline:hover {
  background: rgba(220, 38, 38, 0.05);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Trust Indicators */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 20px;
  flex-shrink: 0;
}

.trust-info {
  display: flex;
  flex-direction: column;
}

.trust-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.trust-label {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(220, 38, 38, 0.2),
    transparent
  );
}

/* Right Visual */
.hero-right {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}

/* Main Card */
.hero-main-card {
  position: relative;
  width: 100%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.1);
  margin: 0 auto;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.status-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
}

.status-dot.active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #10b981;
  border-radius: 50%;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.status-text {
  font-size: 14px;
  font-weight: 600;
  color: #10b981;
}

.card-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: #6b7280;
}

/* Banner Icons */
.banner-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0 0 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.banner-icons a {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}

.banner-icon {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  opacity: 0.8;
  display: block;
}

.banner-icons a:hover .banner-icon {
  transform: translateY(-3px);
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(3789%) hue-rotate(349deg) brightness(95%) contrast(93%);
}

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

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.service-item:hover {
  background: rgba(220, 38, 38, 0.05);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.service-item i {
  font-size: 32px;
  color: var(--primary-color);
}

.service-item span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

/* Floating Cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.1);
  animation: float 3s ease-in-out infinite;
}

.float-card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.float-card-2 {
  top: 25%;
  left: -15%;
  animation-delay: 1s;
}

.float-card-3 {
  top: 50%;
  right: -15%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.float-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 18px;
  flex-shrink: 0;
}

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

.float-title {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.float-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Decorative Lines */
.hero-decor {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.decor-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  opacity: 0.1;
}

.decor-line-1 {
  width: 100%;
  height: 1px;
  top: 30%;
  animation: lineMove 15s linear infinite;
}

.decor-line-2 {
  width: 1px;
  height: 100%;
  left: 70%;
  animation: lineMove 20s linear infinite reverse;
}

@keyframes lineMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Responsive */
@media screen and (max-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-heading {
    font-size: 48px;
  }

  .hero-image-wrapper {
    height: 450px;
  }

  .float-card {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hero-v2 {
    padding: 3rem 0 2rem;
  }

  .hero-heading {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 1.5rem;
  }

  .trust-divider {
    width: 100%;
    height: 1px;
  }

  .hero-main-card {
    padding: 1.5rem;
  }

  .service-grid {
    gap: 0.75rem;
  }

  .service-item {
    padding: 1rem;
  }

  .banner-icons {
    gap: 0.5rem;
    padding: 1rem 0 0 0;
  }

  .banner-icon {
    height: 40px;
    width: auto;
  }
}

@media screen and (max-width: 480px) {
  .hero-heading {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .hero-tag {
    font-size: 12px;
    padding: 0.5rem 1rem;
  }

  .banner-icons {
    gap: 0.4rem;
  }

  .banner-icon {
    height: 35px;
    width: auto;
  }
}

/* ===================================
   Security Camera Surveillance Animation (Second Hero)
   =================================== */
.security-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0.4;
}

/* Security Camera */
.security-camera {
  position: absolute;
  animation: cameraMove 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.security-camera i {
  font-size: 60px;
  color: var(--primary-color);
  filter: drop-shadow(0 4px 15px rgba(220, 38, 38, 0.5));
  animation: cameraRotate 4s ease-in-out infinite;
}

@keyframes cameraRotate {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

.camera-lens-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: recordingBlink 2s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(220, 38, 38, 1), 0 0 30px rgba(220, 38, 38, 0.5);
  position: absolute;
  top: 0;
  right: 0;
}

@keyframes recordingBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 15px rgba(220, 38, 38, 1), 0 0 30px rgba(220, 38, 38, 0.5);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
    box-shadow: 0 0 5px rgba(220, 38, 38, 0.5);
  }
}

/* Camera Scanning Beam */
.camera-scan-beam {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-top: 180px solid rgba(220, 38, 38, 0.15);
  transform-origin: top center;
  animation: beamScan 4s ease-in-out infinite;
  filter: blur(8px);
}

@keyframes beamScan {
  0%,
  100% {
    transform: translateX(-50%) rotate(-30deg);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-50%) rotate(30deg);
    opacity: 0.3;
  }
}

/* Camera Positions */
.camera-1 {
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.camera-2 {
  top: 50%;
  right: 8%;
  animation-delay: 2s;
}

.camera-3 {
  bottom: 20%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes cameraMove {
  0%,
  100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

/* Circuit Board Animation */
.circuit-board {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0.6;
}

.circuit-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Circuit Nodes Pulse Animation */
.circuit-node-svg {
  animation: nodePulseSVG 2s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(220, 38, 38, 0.8));
}

@keyframes nodePulseSVG {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Electric Pulse Glow */
.electric-pulse {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 1))
    drop-shadow(0 0 8px rgba(255, 255, 255, 1))
    drop-shadow(0 0 15px rgba(255, 0, 0, 1))
    drop-shadow(0 0 25px rgba(255, 50, 50, 1))
    drop-shadow(0 0 40px rgba(255, 100, 100, 1))
    drop-shadow(0 0 60px rgba(220, 38, 38, 0.8));
  opacity: 1;
  animation: intensePulse 1s ease-in-out infinite;
}

@keyframes intensePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
}

/* Security Icons */
.security-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(220, 38, 38, 0.2);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
  animation: iconFloat 3s ease-in-out infinite;
  backdrop-filter: blur(5px);
}

.icon-1 {
  top: 25%;
  left: 8%;
  animation-delay: 0s;
}

.icon-2 {
  top: 60%;
  left: 5%;
  animation-delay: 1s;
}

.icon-3 {
  top: 15%;
  right: 12%;
  animation-delay: 2s;
}

.icon-4 {
  top: 35%;
  right: 10%;
  animation-delay: 0.5s;
}

.icon-5 {
  bottom: 30%;
  right: 5%;
  animation-delay: 1.5s;
}

.icon-6 {
  bottom: 10%;
  left: 10%;
  animation-delay: 2.5s;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
  }
  50% {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.5);
  }
}

/* ===================================
   About Us Section
   =================================== */
.about {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(180deg, #f3f4f6 0%, #ffffff 100%);
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Content */
.about-left {
  animation: fadeInUp 0.8s ease-out;
}

.about-description {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 550px;
}

/* Stats Grid */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.05) 0%,
    rgba(239, 68, 68, 0.02) 100%
  );
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.2);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
  font-family: "Inter", sans-serif;
}

.stat-text {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  font-weight: 500;
}

/* Right Content */
.about-right {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-features {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.features-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-family: "Alan Sans", sans-serif;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: var(--gradient-primary);
  color: #ffffff;
  transform: scale(1.1);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-family: "Alan Sans", sans-serif;
}

.feature-text {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
}

/* Background Decoration */
.about-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.05;
  filter: blur(80px);
}

.bg-circle-1 {
  width: 400px;
  height: 400px;
  top: -10%;
  left: -5%;
  animation: shapeFloat 20s ease-in-out infinite;
}

.bg-circle-2 {
  width: 500px;
  height: 500px;
  bottom: -15%;
  right: -10%;
  animation: shapeFloat 25s ease-in-out infinite 5s;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .about {
    padding: 5rem 0;
  }

  .about-wrapper {
    gap: 3rem;
  }

  .about-description {
    font-size: 16px;
  }

  .stat-box {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 24px;
  }

  .about-features {
    padding: 2rem;
  }

  .features-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .stat-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-text {
    font-size: 12px;
  }
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio {
  position: relative;
  padding: 8rem 0;
  background: #ffffff;
  overflow: hidden;
}

/* Filter Buttons */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Alan Sans", sans-serif;
}

.filter-btn i {
  font-size: 16px;
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(220, 38, 38, 0.05);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.portfolio-item {
  position: relative;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease, margin 0.4s ease;
  max-height: 500px;
  overflow: hidden;
}

.portfolio-item.hide {
  opacity: 0;
  transform: scale(0.8);
  max-height: 0;
  margin: 0;
  pointer-events: none;
}

.portfolio-image {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

/* Image Placeholder */
.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.1) 0%,
    rgba(239, 68, 68, 0.05) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px solid rgba(220, 38, 38, 0.15);
}

.image-placeholder i {
  font-size: 64px;
  color: var(--primary-color);
  opacity: 0.3;
}

.image-placeholder p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0.5;
}

/* Portfolio Hover Effect */
.portfolio-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item:hover .portfolio-image {
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.15);
}

.portfolio-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: inherit;
}

.portfolio-item:hover .portfolio-image::before {
  opacity: 1;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 20px;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-image .image-placeholder i {
  transition: all 0.4s ease;
}

.portfolio-item:hover .image-placeholder i {
  transform: scale(1.15);
  color: var(--primary-color);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  will-change: opacity, visibility;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 10001;
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-image-wrapper {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-info {
  padding: 2rem;
  background: #ffffff;
  text-align: center;
}

.lightbox-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.lightbox-info p {
  font-size: 16px;
  color: var(--text-light);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10002;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
  color: #ffffff;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Lightbox Responsive */
@media (max-width: 992px) {
  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-counter {
    bottom: 10px;
  }
}

@media (max-width: 768px) {
  .lightbox-content {
    width: 95%;
  }

  .lightbox-info {
    padding: 1.5rem;
  }

  .lightbox-info h3 {
    font-size: 20px;
  }

  .lightbox-info p {
    font-size: 14px;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Portfolio CTA */
.portfolio-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.05) 0%,
    rgba(239, 68, 68, 0.02) 100%
  );
  border-radius: 24px;
  border: 2px dashed rgba(220, 38, 38, 0.2);
}

.portfolio-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: "Alan Sans", sans-serif;
}

.portfolio-cta p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .portfolio {
    padding: 5rem 0;
  }

  .portfolio-filters {
    gap: 0.75rem;
  }

  .filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 13px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-image {
    height: 300px;
  }

  .portfolio-cta {
    padding: 3rem 1.5rem;
  }

  .portfolio-cta h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .filter-btn {
    padding: 0.65rem 1.25rem;
    font-size: 12px;
  }

  .image-placeholder i {
    font-size: 48px;
  }

  .project-title {
    font-size: 18px;
  }
}

/* ===================================
   Services Section
   =================================== */
.services {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  overflow: hidden;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
  width: fit-content;
}

.tag-icon {
  font-size: 14px;
  color: var(--primary-color);
}

.section-tag span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.title-accent {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Service Card */
.service-card {
  position: relative;
  height: 100%;
  animation: fadeInUp 0.8s ease-out both;
}

.service-card[data-aos="fade-up"] {
  opacity: 1;
}

.service-card-inner {
  height: 100%;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover .service-card-inner {
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
  transform: translateY(-8px);
}

/* Service Icon */
.service-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.service-card:hover .icon-bg {
  background: var(--gradient-primary);
  transform: rotate(10deg) scale(1.1);
}

.service-icon i {
  font-size: 36px;
  color: var(--primary-color);
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
  color: #ffffff;
  transform: scale(1.1);
}

/* Service Content */
.service-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-text {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Service Features */
.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.service-features li i {
  font-size: 12px;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Service Link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.service-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.service-link:hover::after {
  width: 100%;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* CTA Card */
.service-card-cta .service-card-inner {
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.05) 0%,
    rgba(239, 68, 68, 0.05) 100%
  );
  border: 2px dashed rgba(220, 38, 38, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px;
}

.service-card-cta .service-card-inner::before {
  display: none;
}

.service-card-cta:hover .service-card-inner {
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.08) 0%,
    rgba(239, 68, 68, 0.08) 100%
  );
  border-color: var(--primary-color);
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-icon i {
  font-size: 36px;
  color: #ffffff;
}

.service-card-cta .service-title {
  margin-bottom: 1rem;
}

.service-card-cta .service-text {
  margin-bottom: 2rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 1.2rem 2rem;
  font-size: 15px;
}

/* Background Decoration */
.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(220, 38, 38, 0.05) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  opacity: 0.5;
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .services {
    padding: 5rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 36px;
  }

  .section-description {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card-inner {
    padding: 2rem;
  }

  .service-card-cta .service-card-inner {
    min-height: 350px;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .service-card-inner {
    padding: 1.5rem;
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }

  .service-icon i {
    font-size: 28px;
  }

  .service-title {
    font-size: 20px;
  }
}

/* ===================================
   Get a Quote Section
   =================================== */
.quote {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  overflow: hidden;
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Content */
.quote-left {
  animation: fadeInUp 0.8s ease-out;
}

.quote-description {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 500px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.2);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details p {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.contact-details p a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details p a:hover {
  color: var(--primary-color);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 50px;
  border: 1px solid rgba(220, 38, 38, 0.15);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
}

.badge-item i {
  font-size: 16px;
}

/* Right Side - Form */
.quote-right {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.quote-form-wrapper {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Form Styles */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group label i {
  font-size: 14px;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 15px;
  color: var(--text-dark);
  background: #f9fafb;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  font-family: "Alan Sans", sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dc2626' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

/* Form Note */
.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 0.5rem;
}

.form-note i {
  font-size: 12px;
  color: #10b981;
}

/* Background Decoration */
.quote-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.05;
  filter: blur(80px);
}

.bg-shape-1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -10%;
  animation: shapeFloat 20s ease-in-out infinite;
}

.bg-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  animation: shapeFloat 25s ease-in-out infinite 5s;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .quote-description {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .quote {
    padding: 5rem 0;
  }

  .quote-wrapper {
    gap: 3rem;
  }

  .quote-form-wrapper {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-item {
    padding: 1.25rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .contact-details p {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .quote-form-wrapper {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 14px;
  }

  .trust-badges {
    justify-content: center;
  }

  .badge-item {
    font-size: 12px;
    padding: 0.625rem 1rem;
  }
}

/* ===================================
   Footer Section
   =================================== */
.footer {
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.3),
    transparent
  );
}

/* Footer Main */
.footer-main {
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

/* Footer About Column */
.footer-about {
  max-width: 350px;
}

.footer-about .logo img {
  max-width: 200px;
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
}

.footer-about .logo a:hover img {
  transform: translateY(-2px);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.footer-logo .logo-subtitle {
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

/* Footer Columns */
.footer-col h3.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  font-family: "Alan Sans", sans-serif;
}

.footer-col h3.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
}

/* Footer Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-left: 0;
}

.footer-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.3s ease;
}

.footer-links li a:hover {
  color: var(--primary-color);
  padding-left: 1rem;
}

.footer-links li a:hover::before {
  height: 18px;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.footer-contact li i {
  font-size: 16px;
  color: var(--primary-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact li span {
  flex: 1;
}

.footer-contact li a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  font-size: 14px;
  color: #9ca3af;
}

.footer-credit {
  font-size: 13px;
  color: #9ca3af;
}

.footer-credit a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #ef4444;
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }

  .footer-about {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .footer-main {
    padding: 4rem 0 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .social-links {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .footer-main {
    padding: 3rem 0 1.5rem;
  }

  .footer-about .logo img {
    max-width: 160px;
  }

  .footer-logo .logo-text {
    font-size: 24px;
  }

  .social-link {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
}

.scroll-to-top i {
  font-size: 18px;
  color: var(--primary-color);
  position: absolute;
  z-index: 2;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
  transform: translateY(-2px);
}

/* Progress Ring */
.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  z-index: 1;
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.1s linear;
}

.progress-ring-progress {
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.1s linear;
  stroke-linecap: round;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .scroll-to-top i {
    font-size: 16px;
  }

  .progress-ring {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 46px;
    height: 46px;
  }

  .scroll-to-top i {
    font-size: 14px;
  }

  .progress-ring {
    width: 46px;
    height: 46px;
  }
}

/* ===================================
   Inner Page Banner
   =================================== */
.inner-banner {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
}

.inner-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.banner-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.banner-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.08;
  filter: blur(60px);
  animation: shapeFloat 15s ease-in-out infinite;
}

.banner-shape-1 {
  width: 300px;
  height: 300px;
  top: -10%;
  right: 10%;
  animation-delay: 0s;
}

.banner-shape-2 {
  width: 250px;
  height: 250px;
  bottom: -10%;
  left: -5%;
  animation-delay: 3s;
}

.banner-shape-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 20%;
  animation-delay: 6s;
}

/* Banner Circuit Animation */
.banner-circuit {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

.banner-circuit .circuit-svg {
  width: 100%;
  height: 100%;
}

.circuit-node {
  animation: nodePulseSVG 2s ease-in-out infinite;
}

.electric-pulse-small {
  filter: drop-shadow(0 0 3px rgba(255, 0, 0, 1)) drop-shadow(0 0 6px rgba(220, 38, 38, 0.8));
  opacity: 1;
}

/* Banner Content */
.inner-banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

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

.breadcrumb .separator {
  color: #9ca3af;
}

.breadcrumb .current {
  color: var(--text-dark);
}

.inner-banner-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.title-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inner-banner-description {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .inner-banner {
    padding: 6rem 0 4rem;
  }

  .inner-banner-title {
    font-size: 42px;
  }

  .inner-banner-description {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .inner-banner {
    padding: 5rem 0 3rem;
  }

  .inner-banner-title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .breadcrumb {
    font-size: 13px;
    padding: 0.5rem 1.25rem;
  }
}

@media screen and (max-width: 480px) {
  .inner-banner-title {
    font-size: 28px;
  }

  .inner-banner-description {
    font-size: 15px;
  }
}

/* ===================================
   Services Overview Section
   =================================== */
.services-overview {
  position: relative;
  padding: 8rem 0;
  background: #ffffff;
  overflow: hidden;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

/* Service Detail Card */
.service-detail-card {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border-radius: 24px;
  padding: 3rem;
  border: 2px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.service-detail-card:hover {
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.1);
  transform: translateY(-5px);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(220, 38, 38, 0.1);
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 36px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.service-detail-card:hover .service-detail-icon {
  transform: rotate(10deg) scale(1.1);
}

.service-detail-title-wrapper {
  flex: 1;
}

.service-detail-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.service-detail-subtitle {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-detail-text {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
}

/* Service Features Grid */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(220, 38, 38, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.2);
  transform: translateY(-2px);
}

.feature-badge i {
  font-size: 20px;
  color: var(--primary-color);
}

.feature-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Service Detail Benefits */
.service-detail-benefits {
  background: rgba(220, 38, 38, 0.03);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.service-detail-benefits h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.service-detail-benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-detail-benefits ul li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

.service-detail-benefits ul li i {
  font-size: 18px;
  color: #10b981;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Service Detail Link */
.service-detail-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
  align-self: flex-start;
  width: auto;
}

.service-detail-link:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.service-detail-link span {
  margin-right: 0.5rem;
}

.service-detail-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.service-detail-link:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media screen and (max-width: 992px) {
  .services-overview {
    padding: 6rem 0;
  }

  .services-detail-grid {
    gap: 3rem;
  }

  .service-detail-card {
    padding: 2.5rem;
  }

  .service-detail-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-detail-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .services-overview {
    padding: 5rem 0;
  }

  .service-detail-card {
    padding: 2rem;
  }

  .service-detail-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .service-detail-title {
    font-size: 24px;
  }

  .service-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-benefits {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .service-detail-card {
    padding: 1.5rem;
  }

  .service-detail-title {
    font-size: 22px;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
  }

  .feature-badge {
    padding: 0.875rem 1rem;
  }
}

/* ===================================
   Why Choose Services Section
   =================================== */
.why-choose-services {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
  overflow: hidden;
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.why-choose-left {
  animation: fadeInUp 0.8s ease-out;
}

.why-choose-description {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 550px;
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.why-feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.2);
}

.why-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  flex-shrink: 0;
}

.why-feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.why-feature-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

/* Right Side Features */
.why-choose-right {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.why-choose-right .why-choose-features {
  margin-bottom: 0;
}

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

.stat-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  border: 2px solid rgba(220, 38, 38, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, rgba(220, 38, 38, 0.02) 100%);
}

.stat-card-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.stat-card-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.stat-card-label {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.4;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .why-choose-services {
    padding: 6rem 0;
  }

  .why-choose-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .why-choose-description {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .why-choose-services {
    padding: 5rem 0;
  }

  .why-feature-item {
    padding: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .why-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .why-feature-content h4 {
    font-size: 16px;
  }

  .stat-card-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .stat-card-number {
    font-size: 36px;
  }
}

/* ===================================
   Services CTA Section
   =================================== */
.services-cta {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
}

.services-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 36px;
  margin: 0 auto 2rem;
  animation: pulse 2s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.services-cta-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-cta-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 16px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.services-cta .btn-primary {
  background: #ffffff;
  color: #dc2626;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.services-cta .btn-primary:hover {
  background: #f9fafb;
  color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .services-cta {
    padding: 5rem 0;
  }

  .services-cta-content h2 {
    font-size: 32px;
  }

  .services-cta-content p {
    font-size: 16px;
  }

  .services-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .services-cta-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .services-cta-content h2 {
    font-size: 28px;
  }

  .btn-large {
    padding: 1rem 2rem;
    font-size: 15px;
  }
}

/* Active nav link styling */
.nav-link.active {
  color: var(--primary-color);
  background: rgba(220, 38, 38, 0.1);
}

/* ===================================
   About Us Page Styles
   =================================== */

/* About Overview Section */
.about-overview {
  padding: 8rem 0;
  background: #ffffff;
}

.about-overview-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-overview-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border-radius: 16px;
  border: 2px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  flex-shrink: 0;
}

.highlight-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.highlight-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.about-overview-right {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.about-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.image-placeholder-about {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px solid rgba(220, 38, 38, 0.1);
}

.image-placeholder-about i {
  font-size: 80px;
  color: rgba(220, 38, 38, 0.3);
}

.image-placeholder-about p {
  font-size: 18px;
  font-weight: 600;
  color: #6b7280;
  margin: 0;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(220, 38, 38, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image-card:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.overlay-content i {
  font-size: 64px;
}

.about-stats-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.stats-badge-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-badge-text {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

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

.mission-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 24px;
  border: 2px solid rgba(220, 38, 38, 0.1);
  transition: all 0.4s ease;
}

.mission-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.1);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 2rem;
  transition: transform 0.4s ease;
}

.mission-card:hover .mission-icon {
  transform: rotate(10deg) scale(1.1);
}

.mission-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.mission-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
}

/* Core Values Section */
.core-values {
  padding: 8rem 0;
  background: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.value-card {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(220, 38, 38, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: rgba(220, 38, 38, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 32px;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

/* Why Choose About Section */
.why-choose-about {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.why-choose-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(220, 38, 38, 0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.why-choose-item:hover {
  border-color: rgba(220, 38, 38, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.1);
}

.why-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}

.why-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.why-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
}

/* About Stats Section */
.about-stats {
  padding: 8rem 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.about-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-stats .container {
  position: relative;
  z-index: 1;
}

.stats-grid-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-top: 2rem;
  width: 100%;
}

.stat-item {
  text-align: center;
  color: #ffffff;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 0;
}

.stat-item:hover::before {
  width: 120%;
  height: 200%;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item:hover .stat-icon {
  transform: scale(1.15) rotate(10deg);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -2px;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

/* About CTA Section */
.about-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-cta-text h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-cta-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.about-cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Responsive Styles for About Us Page */
@media screen and (max-width: 1200px) {
  .about-overview-wrapper {
    gap: 4rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 992px) {
  .about-overview {
    padding: 6rem 0;
  }

  .about-overview-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .core-values {
    padding: 6rem 0;
  }

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

  .why-choose-about {
    padding: 6rem 0;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .about-stats {
    padding: 6rem 0;
  }

  .stat-icon {
    width: 90px;
    height: 90px;
    font-size: 38px;
  }

  .stat-number {
    font-size: 56px;
  }
}

@media screen and (max-width: 768px) {
  .about-overview {
    padding: 4rem 0;
  }

  .about-text {
    font-size: 16px;
  }

  .about-image-card img,
  .image-placeholder-about {
    height: 350px;
  }

  .about-stats-badge {
    bottom: 1rem;
    right: 1rem;
    padding: 1.5rem 2rem;
  }

  .stats-badge-number {
    font-size: 36px;
  }

  .mission-vision {
    padding: 4rem 0;
  }

  .mission-card {
    padding: 2rem;
  }

  .mission-card h3 {
    font-size: 24px;
  }

  .core-values {
    padding: 4rem 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose-about {
    padding: 4rem 0;
  }

  .why-choose-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .about-cta {
    padding: 4rem 0;
  }

  .about-cta-text h2 {
    font-size: 32px;
  }

  .about-cta-buttons {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .btn-large {
    width: 100%;
  }

  .about-stats {
    padding: 4rem 0;
  }

  .stats-grid-large {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stat-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
    margin-bottom: 1.5rem;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .highlight-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }

  .about-image-card img,
  .image-placeholder-about {
    height: 250px;
  }

  .stats-badge-number {
    font-size: 28px;
  }

  .stats-badge-text {
    font-size: 12px;
  }

  .mission-card h3 {
    font-size: 22px;
  }

  .mission-card p {
    font-size: 15px;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
    margin-bottom: 1.25rem;
  }

  .stat-number {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .stat-label {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .stat-item {
    padding: 2rem 1.5rem;
  }

  .about-cta-text h2 {
    font-size: 28px;
  }

  .about-cta-text p {
    font-size: 16px;
  }
}

/* ===================================
   Gallery Page Styles
   =================================== */

/* Gallery Stats Section */
.gallery-stats {
  padding: 4rem 0;
  background: #f9fafb;
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
  border-radius: 12px;
  flex-shrink: 0;
}

.stat-icon-wrapper i {
  font-size: 32px;
  color: var(--primary-color);
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* Portfolio Gallery Section */
.portfolio-gallery {
  padding: 6rem 0;
  background: #ffffff;
}

/* Gallery Load More */
.gallery-load-more {
  text-align: center;
  margin-top: 4rem;
}

.gallery-load-more .btn {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
}

.gallery-load-more .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

/* Gallery CTA Section */
.gallery-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  position: relative;
  overflow: hidden;
}

.gallery-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 16px;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--primary-color);
}

/* Responsive Styles for Gallery */
@media screen and (max-width: 900px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 600px) {
  .gallery-stats {
    padding: 3rem 0;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .stat-icon-wrapper i {
    font-size: 28px;
  }

  .stat-value {
    font-size: 28px;
  }

  .portfolio-gallery {
    padding: 4rem 0;
  }

  .gallery-cta {
    padding: 4rem 0;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-text {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .stat-value {
    font-size: 24px;
  }

  .stat-label {
    font-size: 13px;
  }

  .cta-title {
    font-size: 24px;
  }
}

/* ===================================
   Blog Page Styles
   =================================== */

/* Blog Section */
.blog-section {
  padding: 6rem 0;
  background: #f9fafb;
}

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

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.blog-image {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  overflow: hidden;
}

.blog-image .image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 80px;
  color: rgba(220, 38, 38, 0.2);
}

.blog-category {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 14px;
  color: #6b7280;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-meta i {
  color: var(--primary-color);
  font-size: 13px;
}

.blog-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--primary-color);
}

.blog-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 1rem;
}

.blog-read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* Blog CTA Section */
.blog-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  position: relative;
  overflow: hidden;
}

.blog-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.blog-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blog-cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.blog-cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.blog-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Styles for Blog */
@media screen and (max-width: 1024px) {
  .blog-grid {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .blog-section {
    padding: 4rem 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-image {
    height: 220px;
  }

  .blog-image .image-placeholder {
    font-size: 60px;
  }

  .blog-title {
    font-size: 20px;
  }

  .blog-excerpt {
    font-size: 15px;
  }

  .blog-cta {
    padding: 4rem 0;
  }

  .blog-cta-content h2 {
    font-size: 32px;
  }

  .blog-cta-content p {
    font-size: 16px;
  }

  .blog-cta-buttons {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .blog-title {
    font-size: 18px;
  }

  .blog-cta-content h2 {
    font-size: 26px;
  }
}

/* ==========================================
   Contact Page Styles
   ========================================== */

/* Contact Info Section */
.contact-info-section {
  padding: 4rem 0;
  background: #f9fafb;
}

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

.contact-info-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
}

.contact-card-icon i {
  font-size: 32px;
  color: #ffffff;
}

.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-info-card p {
  font-size: 18px;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-info-card p a {
  color: #dc2626;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card p a:hover {
  color: #b91c1c;
}

.contact-label {
  display: block;
  font-size: 14px;
  color: #6b7280;
  font-weight: 400;
}

/* Contact Main Section */
.contact-main-section {
  padding: 6rem 0;
  background: #ffffff;
}

.contact-main-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Form Section */
.contact-form-section {
  background: #f9fafb;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form .form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
}

.contact-form .form-group label i {
  color: #dc2626;
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  color: #1f2937;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

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

.contact-form .btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 13px;
  color: #6b7280;
  margin-top: 1.5rem;
}

.form-note i {
  color: #10b981;
  font-size: 14px;
}

/* Right Side - Info Section */
.contact-info-section-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Business Hours Card */
.business-hours-card {
  background: #f9fafb;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.business-hours-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hours-item:hover {
  background: rgba(220, 38, 38, 0.05);
}

.hours-item .day {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
}

.hours-item .time {
  font-size: 14px;
  color: #dc2626;
  font-weight: 600;
}

/* Map Container */
.map-container {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.map-placeholder {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(239, 68, 68, 0.03) 100%);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.map-placeholder i {
  font-size: 56px;
  color: #dc2626;
  margin-bottom: 1rem;
  opacity: 0.8;
  display: inline-block;
}

.map-placeholder p {
  font-size: 17px;
  color: #1f2937;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  font-weight: 600;
  max-width: 280px;
}

.map-placeholder .btn-outline {
  background: #ffffff;
  color: #dc2626;
  border: 2px solid #dc2626;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.map-placeholder .btn-outline:hover {
  background: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.map-placeholder .btn-outline:hover i {
  color: #ffffff;
}

/* Contact Features */
.contact-features {
  background: #f9fafb;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-features h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

.contact-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-feature-item:last-child {
  border-bottom: none;
}

.contact-feature-item i {
  font-size: 20px;
  color: #10b981;
  flex-shrink: 0;
}

.contact-feature-item span {
  font-size: 15px;
  color: #374151;
  font-weight: 500;
  line-height: 1.6;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 1024px) {
  .contact-main-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-info-section {
    padding: 3rem 0;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-main-section {
    padding: 4rem 0;
  }

  .contact-form-section {
    padding: 2rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .business-hours-card,
  .contact-features {
    padding: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .contact-info-card {
    padding: 2rem 1.5rem;
  }

  .contact-card-icon {
    width: 65px;
    height: 65px;
  }

  .contact-card-icon i {
    font-size: 26px;
  }

  .contact-info-card h3 {
    font-size: 18px;
  }

  .contact-info-card p {
    font-size: 16px;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .business-hours-card h3,
  .contact-features h3 {
    font-size: 18px;
  }

  .hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .map-placeholder {
    padding: 2rem 1.5rem;
    min-height: 240px;
  }

  .map-placeholder i {
    font-size: 42px;
  }

  .map-placeholder p {
    font-size: 16px;
  }
}

/* ==========================================
   Blog Post Single Page Styles
   ========================================== */

/* Blog Post Header */
.blog-post-header {
  padding: 4rem 0 3rem;
  background: #f9fafb;
}

.blog-post-title {
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.3;
  margin: 1.5rem 0 1rem;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.blog-post-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 15px;
  color: #6b7280;
}

.blog-post-meta i {
  color: #dc2626;
  font-size: 14px;
}

/* Blog Post Content Section */
.blog-post-content-section {
  padding: 4rem 0 6rem;
  background: #ffffff;
}

.blog-post-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
  align-items: start;
}

/* Main Content */
.blog-post-main {
  background: #ffffff;
}

.blog-post-featured-image {
  margin-bottom: 3rem;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
}

.blog-post-featured-image .image-placeholder {
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blog-post-featured-image .image-placeholder i {
  font-size: 80px;
  color: #dc2626;
  opacity: 0.3;
}

.blog-post-content {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
}

.blog-post-content .lead-paragraph {
  font-size: 20px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid #dc2626;
}

.blog-post-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin: 3rem 0 1.5rem;
  line-height: 1.3;
}

.blog-post-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin: 2.5rem 0 1rem;
  line-height: 1.4;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

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

.blog-post-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.blog-post-content strong {
  font-weight: 600;
  color: #1f2937;
}

/* Blog Post CTA */
.blog-post-cta {
  margin: 3rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
  border-radius: 16px;
  border-left: 4px solid #dc2626;
  text-align: center;
}

.blog-post-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem;
}

.blog-post-cta p {
  font-size: 17px;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Blog Post Share */
.blog-post-share {
  padding: 2rem 0;
  border-top: 2px solid #e5e7eb;
  margin-top: 3rem;
}

.blog-post-share h4 {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.share-btn.facebook {
  background: #1877f2;
  color: #ffffff;
}

.share-btn.twitter {
  background: #1da1f2;
  color: #ffffff;
}

.share-btn.linkedin {
  background: #0a66c2;
  color: #ffffff;
}

.share-btn.email {
  background: #6b7280;
  color: #ffffff;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Sidebar */
.blog-post-sidebar {
  position: sticky;
  top: 8rem;
}

.sidebar-widget {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

/* Recent Posts Widget */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-post-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.recent-post-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.recent-post-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 12px;
}

.recent-post-icon i {
  font-size: 22px;
  color: #ffffff;
}

.recent-post-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.recent-post-date {
  font-size: 13px;
  color: #6b7280;
}

/* CTA Widget */
.widget-cta {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #ffffff;
  text-align: center;
}

.widget-cta-content i {
  font-size: 48px;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.widget-cta-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.widget-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.widget-cta .btn {
  background: #ffffff;
  color: #dc2626;
}

.widget-cta .btn:hover {
  background: #f9fafb;
  transform: translateY(-2px);
}

/* Categories Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  margin-bottom: 0.75rem;
}

.categories-list li:last-child {
  margin-bottom: 0;
}

.categories-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.categories-list a:hover {
  background: rgba(220, 38, 38, 0.05);
  color: #dc2626;
  padding-left: 1.5rem;
}

.categories-list i {
  margin-right: 0.75rem;
  color: #dc2626;
  font-size: 14px;
}

.categories-list span {
  color: #6b7280;
  font-size: 13px;
}

/* Related Posts */
.related-posts {
  padding: 4rem 0;
  background: #f9fafb;
}

.related-posts .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Responsive Styles for Blog Posts */
@media screen and (max-width: 1024px) {
  .blog-post-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .blog-post-sidebar {
    position: static;
  }

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

  .sidebar-widget {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .blog-post-header {
    padding: 3rem 0 2rem;
  }

  .blog-post-title {
    font-size: 32px;
  }

  .blog-post-meta {
    gap: 1rem;
  }

  .blog-post-content-section {
    padding: 3rem 0 4rem;
  }

  .blog-post-featured-image .image-placeholder {
    height: 300px;
  }

  .blog-post-featured-image .image-placeholder i {
    font-size: 60px;
  }

  .blog-post-content {
    font-size: 16px;
  }

  .blog-post-content .lead-paragraph {
    font-size: 18px;
  }

  .blog-post-content h2 {
    font-size: 26px;
  }

  .blog-post-content h3 {
    font-size: 20px;
  }

  .blog-post-cta {
    padding: 2rem;
  }

  .blog-post-cta h3 {
    font-size: 24px;
  }

  .blog-post-sidebar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  .blog-post-title {
    font-size: 26px;
  }

  .blog-post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .blog-post-content h2 {
    font-size: 22px;
  }

  .blog-post-content h3 {
    font-size: 18px;
  }

  .sidebar-widget {
    padding: 1.5rem;
  }

  .widget-title {
    font-size: 18px;
  }

  .blog-post-cta h3 {
    font-size: 20px;
  }
}

/* ===================================
   404 Error Page Styles
   =================================== */

.error-404-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

.error-404-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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='%23dc2626' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.error-404-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.error-404-animation {
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.error-404-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.error-404-icon i {
  font-size: 48px;
  color: #dc2626;
}

.error-404-number {
  font-size: 120px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: "Inter", sans-serif;
  margin-bottom: 1rem;
}

.error-404-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.error-404-description {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.error-404-buttons .btn-outline {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.error-404-buttons .btn-outline:hover {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: transparent;
}

.error-404-links {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(220, 38, 38, 0.1);
}

.error-404-links > p {
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.quick-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid rgba(220, 38, 38, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quick-link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, rgba(220, 38, 38, 0.02) 100%);
}

.quick-link-item i {
  font-size: 28px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.quick-link-item:hover i {
  transform: scale(1.1);
}

.quick-link-item span {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
}

/* 404 Page Responsive */
@media screen and (max-width: 992px) {
  .error-404-section {
    padding: 6rem 0;
    min-height: 70vh;
  }

  .error-404-number {
    font-size: 100px;
  }

  .error-404-title {
    font-size: 36px;
  }

  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .error-404-section {
    padding: 5rem 0;
  }

  .error-404-icon {
    width: 80px;
    height: 80px;
  }

  .error-404-icon i {
    font-size: 36px;
  }

  .error-404-number {
    font-size: 80px;
  }

  .error-404-title {
    font-size: 32px;
  }

  .error-404-description {
    font-size: 16px;
  }

  .error-404-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .error-404-buttons .btn-large {
    width: 100%;
    justify-content: center;
  }

  .quick-links-grid {
    gap: 0.75rem;
  }

  .quick-link-item {
    padding: 1.25rem 0.75rem;
  }

  .quick-link-item i {
    font-size: 24px;
  }

  .quick-link-item span {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .error-404-section {
    padding: 4rem 0;
  }

  .error-404-number {
    font-size: 64px;
  }

  .error-404-title {
    font-size: 28px;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   Form Message Notifications
   =================================== */
.form-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  min-width: 300px;
  max-width: 500px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
}

.form-message.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.form-message-success {
  border-left: 4px solid #10b981;
}

.form-message-error {
  border-left: 4px solid #dc2626;
}

.message-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.message-content i {
  font-size: 1.25rem;
}

.form-message-success .message-content i {
  color: #10b981;
}

.form-message-error .message-content i {
  color: #dc2626;
}

.message-content span {
  color: #1f2937;
  font-size: 0.95rem;
  line-height: 1.5;
}

.message-close {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.message-close:hover {
  color: #1f2937;
}

/* Mobile responsiveness for form messages */
@media screen and (max-width: 576px) {
  .form-message {
    min-width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    transform: translateX(0) translateY(-100px);
  }

  .form-message.show {
    transform: translateX(0) translateY(0);
  }

  .message-content span {
    font-size: 0.875rem;
  }
}
