/* ============================================
   AYDO ELECTRICAL INNOVATIONS
   Utility-First CSS — Custom Tailwind-Inspired
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --orange: #FE8D01;
  --orange-light: #F9AD5A;
  --apricot: #FCC995;
  --gray-light: #F4F1F1;
  --black: #000000;
  --white: #FFFFFF;
  --font-main: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Display --- */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* --- Flexbox --- */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-6 { gap: 3rem; }

/* --- Grid --- */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Position --- */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

/* --- Sizing --- */
.w-full { width: 100%; }
.w-auto { width: auto; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 36rem; }
.max-w-xl { max-width: 48rem; }
.max-w-2xl { max-width: 56rem; }
.max-w-3xl { max-width: 72rem; }
.max-w-4xl { max-width: 80rem; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }

/* --- Margin --- */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }
.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-6 { padding-top: 3rem; padding-bottom: 3rem; }
.py-8 { padding-top: 4rem; padding-bottom: 4rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-6 { padding-left: 3rem; padding-right: 3rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-6 { padding: 3rem; }

/* --- Typography --- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }

/* --- Colors --- */
.text-black { color: var(--black); }
.text-white { color: var(--white); }
.text-orange { color: var(--orange); }
.text-orange-light { color: var(--orange-light); }
.text-gray { color: #6B7280; }
.text-gray-dark { color: #374151; }

.bg-white { background-color: var(--white); }
.bg-black { background-color: var(--black); }
.bg-orange { background-color: var(--orange); }
.bg-orange-light { background-color: var(--orange-light); }
.bg-apricot { background-color: var(--apricot); }
.bg-gray-light { background-color: var(--gray-light); }
.bg-transparent { background-color: transparent; }

/* --- Border & Radius --- */
.border-0 { border: none; }
.border { border: 1px solid #E5E7EB; }
.border-b { border-bottom: 1px solid #E5E7EB; }
.border-orange { border-color: var(--orange); }
.border-gray { border-color: #E5E7EB; }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

/* --- Shadow --- */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* --- Overflow --- */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* --- Cursor --- */
.cursor-pointer { cursor: pointer; }

/* --- Transitions --- */
.transition { transition: all var(--transition); }
.transition-slow { transition: all 0.4s ease; }

/* --- Opacity --- */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

/* ============================================
   COMPONENT STYLES
   ============================================ */

/* --- Sticky Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1),
              0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  color: var(--black);
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: perspective(50px) translateZ(0);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0.75rem;
  right: 0.75rem;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin: 0 auto;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background: rgba(254, 141, 1, 0.08);
  transform: perspective(50px) translateZ(5px);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 1.5rem);
}

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transform: perspective(100px) rotateX(3deg) rotateY(-3deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(254, 141, 1, 0.35),
              0 2px 4px rgba(0, 0, 0, 0.1),
              inset 0 -2px 3px rgba(0, 0, 0, 0.15),
              inset 0 2px 3px rgba(255, 255, 255, 0.3);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--apricot) 100%);
  transform: perspective(100px) rotateX(-3deg) rotateY(3deg) scale(1.05) translateY(-2px);
  box-shadow: 0 8px 20px rgba(254, 141, 1, 0.45),
              0 4px 8px rgba(0, 0, 0, 0.15),
              inset 0 -2px 3px rgba(0, 0, 0, 0.1),
              inset 0 2px 3px rgba(255, 255, 255, 0.4);
}

.nav-cta:active {
  transform: perspective(100px) rotateX(0) rotateY(0) scale(0.98);
}

/* --- Navbar Logo --- */
.navbar-logo {
  height: 40px;
  width: auto;
  transform: perspective(100px) rotateY(-5deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.navbar-logo:hover {
  transform: perspective(100px) rotateY(5deg) scale(1.08);
  filter: drop-shadow(0 8px 12px rgba(254, 141, 1, 0.25));
}

/* --- Mobile Menu --- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(254, 141, 1, 0.1);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu-btn:hover span {
  background: var(--orange);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .nav-link {
  display: block;
  padding: 1rem 1rem;
  margin: 0.35rem 0;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
  transform: none;
  transition: all 0.2s ease;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  background: rgba(254, 141, 1, 0.1);
  transform: translateX(4px);
  padding-left: 1.25rem;
}

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

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--apricot) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
  opacity: 0.25;
  border-radius: 50%;
}

/* --- Hero Background Image --- */
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-158109-465d-94f1-c1949c5c5073?w=1400&h=900&fit=crop&crop=center') center/cover no-repeat;
  opacity: 0.07;
  z-index: 0;
}

/* --- Hero Floating Icons --- */
.hero-float-icon {
  position: absolute;
  z-index: 5;
  animation: heroFloat 6s ease-in-out infinite;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
}

.hero-float-icon i {
  font-size: 2.8rem;
  opacity: 0.18;
  font-weight: 300;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, var(--apricot) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 6px 12px rgba(254, 141, 1, 0.4)) 
          drop-shadow(0 2px 4px rgba(254, 141, 1, 0.2));
  transform: perspective(120px) rotateX(12deg) rotateY(-12deg) translateZ(10px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-float-icon:hover i {
  transform: perspective(120px) rotateX(-8deg) rotateY(8deg) scale(1.15) translateZ(20px);
  opacity: 0.35;
  filter: drop-shadow(0 10px 20px rgba(254, 141, 1, 0.5)) 
          drop-shadow(0 4px 8px rgba(254, 141, 1, 0.3));
}

.hero-float-1 {
  top: 12%;
  left: 6%;
  animation-delay: 0s;
}

.hero-float-1 i {
  font-size: 3.2rem;
}

.hero-float-2 {
  bottom: 18%;
  right: 8%;
  animation-delay: 1.5s;
}

.hero-float-2 i {
  font-size: 2.4rem;
}

.hero-float-3 {
  top: 55%;
  left: 12%;
  animation-delay: 3s;
}

.hero-float-3 i {
  font-size: 2.6rem;
}

.hero-float-4 {
  top: 25%;
  right: 12%;
  animation-delay: 2s;
}

.hero-float-4 i {
  font-size: 2.2rem;
}

.hero-float-5 {
  bottom: 35%;
  right: 25%;
  animation-delay: 4.5s;
}

.hero-float-5 i {
  font-size: 2rem;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
  75% { transform: translateY(-25px) rotate(2deg); }
}

/* --- Entrance Animations --- */
@keyframes animFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes animScaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.anim-fade-up {
  animation: animFadeUp 0.7s ease both;
}

/* Scroll-triggered animations (hidden until in view) */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="slide-left"] {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="slide-left"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="slide-right"] {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="slide-right"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="scale-in"] {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate="scale-in"].is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delay for grid items */
[data-animate="fade-up"]:nth-child(1) { transition-delay: 0.0s; }
[data-animate="fade-up"]:nth-child(2) { transition-delay: 0.05s; }
[data-animate="fade-up"]:nth-child(3) { transition-delay: 0.1s; }
[data-animate="fade-up"]:nth-child(4) { transition-delay: 0.15s; }
[data-animate="fade-up"]:nth-child(5) { transition-delay: 0.2s; }
[data-animate="fade-up"]:nth-child(6) { transition-delay: 0.25s; }
[data-animate="fade-up"]:nth-child(7) { transition-delay: 0.3s; }
[data-animate="fade-up"]:nth-child(8) { transition-delay: 0.35s; }
[data-animate="fade-up"]:nth-child(9) { transition-delay: 0.4s; }
[data-animate="fade-up"]:nth-child(10) { transition-delay: 0.45s; }
[data-animate="fade-up"]:nth-child(11) { transition-delay: 0.5s; }
[data-animate="fade-up"]:nth-child(12) { transition-delay: 0.55s; }
[data-animate="fade-up"]:nth-child(n+13) { transition-delay: 0.6s; }

/* --- CTA Button --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transform: perspective(100px) rotateX(3deg) rotateY(-3deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 20px rgba(254, 141, 1, 0.4),
              0 3px 6px rgba(0, 0, 0, 0.15),
              inset 0 -2px 4px rgba(0, 0, 0, 0.15),
              inset 0 2px 4px rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  cursor: pointer;
}

.btn-primary:active {
  transform: perspective(100px) rotateX(0) rotateY(0) scale(0.98) translateY(0);
  box-shadow: 0 3px 10px rgba(254, 141, 1, 0.3),
              inset 0 -1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(145deg, rgba(254, 141, 1, 0.05) 0%, rgba(254, 141, 1, 0.1) 100%);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--orange);
  border-radius: var(--radius-full);
  cursor: pointer;
  transform: perspective(100px) rotateX(3deg) rotateY(-3deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 16px rgba(254, 141, 1, 0.15),
              0 2px 4px rgba(0, 0, 0, 0.05),
              inset 0 -2px 3px rgba(0, 0, 0, 0.05),
              inset 0 2px 3px rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  transform: perspective(100px) rotateX(-3deg) rotateY(3deg) scale(1.05) translateY(-4px);
  box-shadow: 0 10px 24px rgba(254, 141, 1, 0.35),
              0 4px 8px rgba(0, 0, 0, 0.1),
              inset 0 -2px 3px rgba(0, 0, 0, 0.15),
              inset 0 2px 3px rgba(255, 255, 255, 0.3);
}

.btn-secondary svg {
  transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
  transform: translateX(3px);
}

/* --- Contact Ribbon --- */
.contact-ribbon {
  background: var(--black);
  color: var(--white);
  font-size: 0.9rem;
}

.contact-ribbon a {
  color: var(--orange-light);
  transition: color var(--transition);
}

.contact-ribbon a:hover {
  color: var(--orange);
}

/* --- Section Styles --- */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6B7280;
  max-width: 36rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* --- Service Card --- */
.service-card {
  background: var(--white);
  border: 1px solid #F0F0F0;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  border-radius: 0 0 4px 0;
  transition: height var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--apricot);
}

.service-card:hover::before {
  height: 100%;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  transition: background var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--apricot);
}

/* 3D Colorful Service Card Icons */
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #ffffff !important;
  transform: perspective(100px) rotateX(5deg) rotateY(-5deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Colorful gradients for each service icon (cycles through 8 colors) */
.service-card:nth-child(8n+1) .service-card-icon {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.service-card:nth-child(8n+2) .service-card-icon {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.service-card:nth-child(8n+3) .service-card-icon {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.service-card:nth-child(8n+4) .service-card-icon {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.service-card:nth-child(8n+5) .service-card-icon {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.service-card:nth-child(8n+6) .service-card-icon {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.service-card:nth-child(8n+7) .service-card-icon {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.service-card:nth-child(8n+8) .service-card-icon {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

/* 3D hover effect for service icons */
.service-card:hover .service-card-icon {
  transform: perspective(100px) rotateX(-5deg) rotateY(5deg) scale(1.15) translateY(-4px);
  filter: brightness(1.1);
}

/* Shine effect on service icons */
.service-card-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  border-radius: 16px;
  transition: left 0.5s ease;
}

.service-card:hover .service-card-icon::after {
  left: 100%;
}

.service-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

/* --- Mission & Vision Cards --- */
.mission-vision-card {
  background: var(--white);
  border: 1px solid #F0F0F0;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.mission-vision-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--apricot);
}

.mission-vision-card:hover::before {
  opacity: 1;
}

.mission-vision-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: #ffffff !important;
  transform: perspective(100px) rotateX(5deg) rotateY(-5deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Mission icon - Blue gradient */
.mission-vision-card:first-child .mission-vision-icon {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

/* Vision icon - Purple gradient */
.mission-vision-card:last-child .mission-vision-icon {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

/* 3D hover effect */
.mission-vision-card:hover .mission-vision-icon {
  transform: perspective(100px) rotateX(-5deg) rotateY(5deg) scale(1.15) translateY(-4px);
  filter: brightness(1.1);
}

/* Shine effect */
.mission-vision-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  border-radius: 20px;
  transition: left 0.5s ease;
}

.mission-vision-card:hover .mission-vision-icon::after {
  left: 100%;
}

.mission-vision-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.mission-vision-text {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.mission-vision-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.mv-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gray-light);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  transition: all var(--transition);
}

/* 3D colorful mv-tag icons */
.mv-tag i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem !important;
  color: #ffffff !important;
  transform: perspective(50px) rotateX(5deg) rotateY(-5deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Individual tag icon colors */
.mv-tag:nth-child(1) i {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35), inset 0 -1px 2px rgba(0,0,0,0.2);
}

.mv-tag:nth-child(2) i {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35), inset 0 -1px 2px rgba(0,0,0,0.2);
}

.mv-tag:nth-child(3) i {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35), inset 0 -1px 2px rgba(0,0,0,0.2);
}

/* For Vision card tags */
.mission-vision-card:last-child .mv-tag:nth-child(1) i {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35), inset 0 -1px 2px rgba(0,0,0,0.2);
}

.mission-vision-card:last-child .mv-tag:nth-child(2) i {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.35), inset 0 -1px 2px rgba(0,0,0,0.2);
}

.mission-vision-card:last-child .mv-tag:nth-child(3) i {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35), inset 0 -1px 2px rgba(0,0,0,0.2);
}

/* 3D hover effect for tag icons */
.mv-tag:hover i {
  transform: perspective(50px) rotateX(-5deg) rotateY(5deg) scale(1.2) translateY(-2px);
  filter: brightness(1.1);
}

/* Shine effect */
.mv-tag i::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  border-radius: 8px;
  transition: left 0.5s ease;
}

.mv-tag:hover i::after {
  left: 100%;
}

.mission-vision-card:hover .mv-tag {
  background: var(--apricot);
}

/* --- About Cards --- */
.about-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid #F0F0F0;
  transition: all var(--transition);
}

.about-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--apricot);
}

.about-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.about-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about-card-text {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.7;
}

/* --- Google Reviews Widget --- */
.reviews-widget {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.reviews-header {
  padding: 1.5rem;
  border-bottom: 1px solid #F0F0F0;
}

.google-logo {
  font-size: 1.25rem;
  font-weight: 700;
}

.google-logo-g { color: #4285F4; }
.google-logo-o1 { color: var(--orange); }
.google-logo-o2 { color: #EA4335; }
.google-logo-g2 { color: #4285F4; }
.google-logo-l { color: #34A853; }
.google-logo-e { color: #EA4335; }

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #FBBC04;
  font-size: 1.25rem;
}

.star-empty {
  color: #E5E7EB;
  font-size: 1.25rem;
}

.review-card {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #F5F5F5;
  transition: background var(--transition);
}

.review-card:last-child {
  border-bottom: none;
}

.review-card:hover {
  background: #FAFAFA;
}

.review-author {
  font-weight: 700;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.reviews-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(145deg, var(--gray-light) 0%, #e8e9eb 100%);
  font-weight: 700;
  color: var(--orange);
  border-radius: var(--radius-full);
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transform: perspective(100px) rotateX(3deg) rotateY(-3deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08),
              0 2px 4px rgba(0, 0, 0, 0.04),
              inset 0 -2px 3px rgba(0, 0, 0, 0.05),
              inset 0 2px 3px rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.reviews-cta:hover {
  background: linear-gradient(145deg, var(--apricot) 0%, var(--orange-light) 100%);
  color: var(--white);
  transform: perspective(100px) rotateX(-3deg) rotateY(3deg) scale(1.05) translateY(-4px);
  box-shadow: 0 10px 24px rgba(254, 141, 1, 0.25),
              0 4px 8px rgba(0, 0, 0, 0.1),
              inset 0 -2px 3px rgba(0, 0, 0, 0.05),
              inset 0 2px 3px rgba(255, 255, 255, 0.4);
  border-color: var(--apricot);
}

.reviews-cta svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.reviews-cta:hover svg {
  transform: translateX(3px);
}

/* --- Google Reviews Slider --- */
.google-logo-inline {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transform: perspective(100px) rotateX(5deg);
  display: inline-block;
  transition: transform 0.3s ease;
}

.google-logo-inline:hover {
  transform: perspective(100px) rotateX(0) scale(1.1);
}

.google-logo-inline .google-logo-g { 
  color: #4285F4; 
  text-shadow: 0 3px 6px rgba(66, 133, 244, 0.4);
}
.google-logo-inline .google-logo-o1 { 
  color: #FBBC04; 
  text-shadow: 0 3px 6px rgba(251, 188, 4, 0.4);
}
.google-logo-inline .google-logo-o2 { 
  color: #EA4335; 
  text-shadow: 0 3px 6px rgba(234, 67, 53, 0.4);
}
.google-logo-inline .google-logo-g2 { 
  color: #4285F4; 
  text-shadow: 0 3px 6px rgba(66, 133, 244, 0.4);
}
.google-logo-inline .google-logo-l { 
  color: #34A853; 
  text-shadow: 0 3px 6px rgba(52, 168, 83, 0.4);
}
.google-logo-inline .google-logo-e { 
  color: #EA4335; 
  text-shadow: 0 3px 6px rgba(234, 67, 53, 0.4);
}

.review-stars-lg {
  color: #FBBC04;
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(251, 188, 4, 0.4), 0 4px 8px rgba(251, 188, 4, 0.2);
  transform: perspective(50px) rotateX(8deg);
  display: inline-block;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.reviews-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews-slider-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
}

.reviews-slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  gap: 1.5rem;
}

.review-slide-card {
  flex: 0 0 300px;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transform: perspective(500px) rotateX(2deg) rotateY(-2deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04),
              inset 0 -2px 4px rgba(0, 0, 0, 0.02),
              inset 0 2px 4px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.review-slide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC04, #34A853);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-slide-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #fff8f0 100%);
  transform: perspective(500px) rotateX(-3deg) rotateY(3deg) translateY(-8px) scale(1.02);
  border-color: var(--apricot);
  box-shadow: 0 16px 40px rgba(254, 141, 1, 0.15),
              0 8px 16px rgba(0, 0, 0, 0.1),
              0 2px 4px rgba(0, 0, 0, 0.05),
              inset 0 -2px 4px rgba(0, 0, 0, 0.02);
}

.review-slide-card:hover::before {
  opacity: 1;
}

/* Shine effect on review cards */
.review-slide-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.review-slide-card:hover::after {
  transform: rotate(45deg) translateX(100%);
}

.review-slide-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-slide-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(254, 141, 1, 0.35),
              inset 0 -2px 3px rgba(0, 0, 0, 0.15),
              inset 0 2px 3px rgba(255, 255, 255, 0.3);
  transform: perspective(30px) rotateX(5deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-slide-card:hover .review-slide-avatar {
  transform: perspective(30px) rotateX(-5deg) scale(1.1);
  box-shadow: 0 6px 18px rgba(254, 141, 1, 0.45),
              inset 0 -2px 3px rgba(0, 0, 0, 0.1),
              inset 0 2px 3px rgba(255, 255, 255, 0.4);
}

.review-slide-meta {
  flex: 1;
  min-width: 0;
}

.review-slide-author {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}

.review-slide-time {
  display: block;
  font-size: 0.75rem;
  color: #9CA3AF;
}

.review-slide-google-icon {
  flex-shrink: 0;
  opacity: 0.6;
}

.review-slide-stars {
  color: #FBBC04;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(251, 188, 4, 0.4);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.review-slide-text {
  font-size: 0.85rem;
  color: #4B5563;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition);
}

.review-slide-card:hover .review-slide-link {
  opacity: 1;
  transform: translateX(0);
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition);
  flex-shrink: 0;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-btn:disabled:hover {
  background: var(--white);
  color: var(--black);
  border-color: #E5E7EB;
  box-shadow: none;
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--black);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(254, 141, 1, 0.15);
}

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

.form-select {
  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='%236B7280' d='M6 8.825L0.576 3.4l.848-.848L6 7.132l4.576-4.58.848.848z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-success {
  display: none;
  padding: 1rem;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-sm);
  color: #065F46;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  padding: 1rem;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-sm);
  color: #991B1B;
  font-weight: 500;
}

.form-error.show {
  display: block;
}

/* Form Validation Styles */
.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
  border-color: #EF4444;
  background-color: #FEF2F2;
}

.form-input.invalid:focus,
.form-select.invalid:focus,
.form-textarea.invalid:focus {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group {
  position: relative;
}

.validation-message {
  display: none;
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 0.25rem;
}

.validation-message.show {
  display: block;
}

/* --- Page Transitions --- */
#app-content {
  opacity: 1;
  transition: opacity 0.2s ease;
}

#app-content.fade-out {
  opacity: 0;
}

#app-content.fade-in {
  opacity: 1;
}

/* --- About Page Styles --- */

/* About Hero Banner - matches home page hero */
.about-hero-banner {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--black) 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.about-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(254, 141, 1, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating icons in about hero */
.about-hero-banner .hero-float-icon i {
  opacity: 0.12;
}

.about-hero-banner .hero-float-1 {
  top: 15%;
  left: 8%;
}

.about-hero-banner .hero-float-2 {
  bottom: 20%;
  right: 10%;
}

.about-hero-banner .hero-float-3 {
  top: 60%;
  left: 15%;
}

.about-hero-banner .hero-float-4 {
  top: 30%;
  right: 15%;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.about-breadcrumb a {
  color: var(--orange-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
  color: var(--white);
}

.about-breadcrumb .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.about-hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Content Section */
.about-content-section {
  padding: 4rem 0;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 0 1rem;
}

.about-image-col {
  order: -1;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(254, 141, 1, 0.1);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.2),
    0 12px 24px rgba(254, 141, 1, 0.15);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 
    0 6px 20px rgba(254, 141, 1, 0.4),
    0 3px 6px rgba(0, 0, 0, 0.1);
  transform: perspective(50px) rotateX(5deg);
}

.about-text-col {
  padding: 1rem;
}

.about-section-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--black);
  line-height: 1.2;
}

.about-paragraph {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-features-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: flex-start;
}

.about-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, var(--gray-light) 0%, var(--white) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  transform: perspective(100px) rotateX(5deg) rotateY(-5deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.12),
    0 4px 8px rgba(0, 0, 0, 0.06),
    inset 0 -3px 6px rgba(0, 0, 0, 0.08),
    inset 0 3px 6px rgba(255, 255, 255, 0.9);
}

.about-feature-item:hover .about-feature-icon {
  transform: perspective(100px) rotateX(-5deg) rotateY(5deg) scale(1.15);
  box-shadow: 
    0 15px 35px rgba(254, 141, 1, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.1),
    inset 0 -3px 6px rgba(0, 0, 0, 0.06),
    inset 0 3px 6px rgba(255, 255, 255, 0.7);
}

.about-feature-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
}

/* Mission & Vision Section */
.about-mission-vision {
  padding: 4rem 0;
  background: var(--gray-light);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 1rem;
}

.mv-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: perspective(1000px) rotateX(2deg);
}

.mv-card:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(254, 141, 1, 0.1);
}

.mv-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(145deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  transform: perspective(100px) rotateX(8deg) rotateY(-8deg);
  box-shadow: 
    0 12px 30px rgba(254, 141, 1, 0.4),
    0 6px 12px rgba(0, 0, 0, 0.1),
    inset 0 -4px 8px rgba(0, 0, 0, 0.15),
    inset 0 4px 8px rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mv-card:hover .mv-icon {
  transform: perspective(100px) rotateX(-8deg) rotateY(8deg) scale(1.1);
  box-shadow: 
    0 16px 40px rgba(254, 141, 1, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.15),
    inset 0 -4px 8px rgba(0, 0, 0, 0.1),
    inset 0 4px 8px rgba(255, 255, 255, 0.4);
}

.mv-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--black);
}

.mv-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* About Values Section */
.about-values {
  padding: 4rem 0;
}

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

.value-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: perspective(1000px) rotateX(2deg);
  border: 1px solid #F0F0F0;
}

/* 3D Colorful Value Card Icons - like service cards */
.value-icon-3d {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff !important;
  transform: perspective(100px) rotateX(5deg) rotateY(-5deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Colorful gradients for each value icon */
.value-card:nth-child(4n+1) .value-icon-3d {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.value-card:nth-child(4n+2) .value-icon-3d {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.value-card:nth-child(4n+3) .value-icon-3d {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.value-card:nth-child(4n+4) .value-icon-3d {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

/* 3D hover effect for value icons */
.value-card:hover .value-icon-3d {
  transform: perspective(100px) rotateX(-5deg) rotateY(5deg) scale(1.15) translateY(-4px);
  filter: brightness(1.1);
}

/* Shine effect on value icons */
.value-icon-3d::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  border-radius: 16px;
  transition: left 0.5s ease;
}

.value-card:hover .value-icon-3d::after {
  left: 100%;
}

.value-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.value-card-text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* About text content */
.about-text-content {
  max-width: 48rem;
  margin: 0 auto;
}

/* Modern Why Choose Us Section */
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.why-feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: perspective(500px) rotateX(2deg);
}

.why-feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(254, 141, 1, 0.2);
  transform: perspective(500px) rotateX(0deg) translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(254, 141, 1, 0.1);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff !important;
  transform: perspective(100px) rotateX(5deg) rotateY(-5deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Colorful gradients for feature icons */
.why-feature-card:nth-child(6n+1) .why-feature-icon {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.why-feature-card:nth-child(6n+2) .why-feature-icon {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.why-feature-card:nth-child(6n+3) .why-feature-icon {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.why-feature-card:nth-child(6n+4) .why-feature-icon {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.why-feature-card:nth-child(6n+5) .why-feature-icon {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.why-feature-card:nth-child(6n+6) .why-feature-icon {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.why-feature-card:hover .why-feature-icon {
  transform: perspective(100px) rotateX(-5deg) rotateY(5deg) scale(1.15) translateY(-3px);
  filter: brightness(1.1);
}

/* Shine effect */
.why-feature-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  border-radius: 14px;
  transition: left 0.5s ease;
}

.why-feature-card:hover .why-feature-icon::after {
  left: 100%;
}

.why-feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-feature-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* Stats Row */
.why-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.why-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: perspective(500px) rotateX(3deg);
}

.why-stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(254, 141, 1, 0.2);
  transform: perspective(500px) rotateX(0deg) translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.why-stat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff !important;
  transform: perspective(100px) rotateX(5deg) rotateY(-5deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.why-stat-icon.bg-green {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.why-stat-icon.bg-blue {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.why-stat-icon.bg-orange {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.why-stat-icon.bg-purple {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.why-stat-card:hover .why-stat-icon {
  transform: perspective(100px) rotateX(-5deg) rotateY(5deg) scale(1.1);
}

.why-stat-content {
  display: flex;
  flex-direction: column;
}

.why-stat-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.why-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Old styles - keeping for compatibility */
.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: perspective(500px) rotateX(5deg);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.05);
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: perspective(500px) rotateX(0deg) translateY(-5px) scale(1.03);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 5px 15px rgba(254, 141, 1, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange-light);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(254, 141, 1, 0.3);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* About Areas Section */
.about-areas {
  padding: 4rem 0;
  background: var(--gray-light);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 0 1rem;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--black);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: perspective(200px) rotateX(2deg);
}

.area-item:hover {
  transform: perspective(200px) rotateX(0deg) translateX(8px) translateY(-3px);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.12),
    0 6px 12px rgba(254, 141, 1, 0.15);
}

.area-item i {
  color: var(--orange);
  font-size: 1.2rem;
}

/* Section Label */
.section-label {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(254, 141, 1, 0.1);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-label.light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange-light);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header .section-title {
  margin-top: 0.5rem;
}

/* Responsive About Page - Mobile First */
@media (min-width: 640px) {
  .about-hero-banner {
    padding: 5rem 0 4rem;
  }

  .about-hero-title {
    font-size: 2.25rem;
  }

  .about-section-title {
    font-size: 1.75rem;
  }

  .about-paragraph {
    font-size: 1rem;
  }

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

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

  .value-card {
    padding: 1.5rem;
  }

  .value-card-title {
    font-size: 1.1rem;
  }

  .value-card-text {
    font-size: 0.9rem;
  }

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

  .why-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .why-feature-card {
    padding: 1.5rem;
  }

  .why-feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .why-feature-card h3 {
    font-size: 1rem;
  }

  .why-feature-card p {
    font-size: 0.85rem;
  }

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

  .why-stat-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .why-stat-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .why-stat-number {
    font-size: 1.5rem;
  }

  .why-stat-label {
    font-size: 0.8rem;
  }

  .why-stats {
    gap: 1.25rem;
  }

  .stat-box {
    padding: 1.5rem;
  }

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

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

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

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .about-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .about-image-col {
    order: 0;
  }

  .about-image-wrapper img {
    min-height: 350px;
  }

  .about-image-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .why-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-hero-title {
    font-size: 2.5rem;
  }

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

  .areas-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* --- Footer --- */
.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--apricot), var(--orange));
  opacity: 0.8;
}

/* Footer Top Grid */
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col {
  position: relative;
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  transform: perspective(100px) rotateY(-3deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-logo:hover img {
  transform: perspective(100px) rotateY(3deg) scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(254, 141, 1, 0.4));
}

/* Footer Description */
.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transform: perspective(50px) rotateX(3deg) rotateY(-3deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2),
              inset 0 -2px 3px rgba(0,0,0,0.2),
              inset 0 2px 3px rgba(255,255,255,0.1);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  transform: perspective(50px) rotateX(-3deg) rotateY(3deg) scale(1.15) translateY(-3px);
  box-shadow: 0 8px 20px rgba(254, 141, 1, 0.4),
              inset 0 -2px 3px rgba(0,0,0,0.15),
              inset 0 2px 3px rgba(255,255,255,0.3);
  border-color: transparent;
}

/* Footer Titles */
.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange-light);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 0.15rem;
  width: 20px;
  text-align: center;
}

/* 3D Small Footer Contact Icons */
.contact-icon-3d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px !important;
  height: 28px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: 8px;
  color: white !important;
  font-size: 0.75rem !important;
  transform: perspective(50px) rotateX(3deg) rotateY(-3deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: none;
  margin-top: 0;
  flex-shrink: 0;
}

.contact-icon-3d:hover {
  transform: perspective(50px) rotateX(-3deg) rotateY(3deg) scale(1.1) translateY(-2px);
  filter: brightness(1.1);
  box-shadow: none;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.footer-contact a:hover {
  color: var(--orange-light);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.15rem;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  margin: 1.5rem 0;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  width: 100%;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-credit {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-credit a {
  color: #c084fc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-credit a:hover {
  color: #d8b4fe;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
}

/* Responsive Footer */
@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }

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

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

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transform: perspective(100px) rotateX(5deg) rotateY(-5deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: perspective(100px) rotateX(-5deg) rotateY(5deg) scale(1.15) translateY(-6px);
}

.whatsapp-float svg {
  fill: #ffffff !important;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
  transform: scale(1.1);
}

.whatsapp-float path {
  fill: #ffffff !important;
}

@keyframes whatsappPulse {
  0%, 100% { 
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45),
                0 4px 8px rgba(0, 0, 0, 0.15),
                inset 0 -3px 6px rgba(0, 0, 0, 0.2),
                inset 0 3px 6px rgba(255, 255, 255, 0.3);
  }
  50% { 
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6),
                0 6px 12px rgba(0, 0, 0, 0.2),
                inset 0 -3px 6px rgba(0, 0, 0, 0.15),
                inset 0 3px 6px rgba(255, 255, 255, 0.4);
  }
}

/* --- About Visual Row (Image + Stats) --- */
.about-visual-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Electricity Canvas Animation */
.electricity-canvas {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 140%;
  pointer-events: none;
  opacity: 0.12;
  z-index: 0;
}

.about-visual-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex: 1;
  min-height: 280px;
}

.about-visual-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
  display: block;
}

.about-visual-img:hover img {
  transform: scale(1.05);
  filter: brightness(1.15) contrast(1.1) drop-shadow(0 0 25px rgba(254, 141, 1, 0.5));
}

.about-visual-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
  flex: 1;
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  min-height: 80px;
}

.about-stat-item:hover {
  background: var(--apricot);
  transform: translateY(-2px);
}

/* 3D Colorful Stat Icons */
.about-stat-item:nth-child(1) > i {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.about-stat-item:nth-child(2) > i {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.about-stat-item:nth-child(3) > i {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.about-stat-item:nth-child(4) > i {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.about-stat-item > i,
.about-stat-item .fa-solid {
  font-size: 1.5rem !important;
  color: #ffffff !important;
  flex-shrink: 0;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  border-radius: 16px !important;
  align-items: center !important;
  justify-content: center !important;
  transform: perspective(100px) rotateX(5deg) rotateY(-5deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.about-stat-item > i::before,
.about-stat-item .fa-solid::before {
  position: relative;
  z-index: 2;
}

/* 3D hover effect */
.about-stat-item:hover > i,
.about-stat-item:hover .fa-solid {
  transform: perspective(100px) rotateX(-5deg) rotateY(5deg) scale(1.15) translateY(-4px);
  filter: brightness(1.1);
}

/* Shine effect */
.about-stat-item > i::after,
.about-stat-item .fa-solid::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  border-radius: 16px;
  transition: left 0.5s ease;
}

.about-stat-item:hover > i::after,
.about-stat-item:hover .fa-solid::after {
  left: 100%;
}

.about-stat-item strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.2;
}

.about-stat-item span {
  display: block;
  font-size: 0.8rem;
  color: #6B7280;
}

@media (min-width: 768px) {
  .about-visual-row {
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
  }

  .about-visual-img,
  .about-visual-stats {
    flex: 1 1 50%;
    width: 50%;
  }

  .about-visual-img img {
    min-height: 100%;
    height: 100%;
  }

  .about-visual-stats {
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
  }

  .about-stat-item {
    padding: 1.5rem;
    min-height: 100px;
  }
}

/* --- Scroll to Top --- */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(254, 141, 1, 0.4),
              0 4px 8px rgba(0, 0, 0, 0.15),
              inset 0 -3px 6px rgba(0, 0, 0, 0.2),
              inset 0 3px 6px rgba(255, 255, 255, 0.3);
  opacity: 0;
  transform: perspective(100px) rotateX(5deg) rotateY(-5deg) translateY(20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 50;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: perspective(100px) rotateX(5deg) rotateY(-5deg) translateY(0);
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--apricot) 100%);
  transform: perspective(100px) rotateX(-5deg) rotateY(5deg) scale(1.1) translateY(-6px);
  box-shadow: 0 12px 32px rgba(254, 141, 1, 0.5),
              0 6px 12px rgba(0, 0, 0, 0.2),
              inset 0 -3px 6px rgba(0, 0, 0, 0.15),
              inset 0 3px 6px rgba(255, 255, 255, 0.4);
}

.scroll-top-btn i {
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

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

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* --- Tablet (768px+) --- */
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:text-left { text-align: left; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:px-6 { padding-left: 3rem; padding-right: 3rem; }
  .md\:py-8 { padding-top: 4rem; padding-bottom: 4rem; }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:max-w-4xl { max-width: 80rem; }
  .lg\:px-8 { padding-left: 4rem; padding-right: 4rem; }

  .mobile-menu-btn {
    display: none !important;
  }

  .mobile-nav {
    display: none !important;
  }

  .desktop-nav {
    display: flex !important;
  }
}

/* --- Mobile default (<768px) --- */
@media (max-width: 767px) {
  .desktop-nav {
    display: none !important;
  }

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

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

  .section-title {
    font-size: 1.75rem;
  }

  .hero-content {
    padding: 3rem 1.5rem;
  }

  .review-slide-card {
    flex: 0 0 260px;
  }

  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }

  .review-slide-card {
    flex: 0 0 280px;
  }
}

@media (min-width: 1024px) {
  .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

  .review-slide-card {
    flex: 0 0 300px;
  }
}

/* --- Blog Section Styles --- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog Card with 3D Effect */
.blog-card {
  background: var(--white);
  border: 1px solid #F0F0F0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--apricot), var(--orange));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px) perspective(1000px) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(254, 141, 1, 0.1);
  border-color: var(--apricot);
}

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

/* Blog Card Image */
.blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--apricot) 0%, var(--orange) 100%);
  color: var(--white);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(254, 141, 1, 0.4);
  transform: translateZ(20px);
}

/* Blog Card Content */
.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.blog-card-meta i {
  margin-right: 0.25rem;
  color: var(--apricot);
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--black);
  transition: color var(--transition);
}

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

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: all var(--transition);
}

.blog-card-link:hover {
  gap: 0.75rem;
  color: var(--apricot);
}

.blog-card-link i {
  transition: transform var(--transition);
}

.blog-card:hover .blog-card-link i {
  transform: translateX(4px);
}

/* Blog Categories Grid */
.blog-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .blog-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-categories-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Blog Category Card with 3D Icon */
.blog-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid #F0F0F0;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.blog-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, rgba(254, 141, 1, 0.1) 0%, transparent 100%);
  transition: height var(--transition);
}

.blog-category-card:hover {
  transform: translateY(-6px) perspective(1000px) rotateX(-3deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--apricot);
}

.blog-category-card:hover::before {
  height: 100%;
}

/* Colorful 3D Category Icons */
.blog-category-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Shine effect on icons */
.blog-category-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.blog-category-card:hover .blog-category-icon::after {
  left: 100%;
}

.blog-category-card:hover .blog-category-icon {
  transform: perspective(100px) rotateX(-5deg) rotateY(5deg) scale(1.1) translateY(-4px);
}

/* Colorful gradients for each category icon */
.blog-category-card:nth-child(6n+1) .blog-category-icon {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.blog-category-card:nth-child(6n+2) .blog-category-icon {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.blog-category-card:nth-child(6n+3) .blog-category-icon {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.blog-category-card:nth-child(6n+4) .blog-category-icon {
  background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.blog-category-card:nth-child(6n+5) .blog-category-icon {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.blog-category-card:nth-child(6n+6) .blog-category-icon {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4), inset 0 -2px 4px rgba(0,0,0,0.2);
}

.blog-category-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.blog-category-count {
  font-size: 0.75rem;
  color: var(--gray);
}

/* Blog Hero Float Icons */
.hero-float-icon i.fa-newspaper,
.hero-float-icon i.fa-book-open {
  color: var(--apricot);
  font-size: 2rem;
}

/* Blog Responsive Adjustments */
@media (max-width: 767px) {
  .blog-card-image {
    height: 180px;
  }

  .blog-card-content {
    padding: 1.25rem;
  }

  .blog-card-title {
    font-size: 1rem;
  }

  .blog-category-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

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

  .blog-category-card {
    padding: 1.25rem 0.75rem;
  }
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.blog-page-btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.blog-page-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.blog-page-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Loading Spinner Animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Blog Post Page Styles */
.blog-featured-image {
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-content {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.blog-post-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--black);
}

.blog-post-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--black);
}

.blog-post-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.blog-post-content li {
  margin-bottom: 0.5rem;
}

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

.blog-post-content a {
  color: var(--orange);
  text-decoration: underline;
}

.blog-post-content a:hover {
  color: var(--apricot);
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .blog-post-content {
    padding: 1.5rem;
  }
}

/* Blog Post Actions */
.blog-post-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
}

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

.blog-post-meta-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.blog-post-category-badge {
  background: var(--orange);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Blog Post Hero */
.blog-post-hero {
  min-height: 300px;
}

.blog-post-hero .section-label {
  color: var(--apricot);
  margin-bottom: 1rem;
  display: inline-block;
}

.blog-post-hero .about-hero-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .blog-post-hero .about-hero-title {
    font-size: 1.5rem;
  }
}
