@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #214cad;
  --primary-light: rgba(33, 76, 173, 0.1);
  --primary-hover: #1a3d8a;
  --secondary: #f19b3b;
  --secondary-light: rgba(241, 155, 59, 0.1);
  --secondary-hover: #d9882e;
  --dark: #1f1e1c;
  --foreground: #1f1e1c;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-700: #b91c1c;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --blue-50: #eff6ff;
  --blue-200: #bfdbfe;
  --blue-500: #3b82f6;
  --yellow-500: #eab308;
  --purple-500: #a855f7;
  --pink-500: #ec4899;
  --teal-500: #14b8a6;
  --orange-500: #f97316;
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.font-poppins {
  font-family: var(--font-heading);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ==================== NAVBAR ==================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

@media (min-width: 640px) {
  .navbar-inner { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .navbar-inner { padding: 0 2rem; }
}

.navbar-logo img {
  height: 3rem;
  cursor: pointer;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  padding: 0.25rem 0;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--primary);
}

.navbar-links a.active {
  border-bottom: 2px solid var(--primary);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--gray-600);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 1rem 1.5rem;
}

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

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu a {
  display: block;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
}

.mobile-menu a:hover {
  color: var(--primary);
  background: var(--gray-50);
}

.mobile-menu a.active {
  color: var(--primary);
  background: var(--blue-50);
}

.mobile-menu .btn {
  margin-top: 1rem;
  width: 100%;
  border-radius: var(--radius);
  height: 3rem;
}

/* ==================== BUTTONS ==================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
  gap: 0.5rem;
  font-family: var(--font-sans);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 14px rgba(33, 76, 173, 0.25);
}

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

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 14px rgba(241, 155, 59, 0.25);
}

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

.btn-outline {
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--foreground);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-outline:hover {
  background: var(--gray-100);
}

.btn-outline-primary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-outline-primary:hover {
  background: rgba(33, 76, 173, 0.05);
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-white:hover {
  background: var(--gray-100);
}

.btn-ghost {
  background: transparent;
  border: none;
  color: var(--gray-600);
  padding: 0.5rem;
  border-radius: var(--radius);
}

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

.btn-destructive {
  background: var(--red-500);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-destructive:hover {
  background: var(--red-700);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  height: 3.5rem;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  height: 2rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: var(--radius);
}

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

.btn-full {
  width: 100%;
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

/* ==================== HERO SECTION ==================== */

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--gray-50);
  padding: 4rem 0 8rem;
}

@media (min-width: 768px) {
  .hero-section { padding: 6rem 0 8rem; }
}

.hero-text-col h1 {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-text-col h1 { font-size: 3.75rem; }
}

.hero-text-col .hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-badge .dot,
.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
}

.hero-badge.secondary {
  background: var(--secondary-light);
  color: var(--secondary);
}

.hero-badge.secondary .dot {
  background: var(--secondary);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

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

.hero-title .text-primary { color: var(--primary); }
.hero-title .text-secondary { color: var(--secondary); }

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}

