﻿/* ==========================================================================
   Apple Repair Centre - Connaught Place
   Design System & Modern CSS
   ========================================================================== */

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Color Palette: Apple Tech Aesthetic */
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f7;
  --color-bg-dark: #0a0a0c;
  --color-card-dark: #141416;
  --color-card-dark-hover: #1c1c1f;
  --color-card-light: #ffffff;
  
  --color-text: #1d1d1f;
  --color-text-muted: #6e6e73;
  --color-text-light: #f5f5f7;
  --color-text-dim: #86868b;
  
  --color-primary: #0071e3;
  --color-primary-hover: #0077ed;
  --color-primary-glow: rgba(0, 113, 227, 0.25);
  
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #22bf5b;
  --color-whatsapp-dark: #128c7e;
  --color-whatsapp-glow: rgba(37, 211, 102, 0.25);
  
  --color-border-light: rgba(0, 0, 0, 0.08);
  --color-border-dark: rgba(255, 255, 255, 0.1);
  --color-border-hover: rgba(0, 113, 227, 0.4);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 25px rgba(0, 113, 227, 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1.25;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }

.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: rgba(0, 113, 227, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(0, 113, 227, 0.15);
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin-bottom: 16px;
  color: var(--color-text);
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--color-primary-glow);
}
.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--color-whatsapp-glow);
}
.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-text);
  border: 1px solid var(--color-border-light);
}
.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Top Announcement Bar */
.top-announcement {
  background-color: #0d0d10;
  color: var(--color-text-light);
  font-size: 0.825rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.announcement-text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #30d158;
  border-radius: 50%;
  box-shadow: 0 0 8px #30d158;
  animation: pulseAnimation 2s infinite;
}
@keyframes pulseAnimation {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}
.announcement-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-contact-link, .top-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a1a1a6;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.top-contact-link:hover, .top-whatsapp-link:hover {
  color: #ffffff;
}
.top-contact-link .icon, .top-whatsapp-link .icon {
  width: 14px;
  height: 14px;
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-smooth);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #1d1d1f, #2d2d30);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.brand-icon svg {
  width: 22px;
  height: 22px;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.brand-tagline {
  font-size: 0.725rem;
  color: var(--color-text-dim);
  font-weight: 500;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
}
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 18px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d1d6;
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 6px 2px;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: #ffffff;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

/* Header CTA Group */
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-header-call {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  font-size: 0.875rem;
}
.btn-header-call:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.btn-header-whatsapp {
  background-color: var(--color-whatsapp);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.875rem;
}
.btn-header-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
}

@media (max-width: 640px) {
  .btn-header-call, .btn-header-whatsapp {
    display: none;
  }
}

/* Hamburger Button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 1024px) {
  .hamburger-btn {
    display: none;
  }
}
.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer Menu */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background-color: #121214;
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.5);
  transition: right var(--transition-smooth);
  overflow-y: auto;
}
.mobile-nav-drawer.open {
  right: 0;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.mobile-nav-list {
  list-style: none;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-link {
  color: #d1d1d6;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mobile-nav-link:hover {
  color: var(--color-primary);
}
.mobile-nav-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #1e1e24 0%, #0a0a0c 100%);
  color: var(--color-text-light);
  padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 90px);
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%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/svg%3E");
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #a1a1a6;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: #2997ff;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.3;
}
.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: #a1a1a6;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.btn-hero-call {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
}
.btn-hero-call:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}
.btn-hero-whatsapp {
  background-color: var(--color-whatsapp);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
}
.btn-hero-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.btn-hero-enquiry {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
}
.btn-hero-enquiry:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #86868b;
}
.trust-icon {
  width: 18px;
  height: 18px;
  color: #30d158;
  flex-shrink: 0;
}

