/**
 * PT Karisa Solusi Indonesia - Main Stylesheet v2.0
 * Modern, Clean, Trust-Building Design
 * Make sure variables.css is loaded before this file.
 */

/* ============================================================
   1. BASE & RESET
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover, a:focus {
  color: var(--accent-foreground);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   2. LAYOUT
   ============================================================ */
.container {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 20px;
  width: 100%;
}

@media (min-width: 640px) {
  .container { padding: 0 28px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 40px; }
}

/* Grid */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

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

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

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

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--foreground);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

.text-sm { font-size: 0.9375rem; }
.text-lg { font-size: 1.125rem; line-height: 1.7; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 2.75rem; }

@media (min-width: 768px) {
  .text-5xl { font-size: 3.5rem; }
}

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-foreground) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   4. SPACING UTILITIES
   ============================================================ */
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }

.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }

/* ============================================================
   5. SECTION HELPERS
   ============================================================ */
.section {
  padding: var(--section-padding) 0;
}

.section-sm {
  padding: 64px 0;
}

.section-header {
  margin: 0 auto 56px;
  max-width: 680px;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--foreground);
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

/* ============================================================
   6. COMPONENTS
   ============================================================ */

/* Buttons */
.btn {
  align-items: center;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  padding: 14px 32px;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  min-height: 48px;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-base);
}

.btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px rgba(15, 44, 92, 0.25);
}

.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 6px 20px rgba(15, 44, 92, 0.35);
  transform: translateY(-2px);
  color: var(--primary-foreground);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background: var(--muted);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

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

.btn-ghost {
  background: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background: var(--muted);
}

.btn-lg { font-size: 1.125rem; padding: 18px 40px; min-height: 56px; }
.btn-sm { font-size: 0.9375rem; padding: 10px 22px; min-height: 40px; }

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--transition-base);
}

.card-hover:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.card-glass {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
}

/* Alerts */
.alert {
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 20px;
  padding: 16px 20px;
}

.alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* Badges */
.badge {
  border-radius: 100px;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 4px 12px;
}

