/* CSS Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* Colors */
:root {
  --brand-50: #eff8ff;
  --brand-100: #dbeeff;
  --brand-200: #bfe0ff;
  --brand-300: #93ceff;
  --brand-400: #60b3fc;
  --brand-500: #3b93f8;
  --brand-600: #2574ed;
  --brand-700: #1d5eda;
  --brand-800: #1e4db0;
  --brand-900: #1e438b;
  --brand-950: #172a54;
  --gold-50: #fffdf0;
  --gold-100: #fff9d6;
  --gold-200: #fff0a8;
  --gold-300: #ffe270;
  --gold-400: #ffd03d;
  --gold-500: #f5b800;
  --gold-600: #d49700;
  --teal-500: #00c9ae;
  --teal-50: #effefb;
  --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;
}

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
}

/* Layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.section { padding: 5rem 0; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.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; }
.text-center { text-align: center; }
.hidden { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  border: none;
}
.btn-primary { background: var(--brand-600); color: #fff; }
.btn-primary:hover { background: var(--brand-700); }
.btn-white { background: #fff; color: var(--brand-700); }
.btn-white:hover { background: var(--brand-50); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-brand { background: transparent; border: 2px solid var(--brand-600); color: var(--brand-600); }
.btn-outline-brand:hover { background: var(--brand-50); }
.btn-gold { background: var(--gold-500); color: #fff; }
.btn-gold:hover { background: var(--gold-600); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* Cards */
.card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.top-bar {
  background: var(--brand-900);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
.top-bar a:hover { color: var(--gold-300); }
.nav-main { padding: 0.75rem 0; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.logo-text span { display: block; }
.logo-text .name { font-weight: 700; color: var(--brand-900); }
.logo-text .tagline { font-size: 0.75rem; color: var(--gray-500); }
.nav-links { display: none; gap: 1.5rem; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--gray-700); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-600); }
.nav-cta { display: none; }
.mobile-toggle { background: none; border: none; padding: 0.5rem; color: var(--gray-600); }
.mobile-menu { display: none; padding: 1rem; border-top: 1px solid var(--gray-100); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.75rem; border-radius: 0.5rem; color: var(--gray-700); font-weight: 500; }
.mobile-menu a:hover { background: var(--brand-50); color: var(--brand-600); }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .mobile-toggle { display: none; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--brand-900), var(--brand-950));
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 2rem;
  width: 300px;
  height: 300px;
  background: var(--brand-400);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,184,0,0.2);
  border: 1px solid rgba(245,184,0,0.3);
  color: var(--gold-300);
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero p { font-size: 1.125rem; color: var(--brand-200); margin-bottom: 2rem; max-width: 600px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--brand-900), var(--brand-950));
  color: #fff;
  padding: 4rem 0 5rem;
  text-align: center;
}
.page-hero .label {
  color: var(--brand-300);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.page-hero h1 { margin-top: 0.5rem; }
.page-hero p { color: var(--brand-200); margin-top: 1rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Stats */
.stats { background: #fff; border-bottom: 1px solid var(--gray-100); padding: 3rem 0; }
.stat { text-align: center; }
.stat-value { font-size: 2rem; font-weight: 700; color: var(--brand-600); }
.stat-label { font-size: 0.875rem; color: var(--gray-500); }

/* Special Offer Banner */
.offer-banner {
  background: linear-gradient(90deg, var(--gold-50), var(--gold-100));
  border-bottom: 1px solid var(--gold-200);
  padding: 3rem 0;
}
.offer-content { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
@media (min-width: 768px) {
  .offer-content { flex-direction: row; align-items: center; justify-content: space-between; }
}
.offer-box { display: flex; align-items: flex-start; gap: 1rem; }
.offer-price {
  width: 64px;
  height: 64px;
  background: var(--gold-500);
  color: #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.offer-text h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.offer-text p { color: var(--gray-600); }

/* Section Header */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .label {
  color: var(--brand-600);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-header h2 { margin-top: 0.5rem; }
.section-header p { color: var(--gray-500); margin-top: 0.75rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Service Cards */
.services-section { background: var(--gray-50); }
.service-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-50);
  color: var(--brand-600);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.service-card p { color: var(--gray-500); font-size: 0.875rem; }

/* Service Detail */
.service-detail { display: grid; gap: 2.5rem; padding: 3rem 0; border-bottom: 1px solid var(--gray-100); }
@media (min-width: 1024px) {
  .service-detail { grid-template-columns: 1fr 1fr; align-items: center; }
  .service-detail:nth-child(even) .service-info { order: 2; }
}
.service-info .subtitle { color: var(--brand-600); font-weight: 500; margin-bottom: 0.5rem; }
.service-info h2 { margin-bottom: 0.5rem; }
.service-info > p { color: var(--gray-600); margin-bottom: 1.5rem; }
.feature-list { display: grid; grid-template-columns: repeat(1, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
.feature-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-600); }
.feature-item svg { color: var(--teal-500); flex-shrink: 0; margin-top: 0.125rem; }
.service-image {
  background: linear-gradient(135deg, var(--brand-50), var(--teal-50));
  border-radius: 1rem;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-image svg { width: 100px; height: 100px; color: var(--brand-200); opacity: 0.5; }

/* Facts */
.fact-card {
  position: relative;
  background: var(--gray-50);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
}
.fact-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-100);
}
.fact-card h3 { font-size: 1rem; margin-bottom: 0.5rem; padding-right: 3rem; }
.fact-card p { color: var(--gray-500); font-size: 0.875rem; }

/* Testimonials */
.testimonials { background: var(--brand-50); }
.testimonial-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
}
.stars { display: flex; gap: 0.125rem; margin-bottom: 0.75rem; }
.star { color: var(--gold-400); }
.testimonial-card .quote { color: var(--gray-600); font-style: italic; margin-bottom: 1rem; }
.testimonial-card .author { font-weight: 600; }
.testimonial-card .location { color: var(--gray-400); margin-left: 0.5rem; font-size: 0.875rem; }

/* Why Choose */
.why-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.check-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-icon { color: var(--teal-500); flex-shrink: 0; margin-top: 0.25rem; }
.rating-box {
  background: linear-gradient(135deg, var(--brand-100), var(--teal-50));
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
}
.rating-badge {
  width: 80px;
  height: 80px;
  background: var(--brand-600);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Process */
.process { background: var(--gray-50); }
.process-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-100);
}
.process-num {
  width: 48px;
  height: 48px;
  background: var(--brand-600);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.process-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-card p { color: var(--gray-500); font-size: 0.875rem; }

/* Pricing */
.pricing-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
.pricing-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 2px solid var(--gray-100);
  position: relative;
}
.pricing-card.featured { border-color: var(--gold-400); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--brand-600);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.pricing-card.featured .pricing-badge { background: var(--gold-500); }
.pricing-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.pricing-card .desc { color: var(--gray-500); font-size: 0.875rem; margin-bottom: 1rem; }
.pricing-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.5rem; }
.pricing-price .current { font-size: 2.5rem; font-weight: 700; color: var(--brand-700); }
.pricing-price .original { font-size: 1.125rem; color: var(--gray-400); text-decoration: line-through; }
.pricing-features { margin-bottom: 1.5rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 0.375rem 0;
}
.pricing-features svg { color: var(--teal-500); flex-shrink: 0; margin-top: 0.125rem; }
.pricing-card .btn { width: 100%; }

/* About */
.about-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.about-image {
  background: linear-gradient(135deg, var(--brand-100), var(--teal-50));
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
}
.about-avatar {
  width: 160px;
  height: 160px;
  background: var(--brand-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.about-image h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.about-image .title { color: var(--brand-600); font-weight: 500; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--gray-600); margin-bottom: 1rem; }

/* Credentials */
.credentials { background: var(--gray-50); }
.credential-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-100);
}
.credential-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-50);
  color: var(--brand-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.credential-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.credential-card p { color: var(--gray-500); font-size: 0.875rem; }

/* Values */
.value-item { text-align: center; }
.value-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-50);
  color: var(--brand-600);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.value-item h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.value-item p { color: var(--gray-500); }