/* Hero Graphic Glass Showcase */
.hero-card-glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 113, 227, 0.15);
  backdrop-filter: blur(12px);
}
.tech-workstation-preview {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background-color: #1a1a1e;
}
.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.workstation-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 600;
  color: #f5f5f7;
}
.status-indicator {
  width: 8px;
  height: 8px;
  background-color: #30d158;
  border-radius: 50%;
  box-shadow: 0 0 6px #30d158;
}
.hero-quick-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.quick-spec-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  text-align: center;
}
.spec-label {
  display: block;
  font-size: 0.725rem;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.spec-val {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: #f5f5f7;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   TRUST STRIP SECTION (4 Cards)
   ========================================================================== */
.trust-strip-section {
  background-color: #121215;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.trust-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 113, 227, 0.4);
}
.trust-icon-box {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.trust-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f5f5f7;
  margin-bottom: 4px;
}
.trust-desc {
  font-size: 0.8125rem;
  color: #86868b;
  line-height: 1.45;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: var(--color-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
  }
}
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.about-experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.exp-icon {
  font-size: 1.75rem;
}
.about-experience-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
}
.about-experience-badge span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.section-lead {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.5;
}
.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px;
}
.feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
}
.bullet-check {
  width: 22px;
  height: 22px;
  background-color: rgba(0, 113, 227, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}
/* ==========================================================================
   SERVICES SECTION (14 Cards)
   ========================================================================== */
.services-section {
  background-color: var(--color-bg-alt);
  padding: clamp(60px, 8vw, 100px) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
.service-card {
  background: var(--color-card-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 113, 227, 0.35);
}
.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.08), rgba(0, 113, 227, 0.15));
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 18px;
}
.service-icon-wrap svg {
  width: 24px;
  height: 24px;
}
.service-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}
.service-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
  margin-top: auto;
}
.service-enquire-btn:hover {
  color: var(--color-primary-hover);
  gap: 10px;
}

/* ==========================================================================
   DEVICE CATEGORIES (4 Large Cards)
   ========================================================================== */
.device-category-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: #0c0c0e;
  color: var(--color-text-light);
}
.device-category-section .section-title {
  color: #ffffff;
}
.device-category-section .section-subtitle {
  color: #86868b;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.category-card {
  background: #161619;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}
.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 113, 227, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 113, 227, 0.15);
}
.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0, 113, 227, 0.15);
  color: #2997ff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.category-symbol {
  font-size: 2rem;
}
.category-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}
.category-summary {
  font-size: 0.875rem;
  color: #a1a1a6;
  line-height: 1.5;
  margin-bottom: 20px;
}
.category-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex-grow: 1;
}
.category-features li {
  font-size: 0.8125rem;
  color: #d1d1d6;
  display: flex;
  align-items: center;
  gap: 8px;
}
.category-features li::before {
  content: '•';
  color: #2997ff;
  font-size: 1.2rem;
  line-height: 0;
}
.btn-category {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: all var(--transition-fast);
  margin-top: auto;
}
.btn-category:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

/* ==========================================================================
   COMMON PROBLEMS SECTION (12 Grid Items)
   ========================================================================== */
.problems-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: var(--color-bg);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
@media (min-width: 640px) {
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .problems-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.problem-item {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-fast);
}
.problem-item:hover {
  background-color: #ffffff;
  border-color: rgba(0, 113, 227, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.problem-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.problem-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}
.problem-disclaimer-note {
  background-color: rgba(0, 113, 227, 0.05);
  border: 1px solid rgba(0, 113, 227, 0.15);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
.problem-disclaimer-note .note-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1.2;
}
.problem-disclaimer-note p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   WHY CHOOSE US (6 Cards)
   ========================================================================== */
.why-us-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: var(--color-bg-alt);
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 640px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.why-card {
  background: var(--color-card-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 113, 227, 0.35);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.why-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   REPAIR PROCESS (4-Step Visual Timeline)
   ========================================================================== */
.process-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: var(--color-bg);
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  position: relative;
}
@media (min-width: 640px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}
.process-step {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition-smooth);
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 113, 227, 0.4);
  box-shadow: var(--shadow-md);
}
.step-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 14px;
  background: rgba(0, 113, 227, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}