.hero-features {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

.hero-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-features .feature svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  background: var(--gray-200);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(33,76,173,0.2), rgba(241,155,59,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-image-card .icon-box {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.hero-image-card .icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
}

.hero-image-card h4 {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--foreground);
}

.hero-image-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.hero-blur-1 {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  background: rgba(241,155,59,0.2);
  border-radius: 9999px;
  filter: blur(2rem);
}

.hero-blur-2 {
  position: absolute;
  bottom: -2.5rem;
  left: -2.5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(33,76,173,0.2);
  border-radius: 9999px;
  filter: blur(3rem);
}

/* ==================== SECTIONS ==================== */

.section {
  padding: 6rem 0;
}

.section-gray {
  background: var(--gray-50);
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-secondary-light {
  background: rgba(241,155,59,0.1);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-header h2,
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

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

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.section-dark .section-header p {
  color: var(--gray-300);
}

/* ==================== PAGE HEADER / BANNER ==================== */

.page-header {
  padding: 5rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-header h1 { font-size: 3rem; }
}

.page-header p {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.page-header-dark {
  background: var(--dark);
  color: var(--white);
}

.page-header-dark p {
  color: var(--gray-300);
}

.page-header-secondary {
  background: rgba(241,155,59,0.1);
}

.page-header-secondary p {
  color: var(--gray-700);
}

.page-header-secondary h1 {
  color: var(--dark);
}

.page-header .header-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(241,155,59,0.2);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

/* ==================== GRID LAYOUTS ==================== */

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

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

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

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

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

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

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

/* ==================== SERVICE CARDS ==================== */

.service-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
}

.service-card-image {
  height: 15rem;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

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

/* ==================== ICON BOXES ==================== */

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-box-primary {
  background: var(--primary-light);
  color: var(--primary);
}

.icon-box-secondary {
  background: var(--secondary-light);
  color: var(--secondary);
}

.icon-box svg,
.icon-box i {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.25rem;
}

.icon-box-lg {
  width: 3.5rem;
  height: 3.5rem;
}

.icon-box-lg svg {
  width: 1.75rem;
  height: 1.75rem;
}

.icon-box-xl {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-2xl);
}

.icon-box-xl svg {
  width: 2rem;
  height: 2rem;
}

.service-card .service-icon,
.value-card .value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.25rem;
}

.value-icon-primary {
  background: var(--primary-light) !important;
  color: var(--primary) !important;
}

.value-icon-secondary {
  background: var(--secondary-light) !important;
  color: var(--secondary) !important;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==================== LINK ARROWS ==================== */

.link-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s;
  gap: 0.5rem;
}

.link-arrow:hover {
  color: var(--primary-hover);
}

.link-arrow svg {
  width: 1rem;
  height: 1rem;
}

.link-arrow-secondary {
  color: var(--secondary);
}

.link-arrow-secondary:hover {
  color: var(--secondary-hover);
}

/* ==================== VALUE CARDS ==================== */

.value-card {
  padding: 2rem;
  border-radius: var(--radius-3xl);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
  height: 100%;
}

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

.value-card .icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-2xl);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

.value-card-alt {
  padding: 2rem;
  border-radius: var(--radius-3xl);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.value-card-alt .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-2xl);
  margin-bottom: 1.5rem;
}

.value-card-alt h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.value-card-alt p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ==================== TESTIMONIALS ==================== */

.testimonial-card {
  height: 100%;
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  color: var(--gray-200);
  opacity: 0.5;
}

.testimonial-stars {
  display: flex;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  gap: 0.125rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.testimonial-card .content {
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 2rem;
  flex: 1;
  line-height: 1.7;
  font-size: 1.125rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
}

.testimonial-author h4 {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--dark);
}

.testimonial-author p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ==================== CAROUSEL ==================== */

.carousel-wrapper {
  position: relative;
}

.carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.carousel-header .text {
  max-width: 42rem;
}

.carousel-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

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

.carousel-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.carousel-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track > * {
  scroll-snap-align: start;
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .carousel-track > * { flex: 0 0 calc(50% - 0.5rem); }
}

@media (min-width: 1024px) {
  .carousel-track > * { flex: 0 0 calc(33.333% - 0.667rem); }
}

/* ==================== BLOG CARDS ==================== */

.blog-card {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  cursor: pointer;
}

.blog-card:hover {
  box-shadow: var(--shadow-xl);
}

.blog-card-image {
  overflow: hidden;
}

.blog-card-image.aspect-4-3 {
  aspect-ratio: 4/3;
}

.blog-card-image.aspect-16-9 {
  aspect-ratio: 16/9;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.blog-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

/* ==================== BADGES ==================== */

.badge {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
}

.badge-secondary {
  background: var(--secondary-light);
  color: var(--secondary);
}

.badge-green {
  background: var(--green-100);
  color: var(--green-700);
}

.badge-gray {
  background: var(--gray-100);
  color: var(--gray-500);
}

.blog-card-meta .date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
}