.badge-green { background: #ecfdf5; color: #065f46; }
.badge-yellow { background: #fefce8; color: #854d0e; }
.badge-red { background: #fef2f2; color: #991b1b; }
.badge-blue { background: #eff6ff; color: #1e40af; }
.badge-gray { background: #f3f4f6; color: #4b5563; }

/* Breadcrumb */
.breadcrumb {
  align-items: center;
  color: var(--muted-foreground);
  display: flex;
  font-size: 0.9375rem;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

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

/* Pagination */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  display: flex;
  font-size: 0.9375rem;
  font-weight: 600;
  height: 44px;
  justify-content: center;
  min-width: 44px;
}

.pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination .current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Loading */
.loading-spinner {
  animation: spin 0.8s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  display: inline-block;
  height: 20px;
  width: 20px;
}

/* Forms */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  color: var(--foreground);
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  background: var(--background);
  border: 2px solid var(--input);
  border-radius: var(--radius);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 18px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  min-height: 48px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 44, 92, 0.08);
}

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

.form-error {
  color: var(--destructive);
  font-size: 0.875rem;
  margin-top: 6px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dark mode toggle */
.dark-toggle {
  background: none;
  border: none;
  border-radius: var(--radius);
  color: inherit;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 8px;
}

.dark-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.navbar-solid .dark-toggle:hover {
  background: var(--muted);
}

/* ============================================================
   7. NAVBAR
   ============================================================ */
.navbar {
  height: var(--navbar-height);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all var(--transition-base);
  z-index: 1000;
}

.navbar-transparent {
  background: transparent;
  color: #ffffff;
}

.navbar-solid {
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  color: var(--foreground);
}

.navbar-solid a { color: var(--foreground); }
.navbar-solid .nav-logo-text { color: var(--foreground); }

.navbar-inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 20px;
}

@media (min-width: 640px) {
  .navbar-inner { padding: 0 28px; }
}

@media (min-width: 1024px) {
  .navbar-inner { padding: 0 40px; }
}

.nav-logo {
  align-items: center;
  color: inherit;
  display: flex;
  font-size: 1.25rem;
  font-weight: 800;
  gap: 12px;
  letter-spacing: -0.02em;
}

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  align-items: center;
  display: none;
  gap: 4px;
}

.nav-links a {
  border-radius: var(--radius);
  color: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 10px 16px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.navbar-solid .nav-links a:hover {
  background: var(--muted);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.nav-social {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-social a {
  color: inherit;
  opacity: 0.8;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.nav-social a:hover {
  opacity: 1;
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.navbar-solid .nav-social a:hover {
  background: var(--muted);
}

.lang-switcher {
  align-items: center;
  display: flex;
  font-size: 0.875rem;
  font-weight: 600;
  gap: 6px;
}

.lang-switcher a {
  border-radius: 6px;
  color: inherit;
  opacity: 0.7;
  padding: 5px 10px;
  transition: all var(--transition-fast);
}

.lang-switcher a.active {
  background: var(--primary);
  color: var(--primary-foreground);
  opacity: 1;
}

.lang-switcher a:hover {
  opacity: 1;
}

.mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--radius);
}

.mobile-toggle span {
  background: currentColor;
  display: block;
  height: 2.5px;
  transition: all var(--transition-base);
  width: 26px;
  border-radius: 2px;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-social { display: flex; }
  .mobile-toggle { display: none; }
}

/* ============================================================
   8. MOBILE DRAWER
   ============================================================ */
.mobile-drawer {
  background: var(--card);
  box-shadow: var(--shadow-xl);
  height: 100vh;
  overflow-y: auto;
  padding: 24px;
  position: fixed;
  right: -100%;
  top: 0;
  transition: right var(--transition-slow);
  width: min(340px, 85vw);
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open { right: 0; }

.mobile-drawer-overlay {
  background: rgba(0, 0, 0, 0.5);
  inset: 0;
  opacity: 0;
  position: fixed;
  transition: all var(--transition-base);
  visibility: hidden;
  z-index: 1000;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  font-size: 1.75rem;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.mobile-drawer-close:hover {
  background: var(--muted);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 56px;
  flex: 1;
}

.mobile-drawer-links a {
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 14px 18px;
  transition: all var(--transition-fast);
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a.active {
  background: var(--muted);
  color: var(--primary);
}

.mobile-drawer-sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  padding-left: 16px;
}

.mobile-drawer-sub a {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  padding: 10px 16px;
}

.mobile-drawer-cta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.mobile-drawer-cta .btn {
  width: 100%;
  justify-content: center;
}

.mobile-drawer-social {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  justify-content: center;
}

.mobile-drawer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  color: var(--foreground);
  transition: all var(--transition-fast);
}

.mobile-drawer-social a:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
}

/* ============================================================
   9. HERO CAROUSEL
   ============================================================ */
.hero {
  align-items: center;
  color: #ffffff;
  display: flex;
  height: 100vh;
  justify-content: center;
  max-height: 950px;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  background: linear-gradient(180deg, rgba(15, 44, 92, 0.55) 0%, rgba(15, 44, 92, 0.75) 100%);
  inset: 0;
  position: absolute;
}

.hero-content {
  margin-top: 32px;
  max-width: 860px;
  padding: 0 24px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-title {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45), 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-btn {
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  text-decoration: none;
  transition: all var(--transition-base);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-btn-primary:hover {
  background: #f1f5f9;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transform: translateY(-2px);
  color: var(--primary);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

.hero-controls {
  align-items: center;
  bottom: 48px;
  display: flex;
  gap: 24px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  background: rgba(255, 255, 255, 0.35);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 12px;
  transition: all var(--transition-base);
  width: 12px;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.hero-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  transition: all var(--transition-base);
  width: 44px;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.hero-scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  font-weight: 500;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.25rem; }
}

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

/* ============================================================
   10. TRUSTED BY
   ============================================================ */
.trusted-strip {
  background: var(--muted);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-strip h3 {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 600;
}

.bank-logos {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  justify-content: center;
}

.bank-logos span {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

/* ============================================================
   11. DIRECTOR SECTION
   ============================================================ */
.director-section {
  background: var(--background);
}

.director-grid {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
}

.director-content { order: 2; }
.director-image { order: 1; }

.director-image-card {
  background: linear-gradient(135deg, var(--accent) 0%, rgba(15,44,92,0.06) 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.director-image-card img {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
}

.director-label {
  color: var(--accent-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.director-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.2;
}

.director-title {
  color: var(--muted-foreground);
  font-size: 1.0625rem;
  margin-bottom: 24px;
}

.director-quote {
  border-left: 3px solid var(--primary);
  color: var(--muted-foreground);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.8;
  padding-left: 24px;
}

@media (min-width: 768px) {
  .director-grid { grid-template-columns: 1fr 1fr; }
  .director-content { order: 1; }
  .director-image { order: 2; }
}

/* ============================================================
   12. ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--muted);
}

.about-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

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

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-base);
}

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

.about-card h3 {
  align-items: center;
  display: flex;
  font-size: 1.375rem;
  gap: 14px;
  margin-bottom: 20px;
}

.about-icon {
  align-items: center;
  background: var(--accent);
  border-radius: 12px;
  color: var(--accent-foreground);
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.about-card ul {
  list-style: none;
  padding: 0;
}

.about-card li {
  color: var(--muted-foreground);
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.about-card li::before {
  background: var(--accent-foreground);
  border-radius: 50%;
  content: '';
  height: 8px;
  left: 0;
  position: absolute;
  top: 18px;
  width: 8px;
}

/* ============================================================
   13. STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 1;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.9375rem;
  opacity: 0.9;
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .stat-number { font-size: 3.25rem; }
}

/* ============================================================
   14. SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, 1fr);
}

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

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

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 32px;
  position: relative;
  transition: all var(--transition-base);
}

.service-card::before {
  background: linear-gradient(90deg, var(--primary), var(--accent-foreground));
  content: '';
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleX(0);
  transition: transform var(--transition-base);
  width: 100%;
  border-radius: 0 0 4px 4px;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

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

.service-icon {
  align-items: center;
  background: var(--accent);
  border-radius: 16px;
  color: var(--accent-foreground);
  display: flex;
  font-size: 1.5rem;
  height: 60px;
  justify-content: center;
  margin-bottom: 24px;
  width: 60px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card a {
  align-items: center;
  display: inline-flex;
  font-size: 0.9375rem;
  font-weight: 600;
  gap: 8px;
  color: var(--primary);
}

.service-card a:hover {
  gap: 12px;
}

/* ============================================================
   15. PROCESS TIMELINE
   ============================================================ */
.process-section {
  background: var(--background);
}

.process-timeline {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  position: relative;
}

@media (min-width: 768px) {
  .process-timeline {
    gap: 24px;
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step { position: relative; text-align: center; }

.process-step-number {
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent-foreground));
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 1.375rem;
  font-weight: 800;
  height: 68px;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  width: 68px;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(15,44,92,0.2);
}

.process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.process-step p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================================
   16. REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--muted);
  overflow: hidden;
}

.reviews-header { margin-bottom: 48px; text-align: center; }

.reviews-rating {
  align-items: center;
  background: var(--card);
  border-radius: 100px;
  box-shadow: var(--shadow);
  display: inline-flex;
  gap: 10px;
  margin-bottom: 28px;
  padding: 14px 28px;
}

.reviews-rating .stars {
  color: #f59e0b;
  font-size: 1.375rem;
  letter-spacing: 2px;
}

.reviews-rating .count {
  font-size: 1.0625rem;
  font-weight: 700;
}

.reviews-rail {
  animation: scrollRail 45s linear infinite;
  display: flex;
  gap: 24px;
  width: max-content;
}

.reviews-rail:hover { animation-play-state: paused; }

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  padding: 32px;
  width: 360px;
}

.review-header {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent-foreground));
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.review-name {
  font-size: 1rem;
  font-weight: 600;
}

.review-stars {
  color: #f59e0b;
  font-size: 0.9375rem;
  letter-spacing: 1px;
}

.review-text {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================================
   17. FAQ
   ============================================================ */
.faq-section {
  background: var(--background);
}

.faq-list {
  margin: 0 auto;
  max-width: 820px;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  align-items: center;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 600;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  width: 100%;
  gap: 16px;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.25rem;
  transition: transform var(--transition-base);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 24px;
}

.faq-answer-inner {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================================
   18. CONTACT
   ============================================================ */
.contact-section {
  background: var(--background);
}

.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.contact-card h3 {
  align-items: center;
  display: flex;
  font-size: 1.125rem;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-detail {
  align-items: flex-start;
  display: flex;
  font-size: 1rem;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-detail svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail a {
  color: var(--foreground);
  word-break: break-word;
}

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

/* Map */
.map-container {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  height: 320px;
  overflow: hidden;
  width: 100%;
}

.map-container iframe {
  border: none;
  height: 100%;
  width: 100%;
}

/* ============================================================
   19. CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  color: #fff;
  font-size: 2.25rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.125rem;
  margin: 0 auto 36px;
  max-width: 640px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.cta-section .btn {
  background: #fff;
  color: var(--primary);
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 18px 44px;
  min-height: 56px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cta-section .btn:hover {
  background: #f8fafc;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .cta-section h2 { font-size: 2.75rem; }
}

/* ============================================================
   20. WHY CHOOSE
   ============================================================ */
.why-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, 1fr);
}

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

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

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-base);
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  align-items: center;
  background: var(--accent);
  border-radius: 14px;
  color: var(--accent-foreground);
  display: flex;
  font-size: 1.375rem;
  height: 52px;
  justify-content: center;
  margin-bottom: 20px;
  width: 52px;
}

.why-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================================
   21. DIFFERENCE SECTION
   ============================================================ */
.diff-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, 1fr);
}

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

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

.diff-item {
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  transition: all var(--transition-fast);
}

.diff-item:hover {
  background: var(--accent);
  border-color: var(--accent-foreground);
}

.diff-item svg {
  color: var(--accent-foreground);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.diff-item span {
  font-size: 0.9375rem;
  font-weight: 600;
}

/* ============================================================
   22. LOCATIONS
   ============================================================ */
.locations-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

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

.location-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.location-card:hover {
  box-shadow: var(--shadow-lg);
}

.location-header {
  align-items: center;
  background: var(--muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  padding: 22px 28px;
}

.location-header h3 {
  align-items: center;
  display: flex;
  font-size: 1.125rem;
  gap: 10px;
  font-weight: 700;
}

.location-badge {
  background: var(--primary);
  border-radius: 100px;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.location-body { padding: 28px; }

/* ============================================================
   23. FOOTER
   ============================================================ */
.footer {
  background: #0b1220;
  color: #9ca3af;
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  margin-bottom: 56px;
}

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

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.375rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
  max-width: 340px;
}

.footer-links h4 {
  color: #fff;
  font-size: 1.0625rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: #9ca3af;
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover { color: #fff; }

.footer-contact p {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 44px;
  justify-content: center;
  transition: all var(--transition-fast);
  width: 44px;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6b7280;
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  gap: 12px;
  padding-top: 28px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================================
   24. FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: fixed;
  right: 24px;
  z-index: 900;
}

.floating-btn {
  align-items: center;
  animation: floatIn 0.5s ease-out;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  color: #fff;
  display: flex;
  height: 56px;
  justify-content: center;
  transition: all var(--transition-base);
  width: 56px;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.floating-btn .tooltip {
  position: absolute;
  right: 68px;
  background: var(--foreground);
  color: var(--background);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
}

.floating-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 72px;
}

.floating-wa { background: #25d366; }
.floating-ig { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.floating-tt { background: #000000; }

/* ============================================================
   25. ERROR PAGES
   ============================================================ */
.error-page {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 48px;
  text-align: center;
}

.error-page h1 {
  color: var(--primary);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
}

.error-page h2 {
  font-size: 1.875rem;
  margin: 16px 0 12px;
}

.error-page p {
  color: var(--muted-foreground);
  margin-bottom: 28px;
  max-width: 480px;
  font-size: 1rem;
}

/* ============================================================
   26. ADMIN PANEL
   ============================================================ */
.admin-body {
  background: #f8fafc;
  font-family: var(--font-sans);
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: #fff;
  border-right: 1px solid #e2e8f0;
  height: 100vh;
  overflow-y: auto;
  padding: 24px 0;
  position: fixed;
  width: 260px;
}

.admin-sidebar-logo {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 16px;
  padding: 0 24px 24px;
}

.admin-sidebar-logo h2 {
  color: #0f172a;
  font-size: 1.125rem;
}

.admin-nav {
  list-style: none;
  padding: 0 12px;
}

.admin-nav li { margin-bottom: 2px; }

.admin-nav a {
  align-items: center;
  border-radius: 8px;
  color: #475569;
  display: flex;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 12px;
  padding: 10px 14px;
  transition: all 0.2s;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: #eff6ff;
  color: #3b82f6;
}

.admin-main {
  margin-left: 260px;
  padding: 32px;
}

.admin-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

.admin-header h1 {
  color: #0f172a;
  font-size: 1.5rem;
}

.admin-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 24px;
  padding: 24px;
}

.admin-table {
  border-collapse: collapse;
  font-size: 0.875rem;
  width: 100%;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 16px;
  text-align: left;
}

.admin-table th {
  background: #f8fafc;
  color: #475569;
  font-weight: 600;
}

.admin-table tbody tr:hover { background: #f8fafc; }

.admin-table img {
  border-radius: 8px;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.admin-btn {
  align-items: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 6px;
  padding: 8px 16px;
  transition: all 0.2s;
}

.admin-btn-primary {
  background: #3b82f6;
  color: #fff;
}

.admin-btn-primary:hover { background: #2563eb; }

.admin-btn-danger {
  background: #ef4444;
  color: #fff;
}

.admin-btn-danger:hover { background: #dc2626; }

.admin-btn-secondary {
  background: #f1f5f9;
  color: #475569;
}

.admin-btn-secondary:hover { background: #e2e8f0; }

.admin-form-label {
  color: #334155;
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.admin-form-input,
.admin-form-textarea,
.admin-form-select {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  color: #0f172a;
  font-family: inherit;
  font-size: 0.875rem;
  padding: 10px 14px;
  transition: all 0.2s;
  width: 100%;
}

.admin-form-input:focus,
.admin-form-textarea:focus,
.admin-form-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

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

.admin-login {
  align-items: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.admin-login-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 420px;
  padding: 40px;
  width: 100%;
}

.admin-login-card h1 {
  color: #0f172a;
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}

/* ============================================================
   27. KEYFRAMES
   ============================================================ */
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================================
   28. RESPONSIVE - ADMIN
   ============================================================ */
@media (max-width: 1023px) {
  .admin-layout { grid-template-columns: 1fr; }

  .admin-sidebar {
    border-bottom: 1px solid #e2e8f0;
    border-right: none;
    height: auto;
    position: relative;
    width: 100%;
  }

  .admin-main { margin-left: 0; }
}

/* ============================================================
   29. RESPONSIVE - GENERAL MOBILE FIXES
   ============================================================ */
@media (max-width: 767px) {
  body { font-size: 16px; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 1.625rem; }
  .section-header p { font-size: 1rem; }

  .btn { padding: 14px 28px; font-size: 1rem; }
  .btn-lg { padding: 16px 32px; }

  .hero { min-height: 560px; max-height: 800px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-content { padding: 0 20px; }

  .stats-section { padding: 56px 0; }
  .stat-number { font-size: 2.25rem; }
  .stats-grid { gap: 28px; }

  .services-grid { gap: 16px; }
  .service-card { padding: 24px; }

  .review-card { width: 300px; padding: 24px; }

  .contact-form { padding: 24px; }

  .cta-section { padding: 72px 0; }
  .cta-section h2 { font-size: 1.75rem; }

  .floating-buttons { right: 16px; bottom: 16px; }
  .floating-btn { width: 50px; height: 50px; }

  .footer { padding: 56px 0 28px; }
  .footer-grid { gap: 36px; margin-bottom: 40px; }
}

/* ============================================================
   30. PRINT
   ============================================================ */
@media print {
  .navbar,
  .floating-buttons,
  .footer,
  .cta-section {
    display: none !important;
  }

  .hero { min-height: 300px; }
}