.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}
/* ==========================================================================
   LOCAL SEO SECTION
   ========================================================================== */
.local-seo-section {
  padding: clamp(60px, 8vw, 90px) 0;
  background-color: var(--color-bg-alt);
}
.local-seo-card {
  background: var(--color-card-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 50px);
  box-shadow: var(--shadow-md);
}
.local-seo-body p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 18px;
}
.address-callout {
  background: rgba(0, 113, 227, 0.04);
  border: 1px solid rgba(0, 113, 227, 0.15);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
}
.callout-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.callout-content strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.callout-content span {
  font-size: 0.95rem;
  color: var(--color-text);
}
.seo-keywords-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-light);
}
.kw-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-light);
}

/* ==========================================================================
   SERVICE AREA SECTION
   ========================================================================== */
.service-area-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: var(--color-bg);
}
.area-badges-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media (min-width: 640px) {
  .area-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .area-badges-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.area-badge-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-fast);
}
.area-badge-card.primary {
  background: rgba(0, 113, 227, 0.05);
  border-color: rgba(0, 113, 227, 0.25);
}
.area-badge-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 113, 227, 0.4);
  box-shadow: var(--shadow-sm);
}
.area-pin {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.area-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}
.area-type {
  font-size: 0.775rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ SECTION (Accordion)
   ========================================================================== */
.faq-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: var(--color-bg-alt);
}
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--color-card-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-fast);
}
.faq-item.active {
  border-color: rgba(0, 113, 227, 0.35);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
}
.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--transition-smooth);
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--color-primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px 24px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
/* ==========================================================================
   LEAD GENERATION SECTION
   ========================================================================== */