/* Blog */
.blog-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.blog-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.875rem; }
.blog-category { background: var(--brand-50); color: var(--brand-600); padding: 0.25rem 0.75rem; border-radius: 1rem; font-weight: 500; }
.blog-date { color: var(--gray-400); }
.blog-card h2 { font-size: 1.25rem; margin-bottom: 0.75rem; transition: color 0.2s; }
.blog-card h2:hover { color: var(--brand-600); }
.blog-card .excerpt { color: var(--gray-500); margin-bottom: 1rem; }
.blog-card .read-more { color: var(--brand-600); font-weight: 600; font-size: 0.875rem; display: inline-flex; align-items: center; gap: 0.25rem; }
.blog-card .read-more:hover { color: var(--brand-700); }

/* Blog Post */
.blog-post { max-width: 800px; margin: 0 auto; padding: 3rem 1rem; }
.blog-post-back { display: inline-flex; align-items: center; gap: 0.25rem; color: var(--brand-300); font-size: 0.875rem; margin-bottom: 1rem; }
.blog-post-back:hover { color: #fff; }
.blog-post h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; }
.blog-post h3 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.25rem; }
.blog-post p { color: var(--gray-600); margin-bottom: 1rem; }
.blog-post ul, .blog-post ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.blog-post li { color: var(--gray-600); margin-bottom: 0.5rem; list-style: disc; }
.blog-post table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.875rem; }
.blog-post th, .blog-post td { border: 1px solid var(--gray-200); padding: 0.75rem 1rem; text-align: left; }
.blog-post th { background: var(--brand-50); font-weight: 600; }
.blog-post td { color: var(--gray-600); }
.blog-cta { background: var(--brand-50); border-radius: 0.75rem; padding: 2rem; text-align: center; margin-top: 3rem; }
.blog-cta h3 { margin-bottom: 0.5rem; }
.blog-cta p { color: var(--gray-500); margin-bottom: 1.5rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: #fff; border-radius: 0.75rem; border: 1px solid var(--gray-200); overflow: hidden; }
.faq-question { padding: 1.5rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.faq-num {
  width: 32px;
  height: 32px;
  background: var(--brand-50);
  color: var(--brand-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-question h3 { font-size: 1rem; }
.faq-answer { padding: 0 1.5rem 1.5rem 4rem; color: var(--gray-600); }

/* Contact */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-50);
  color: var(--brand-600);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-item p { color: var(--gray-500); font-size: 0.875rem; }
.contact-item a { color: var(--brand-600); }
.contact-item a:hover { color: var(--brand-700); }
.map-container { margin-top: 2rem; border-radius: 0.75rem; overflow: hidden; border: 1px solid var(--gray-200); }
.map-container iframe { width: 100%; height: 300px; border: none; }

/* Forms */
.form { background: #fff; border-radius: 0.75rem; padding: 1.5rem 2rem; border: 1px solid var(--gray-200); }
.form h2 { margin-bottom: 1.5rem; }
.form-row { margin-bottom: 1.25rem; }
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--gray-700); margin-bottom: 0.375rem; }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 1rem;
  color: var(--gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(37,116,237,0.1);
}
.form textarea { resize: vertical; min-height: 120px; }
.form .btn { width: 100%; margin-top: 0.5rem; }
.form-success {
  background: var(--teal-50);
  border: 1px solid #c7fff4;
  border-radius: 0.5rem;
  padding: 1rem;
  color: #07544d;
  font-size: 0.875rem;
  margin-top: 1rem;
  display: none;
}
.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  padding: 1rem;
  color: #991b1b;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Book Now */
.book-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .book-grid { grid-template-columns: 2fr 1fr; } }
.book-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { border-radius: 0.75rem; padding: 1.5rem; border: 1px solid var(--gray-200); }
.sidebar-card.offer { background: linear-gradient(135deg, var(--gold-50), var(--gold-100)); border-color: var(--gold-200); }
.sidebar-card.rating { background: var(--brand-50); border-color: var(--brand-100); text-align: center; }
.sidebar-offer-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.sidebar-offer-price {
  width: 48px;
  height: 48px;
  background: var(--gold-500);
  color: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.sidebar-offer-header h3 { font-size: 1rem; }
.sidebar-offer-header p { color: var(--gray-500); font-size: 0.875rem; }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.sidebar-card p { color: var(--gray-600); font-size: 0.875rem; }
.sidebar-card a { color: var(--brand-600); font-weight: 600; }

/* CTA Banner */
.cta-banner { background: linear-gradient(90deg, var(--brand-600), var(--brand-700)); color: #fff; padding: 3rem 0; text-align: center; }
.cta-banner h2 { margin-bottom: 0.75rem; }
.cta-banner p { color: var(--brand-100); margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Footer */
.footer-cta { background: linear-gradient(90deg, var(--brand-600), var(--brand-700)); color: #fff; padding: 3rem 0; text-align: center; }
.footer-cta h2 { margin-bottom: 0.75rem; }
.footer-cta p { color: var(--brand-100); margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.footer-main { background: var(--brand-950); color: var(--gray-300); padding: 3rem 0; }
.footer-grid { display: grid; gap: 2rem; }
@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 .logo { margin-bottom: 1rem; }
.footer-brand .logo-text .name { color: #fff; }
.footer-brand p { font-size: 0.875rem; color: var(--gray-400); margin-bottom: 1rem; }
.footer-rating { display: flex; align-items: center; gap: 0.25rem; color: var(--gold-400); font-size: 0.875rem; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: var(--gray-400); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 0.875rem; }
.footer-contact svg { color: var(--brand-400); flex-shrink: 0; margin-top: 0.125rem; }
.footer-bottom { background: var(--brand-950); border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; }
.footer-bottom-content { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; font-size: 0.75rem; color: var(--gray-500); }
@media (min-width: 768px) { .footer-bottom-content { flex-direction: row; justify-content: space-between; } }

/* Utilities */
.text-brand { color: var(--brand-600); }
.text-gold { color: var(--gold-500); }
.text-gray { color: var(--gray-500); }
.font-bold { font-weight: 700; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