.blog-card-meta .date svg {
  width: 0.875rem;
  height: 0.875rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

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

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}

.blog-card-footer .author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
}

.blog-card-footer .author svg {
  width: 1rem;
  height: 1rem;
}

.blog-card-footer .arrow {
  color: var(--primary);
  transition: transform 0.2s;
}

.blog-card:hover .blog-card-footer .arrow {
  transform: translateX(0.25rem);
}

.blog-card-footer .arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==================== FEATURED BLOG ==================== */

.featured-blog {
  background: var(--white);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .featured-blog { flex-direction: row; }
}

.featured-blog:hover {
  box-shadow: var(--shadow-xl);
}

.featured-blog-image {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .featured-blog-image { width: 50%; }
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  transition: transform 0.7s;
}

.featured-blog:hover .featured-blog-image img {
  transform: scale(1.05);
}

.featured-blog-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .featured-blog-body { padding: 3rem; }
}

@media (min-width: 1024px) {
  .featured-blog-body { width: 50%; }
}

.featured-blog h3 {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.featured-blog:hover h3 {
  color: var(--primary);
}

.featured-blog .excerpt {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ==================== CTA SECTION ==================== */

.cta-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section .blur-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(33,76,173,0.2);
  border-radius: 9999px;
  filter: blur(100px);
}

.cta-section .blur-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: rgba(241,155,59,0.1);
  border-radius: 9999px;
  filter: blur(100px);
}

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

.cta-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.cta-content p {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-actions { flex-direction: row; }
}

.cta-section-light {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.cta-section-light .cta-content h2 {
  color: var(--foreground);
}

.cta-section-light .cta-content p {
  color: var(--gray-600);
}

/* ==================== PRODUCT CARDS ==================== */

.product-card {
  background: var(--white);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}

.product-card:hover {
  box-shadow: var(--shadow-xl);
}

.product-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 2rem;
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.product-card p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ==================== GIFT CARDS ==================== */

.gift-card {
  background: var(--white);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.gift-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

@media (max-width: 639px) {
  .gift-card-image { aspect-ratio: 1; }
}

.gift-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gift-card:hover .gift-card-image img {
  transform: scale(1.05);
}

.gift-card-image .icon-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: var(--secondary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.gift-card-image .icon-overlay svg {
  width: 1.5rem;
  height: 1.5rem;
}

.gift-card-image-placeholder {
  aspect-ratio: 4/3;
  background: rgba(241,155,59,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-card-image-placeholder svg {
  width: 4rem;
  height: 4rem;
  color: rgba(241,155,59,0.3);
}

.gift-card-body {
  padding: 2rem;
}

.gift-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.gift-card:hover h3 {
  color: var(--secondary);
}

.gift-card p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ==================== ABOUT PAGE ==================== */

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-hero-grid { grid-template-columns: 1fr 1fr; }
}

.about-hero-image {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  position: relative;
}

.about-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-hero-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(33,76,173,0.1);
  mix-blend-mode: multiply;
}

.about-hero-text h1 {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-hero-text h1 { font-size: 3rem; }
}

.about-hero-text p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ==================== MEET THE EXPERTS ==================== */

.meet-experts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .meet-experts-grid { grid-template-columns: 1fr 1fr; }
}

.meet-experts-image {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.meet-experts-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.meet-experts-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .meet-experts-text h2 { font-size: 2.25rem; }
}

.meet-experts-text > p {
  color: var(--gray-300);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.stat-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-item .stat-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.stat-item .stat-icon.primary { color: var(--primary); }
.stat-item .stat-icon.secondary { color: var(--secondary); }

.stat-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--gray-400);
}

/* ==================== ACCORDION / FAQs ==================== */

.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid var(--gray-200);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.2s;
}

.accordion-trigger:hover {
  color: var(--primary);
}

.accordion-trigger svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-item.active .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.accordion-content p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 1rem;
}