.lead-gen-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: radial-gradient(circle at 50% 0%, #1a1a20 0%, #0a0a0c 100%);
  color: #ffffff;
}
.lead-gen-card {
  max-width: 900px;
  margin: 0 auto;
  background: #141417;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 113, 227, 0.15);
}
.lead-gen-section .section-title {
  color: #ffffff;
}
.lead-gen-section .section-subtitle {
  color: #a1a1a6;
  margin-bottom: 32px;
}
.enquiry-form {
  width: 100%;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-group.full-width {
    grid-column: span 2;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d1d1d6;
}
.form-label .req {
  color: #ff453a;
}
.form-label .optional {
  color: #86868b;
  font-size: 0.775rem;
  font-weight: 400;
}
.form-control {
  width: 100%;
  background-color: #1e1e23;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #ffffff;
  font-family: inherit;
  transition: all var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--color-primary);
  background-color: #24242b;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.25);
}
.form-control.error {
  border-color: #ff453a;
}
.form-error {
  display: none;
  font-size: 0.775rem;
  color: #ff453a;
  margin-top: 2px;
}
.form-error.visible {
  display: block;
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1a6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
select.form-control option {
  background-color: #1e1e23;
  color: #ffffff;
}
textarea.form-control {
  resize: vertical;
  min-height: 90px;
}
.form-privacy-note {
  font-size: 0.8125rem;
  color: #86868b;
  margin-top: 14px;
}

/* WhatsApp Fallback Modal */
.whatsapp-fallback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.fallback-box {
  background: #18181c;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.fallback-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.fallback-box h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.fallback-box p {
  color: #a1a1a6;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.btn-text-close {
  background: transparent;
  border: none;
  color: #86868b;
  font-size: 0.875rem;
  margin-top: 14px;
  cursor: pointer;
  text-decoration: underline;
}

/* ==========================================================================
   CONTACT & GOOGLE MAP SECTION
   ========================================================================== */
.contact-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: var(--color-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
.contact-info-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
}
.business-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border-light);
}
.biz-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 4px;
}
.biz-cat {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
}
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  flex-grow: 1;
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.detail-icon {
  font-size: 1.25rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.detail-text strong {
  display: block;
  font-size: 0.825rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.detail-text span, .detail-text a {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
}
.detail-text a:hover {
  color: var(--color-primary);
}
.contact-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.map-embed-wrapper {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.map-container {
  width: 100%;
  height: 380px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
}
.map-action-bar {
  padding: 14px;
  background: #ffffff;
  border-top: 1px solid var(--color-border-light);
}
.btn-directions {
  background-color: #1d1d1f;
  color: #ffffff;
  padding: 12px 20px;
}
.btn-directions:hover {
  background-color: #000000;
}

/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */
.final-cta-section {
  padding: 0 0 clamp(60px, 8vw, 100px);
  background-color: var(--color-bg);
}
.final-cta-card {
  background: linear-gradient(135deg, #0d0d10 0%, #1a1a24 100%);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 60px) clamp(24px, 4vw, 48px);
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}
.final-cta-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}
.final-cta-desc {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: #a1a1a6;
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #08080a;
  color: #a1a1a6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 0.9fr 1.2fr;
    gap: 40px;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}
.footer-text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-trust-pill {
  display: inline-block;
  font-size: 0.775rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1d1d6;
}
.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #86868b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: #ffffff;
}
.footer-contact-info p {
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 10px;
}
.footer-contact-info strong {
  color: #ffffff;
}
.footer-phone a {
  color: #2997ff;
  text-decoration: none;
}
.footer-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.btn-footer {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 6px 12px;
  font-size: 0.775rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.btn-footer:hover {
  background: rgba(255, 255, 255, 0.15);
}
.btn-footer-wa {
  background: var(--color-whatsapp-dark);
  color: #ffffff;
  padding: 6px 12px;
  font-size: 0.775rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.8rem;
  color: #636366;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-disclaimer {
  max-width: 600px;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* ==========================================================================
   FIXED MOBILE BOTTOM CTA BAR
   ========================================================================== */
.mobile-fixed-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(18, 18, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 4px 10px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .mobile-fixed-cta-bar {
    display: none;
  }
  .site-footer {
    padding-bottom: 70px;
  }
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast);
}
.mobile-cta-btn svg {
  width: 18px;
  height: 18px;
}
.mobile-cta-btn.cta-call {
  color: #2997ff;
}
.mobile-cta-btn.cta-whatsapp {
  color: #30d158;
}
.mobile-cta-btn.cta-quote {
  color: #f5f5f7;
}
.mobile-cta-btn:active {
  transform: scale(0.95);
}

/* ==========================================================================
   ENHANCED IMAGERY & GALLERY STYLES
   ========================================================================== */

/* About Composite Images */
.about-images-composite {
  position: relative;
  padding-bottom: 30px;
}
.about-img-main-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.about-img-main-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-floating-wrap {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 0, 0, 0.3);
  border: 3px solid #ffffff;
}
.about-floating-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .about-img-floating-wrap {
    display: none;
  }
}

/* Category Card Thumbnails */
.category-thumb-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  background-color: #121215;
}
.category-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}
.category-card:hover .category-thumb {
  transform: scale(1.06);
}
.category-thumb-wrap .category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Gallery Section */
.gallery-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: #0d0d10;
  color: #ffffff;
}
.gallery-section .section-title {
  color: #ffffff;
}
.gallery-section .section-subtitle {
  color: #a1a1a6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-card {
  background: #151518;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}
.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 113, 227, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 113, 227, 0.2);
}
.gallery-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #1a1a1e;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}
.gallery-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: #2997ff;
}
.gallery-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.gallery-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
}
.gallery-desc {
  font-size: 0.85rem;
  color: #a1a1a6;
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}
.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2997ff;
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
  margin-top: auto;
}
.gallery-link:hover {
  color: #ffffff;
  gap: 10px;
}