.faq-container {
  background: var(--white);
  border-radius: var(--radius-3xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

/* ==================== CONTACT PAGE ==================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

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

.contact-info h2 {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.contact-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-2xl);
  flex-shrink: 0;
  margin-bottom: 0;
}

.contact-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--gray-600);
  line-height: 1.7;
}

.contact-form-container,
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-3xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
  .contact-form-container,
  .contact-form-card { padding: 3rem; }
}

.contact-form-container h3,
.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 2rem;
}

/* ==================== FORMS ==================== */

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

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

@media (min-width: 768px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-input,
.form-select,
.form-textarea,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0 1rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  background: rgba(249,250,251,0.5);
  color: var(--foreground);
  font-size: 0.9375rem;
  transition: all 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(33,76,173,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-select,
.form-group select {
  appearance: none;
  color: var(--gray-600);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form-textarea,
.form-group textarea {
  height: auto;
  padding: 1rem;
  resize: none;
  min-height: 8rem;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-checkbox {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--gray-300);
  accent-color: var(--primary);
}

/* ==================== ALERTS ==================== */

.alert {
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.alert-error {
  background: var(--red-50);
  color: var(--red-500);
  border: 1px solid var(--red-100);
}

.alert-success {
  background: #f0fdf4;
  color: var(--green-700);
  border: 1px solid #bbf7d0;
}

.success-message {
  text-align: center;
  padding: 3rem 0;
}

.success-message svg {
  width: 4rem;
  height: 4rem;
  color: var(--green-500);
  margin: 0 auto 1rem;
}

.success-message h4 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.success-message p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

/* ==================== FOOTER ==================== */

.footer {
  background: var(--dark);
  color: var(--gray-300);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

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

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

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

.footer-brand img {
  height: 3rem;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-400);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a,
.footer-social span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social a.whatsapp:hover {
  background: var(--green-600);
}

.footer-social svg {
  width: 1rem;
  height: 1rem;
}

.footer-col h4,
.footer h3 {
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

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

.footer-links a {
  transition: color 0.2s;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

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

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: var(--gray-500);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ==================== WHATSAPP FLOAT ==================== */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  color: var(--white);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  z-index: 100;
  transition: transform 0.2s;
}

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

.whatsapp-float svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ==================== ADMIN LOGIN ==================== */

.admin-login-page {
  min-height: 100vh;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.admin-login-card {
  width: 100%;
  max-width: 28rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  border: 1px solid var(--gray-100);
}

.admin-login-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.admin-login-header img {
  height: 3.5rem;
  margin-bottom: 1rem;
}

.admin-login-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--gray-900);
}

.admin-login-header p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  text-align: center;
}

.admin-login-footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* ==================== ADMIN LAYOUT ==================== */

.admin-layout {
  min-height: 100vh;
  background: var(--gray-50);
  display: flex;
}

.admin-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 20;
}

.admin-sidebar-overlay.open {
  display: block;
}

@media (min-width: 1024px) {
  .admin-sidebar-overlay { display: none !important; }
}

.admin-sidebar {
  position: fixed;
  height: 100%;
  z-index: 30;
  width: 16rem;
  background: var(--dark);
  color: var(--gray-300);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: transform 0.3s ease-in-out;
  transform: translateX(-100%);
}

.admin-sidebar.open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .admin-sidebar { transform: translateX(0); }
}

.admin-sidebar-header {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .admin-sidebar-header { padding: 0 1.5rem; }
}

.admin-sidebar-header .logo {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-sidebar-header .logo img {
  height: 2rem;
}

.admin-sidebar-close {
  display: block;
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0.25rem;
}

.admin-sidebar-close:hover {
  color: var(--white);
}

@media (min-width: 1024px) {
  .admin-sidebar-close { display: none; }
}

.admin-sidebar-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.admin-sidebar-nav {
  flex: 1;
  padding: 1rem;
}

.admin-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.admin-sidebar-nav a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.admin-sidebar-nav a.active {
  background: var(--primary);
  color: var(--white);
  font-weight: 500;
}

.admin-sidebar-nav a svg,
.admin-sidebar-nav a i {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
}

.admin-sidebar-footer {
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.admin-sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.admin-sidebar-footer a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.admin-sidebar-footer .logout-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  font-size: 0.875rem;
  width: 100%;
  background: none;
  border: none;
  color: var(--red-400);
  cursor: pointer;
  text-align: left;
}

.admin-sidebar-footer .logout-btn:hover {
  background: rgba(239,68,68,0.2);
  color: #fca5a5;
}

.admin-sidebar-footer .logout-btn svg,
.admin-sidebar-footer .logout-btn i,
.admin-sidebar-footer a svg,
.admin-sidebar-footer a i {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
}

/* ==================== ADMIN MAIN ==================== */

.admin-main {
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .admin-main { margin-left: 16rem; }
}

.admin-header {
  height: 3.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

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

.admin-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-header .menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--gray-600);
  cursor: pointer;
  padding: 0.25rem;
}

.admin-header .menu-toggle:hover {
  color: var(--gray-800);
}

@media (min-width: 1024px) {
  .admin-header .menu-toggle { display: none; }
}

.admin-header .menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.admin-header h2 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.admin-header-right .name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  display: none;
}

@media (min-width: 640px) {
  .admin-header-right .name { display: inline; }
}

.admin-content {
  flex: 1;
  padding: 0.75rem;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .admin-content { padding: 1.5rem; }
}

/* ==================== ADMIN DASHBOARD ==================== */

.dashboard-title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .dashboard-title { font-size: 1.875rem; }
}

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

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

@media (min-width: 768px) {
  .dashboard-grid { gap: 1.5rem; }
}

.dashboard-card {
  background: var(--white);
  padding: 1rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .dashboard-card { padding: 1.5rem; }
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.dashboard-card h3 {
  color: var(--gray-500);
  font-weight: 500;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .dashboard-card h3 { font-size: 0.875rem; }
}

.dashboard-card .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
}

.dot-blue { background: var(--blue-500); }
.dot-green { background: var(--green-500); }
.dot-yellow { background: var(--yellow-500); }
.dot-purple { background: var(--purple-500); }
.dot-pink { background: var(--pink-500); }
.dot-red { background: var(--red-500); }
.dot-teal { background: var(--teal-500); }
.dot-orange { background: var(--orange-500); }

.dashboard-card .count {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .dashboard-card .count { font-size: 2.25rem; }
}

/* ==================== ADMIN CRUD ==================== */

.admin-crud-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.admin-crud-header h1 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .admin-crud-header h1 { font-size: 1.5rem; }
}

/* ==================== ADMIN TABLE ==================== */

.admin-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: none;
}

@media (min-width: 768px) {
  .admin-table-wrapper { display: block; }
}

.admin-table-wrapper .table-scroll {
  overflow-x: auto;
}

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

.admin-table thead {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.admin-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
}

.admin-table th:last-child {
  text-align: right;
}

.admin-table tbody tr {
  border-bottom: 1px solid var(--gray-50);
  transition: background 0.2s;
}

.admin-table tbody tr:hover {
  background: var(--gray-50);
}

.admin-table td {
  padding: 1rem 1.5rem;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-table td:last-child {
  text-align: right;
}

.admin-table .actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

/* ==================== ADMIN MOBILE CARDS ==================== */

.admin-mobile-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .admin-mobile-cards { display: none; }
}

.admin-mobile-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.admin-mobile-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.admin-mobile-card-header .id {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.admin-mobile-card-header .actions {
  display: flex;
  gap: 0.5rem;
}

.admin-mobile-card .field {
  margin-bottom: 0.25rem;
}

.admin-mobile-card .field-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

.admin-mobile-card .field-value {
  font-size: 0.875rem;
}

/* ==================== ADMIN FORM ==================== */

.admin-form-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.admin-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.admin-form-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

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

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

.admin-form-grid .full-width {
  grid-column: 1 / -1;
}

.admin-form-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.admin-form-input,
.admin-form-select {
  width: 100%;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
  background: var(--white);
}

.admin-form-input:focus,
.admin-form-select:focus,
.admin-form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(33,76,173,0.1);
}

.admin-form-textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
  resize: vertical;
  min-height: 6rem;
  background: var(--white);
}

.admin-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

/* ==================== ADMIN CONTACTS ==================== */

.admin-contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.admin-contacts-list {
  max-height: 400px;
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .admin-contacts-list { max-height: 600px; }
}

.admin-contact-item {
  padding: 1rem;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--gray-100);
  background: var(--white);
  margin-bottom: 0.5rem;
}

.admin-contact-item:hover {
  border-color: var(--primary);
}

.admin-contact-item.active {
  border-color: var(--primary);
  background: rgba(33,76,173,0.05);
}

.admin-contact-item.unread {
  border-color: var(--blue-200);
  background: var(--blue-50);
}

.admin-contact-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.admin-contact-item h4 {
  font-weight: 500;
}

.admin-contact-item h4.unread {
  font-weight: 700;
}

.admin-contact-item .email {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.admin-contact-item .unread-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: var(--blue-500);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.admin-contact-item .date {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.admin-contact-item .date svg {
  width: 0.75rem;
  height: 0.75rem;
}

.admin-contact-detail {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.admin-contact-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.admin-contact-detail h2 {
  font-size: 1.25rem;
  font-weight: 700;
}

.admin-contact-detail .info {
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.admin-contact-detail .info svg {
  width: 1rem;
  height: 1rem;
}

.admin-contact-detail .detail-section {
  margin-bottom: 1.5rem;
}

.admin-contact-detail .detail-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.admin-contact-detail .detail-value {
  font-weight: 500;
}

.admin-contact-detail .message-body {
  background: var(--gray-50);
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  white-space: pre-wrap;
  line-height: 1.6;
}

.admin-contact-detail .timestamp {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 1.5rem;
}

.admin-contact-empty {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  padding: 3rem;
  text-align: center;
  color: var(--gray-400);
  box-shadow: var(--shadow-sm);
}

/* ==================== ADMIN SETTINGS ==================== */

.admin-settings-group {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.admin-settings-group h3 {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.admin-setting-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .admin-setting-row {
    flex-direction: row;
    align-items: center;
  }
}

.admin-setting-row label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  width: 12rem;
  flex-shrink: 0;
}

.admin-setting-row input {
  flex: 1;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
  width: 100%;
}

.admin-setting-row input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(33,76,173,0.1);
}

/* ==================== ADMIN SEO ==================== */

.admin-seo-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.admin-seo-card h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

/* ==================== ADMIN ANALYTICS ==================== */

.admin-analytics-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.admin-analytics-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

/* ==================== MODAL ==================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  max-width: 40rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  padding: 0.25rem;
}

.modal-close:hover {
  color: var(--gray-800);
}

.modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==================== UTILITY CLASSES ==================== */

.loading-text {
  text-align: center;
  padding: 3rem 0;
  color: var(--gray-500);
}

.empty-state {
  text-align: center;
  padding: 3rem 0;
  color: var(--gray-500);
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-gray-300 { color: var(--gray-300); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }

.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-white { background: var(--white); }
.bg-gray-50 { background: var(--gray-50); }

.text-center { text-align: center; }
.text-right { text-align: right; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pb-8 { padding-bottom: 2rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.hidden { display: none; }

@media (min-width: 768px) {
  .md-show { display: block; }
  .md-flex { display: flex; }
  .md-hidden { display: none; }
}

.w-full { width: 100%; }
.shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1; }
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.relative { position: relative; }
.z-10 { z-index: 10; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-3xl { border-radius: var(--radius-3xl); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media print {
  .navbar, .footer, .admin-sidebar, .whatsapp-float { display: none; }
  .admin-main { margin-left: 0; }
}
