/* =============================================================
   Ijari Virtual - Main CSS
   ============================================================= */

/* Variables */
:root {
  --royal-50: #f0f4ff;
  --royal-100: #e0e9ff;
  --royal-200: #c7d7fe;
  --royal-500: #1e40af;
  --royal-600: #1d3493;
  --royal-700: #1e3a8a;
  --royal-800: #172a6e;
  --royal-900: #0f172a;
  --gold: #FDB913;
  --gold-hover: #d97706;
  --whatsapp: #25D366;
  --green-brand: #009245;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --shadow-soft: 0 10px 25px -5px rgba(0,0,0,.05),0 8px 10px -6px rgba(0,0,0,.05);
  --shadow-hover: 0 12px 40px rgba(0,0,0,.12);
  --shadow-glow: 0 0 20px rgba(37,211,102,.3);
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-4xl: 2.5rem;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: #0f172a; background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* Layout */
.max-w { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.max-w--narrow { max-width: 896px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.mt-6  { margin-top: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.bg-gray-section { background: #f9fafb; }
.bg-white { background: #fff; }
.hidden { display: none !important; }

/* Typography */
.gradient-text {
  background: linear-gradient(135deg, var(--royal-900), var(--royal-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--royal-900); color: #fff;
  font-family: var(--font-heading); font-weight: 700;
  padding: .75rem 1.5rem; border-radius: var(--radius-xl);
  transition: all .2s; box-shadow: 0 4px 14px rgba(15,23,42,.2);
}
.btn-primary:hover { background: var(--royal-700); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,23,42,.3); }

.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--royal-900);
  font-family: var(--font-heading); font-weight: 800;
  padding: .75rem 1.5rem; border-radius: var(--radius-xl);
  transition: all .2s; box-shadow: 0 4px 14px rgba(253,185,19,.3);
}
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--whatsapp); color: #fff;
  font-family: var(--font-heading); font-weight: 700;
  padding: .75rem 1.5rem; border-radius: var(--radius-xl);
  transition: all .2s; box-shadow: var(--shadow-glow);
}
.btn-whatsapp:hover { background: #20ba5a; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid var(--royal-900); color: var(--royal-900);
  font-family: var(--font-heading); font-weight: 700;
  padding: .75rem 1.5rem; border-radius: var(--radius-xl);
  transition: all .2s;
}
.btn-outline:hover { background: var(--royal-900); color: #fff; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid #e5e7eb; color: #374151;
  font-family: var(--font-heading); font-weight: 700;
  padding: .75rem 1.5rem; border-radius: var(--radius-xl);
  background: #fff; transition: all .2s;
}
.btn-outline-white:hover { border-color: var(--whatsapp); color: var(--whatsapp); }
.btn-full { width: 100%; justify-content: center; }
.btn-block { display: block; width: 100%; text-align: center; padding: .625rem 1rem; border-radius: var(--radius-xl); font-family: var(--font-heading); font-weight: 700; transition: all .2s; }
.btn-light { background: var(--royal-50); color: var(--royal-700); }
.btn-light:hover { background: var(--royal-100); }

/* Section Header */
.section-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem; border-radius: 9999px;
  background: var(--royal-100); color: var(--royal-700);
  font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(1.75rem,4vw,3rem); color: #111827; line-height: 1.1; margin-bottom: .75rem;
}
.section-sub { color: #6b7280; font-size: 1.125rem; max-width: 40rem; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 3rem; }

/* Navbar */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; transition: all .3s; height: 5rem;
  border-bottom: 1px solid rgba(209,213,219,.3);
}
.site-nav.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(16px); height: 4rem; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; height: 100%; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 2.5rem; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-link { color: #4b5563; font-weight: 500; font-size: .9375rem; transition: color .2s; position: relative; }
.nav-link:hover, .nav-link.nav-active { color: var(--royal-700); font-weight: 700; }
.nav-chevron { font-size: .625rem; transition: transform .2s; }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + .5rem); left: 0;
  width: 16rem; background: #fff; border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-hover); border: 1px solid #f3f4f6;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: all .2s; padding: .5rem 0; z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .625rem 1rem; font-size: .875rem; color: #4b5563; transition: all .2s;
}
.dropdown-item:hover { background: var(--royal-50); color: var(--royal-700); }
.dropdown-icon { color: var(--royal-500); width: 1rem; text-align: center; }
.dropdown-divider { border-top: 1px solid #f3f4f6; margin: .5rem 0; padding-top: .5rem; }
.dropdown-all { font-weight: 700; color: var(--royal-700); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-whatsapp { display: flex; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; border-radius: .5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: #4b5563; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.mobile-menu.open { display: block; }
.mobile-links { list-style: none; padding: 1rem 1rem .5rem; }
.mobile-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem; border-radius: .75rem; color: #374151;
  font-weight: 500; transition: all .2s; font-size: .9375rem;
}
.mobile-link:hover { background: var(--royal-50); color: var(--royal-700); }
.mobile-link i { color: var(--royal-500); width: 1.25rem; }
.mobile-sub { padding-left: 2rem; font-size: .875rem; color: #6b7280; }
.mobile-wa-btn { margin: 1rem; display: flex; justify-content: center; }

/* Hero */
.hero-section {
  position: relative; padding: 7rem 0 5rem;
  background: linear-gradient(135deg, var(--royal-50) 0%, #fff 50%, #eff6ff 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: 9999px;
  background: rgba(224,233,255,.8); color: var(--royal-700);
  font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .1em; border: 1px solid var(--royal-200);
  margin-bottom: 1.5rem;
}
.badge-dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--royal-500); animation: pulse 2s infinite; }
.hero-headline {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem); color: #111827;
  line-height: 1.05; margin-bottom: 1.5rem;
}
.hero-desc { font-size: 1.125rem; color: #4b5563; margin-bottom: 2rem; line-height: 1.75; max-width: 32rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: #6b7280; font-weight: 500; }
.trust-item i { color: var(--royal-500); }
.hero-visual { position: relative; }
.hero-img-glow { position: absolute; inset: 0; background: linear-gradient(135deg, var(--royal-700), var(--gold)); border-radius: var(--radius-4xl); transform: rotate(3deg); opacity: .15; filter: blur(48px); }
.hero-img { position: relative; border-radius: var(--radius-4xl); box-shadow: 0 25px 60px rgba(0,0,0,.15); border: 4px solid #fff; object-fit: cover; height: 30rem; width: 100%; }
.hero-badge-dld {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: #fff; padding: 1rem; border-radius: var(--radius-2xl);
  box-shadow: 0 8px 25px rgba(0,0,0,.12); border: 1px solid #f3f4f6;
  display: flex; align-items: center; gap: 1rem; animation: bouncefloat 3s infinite;
}
.badgebox-green { width: 3rem; height: 3rem; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #16a34a; font-size: 1.25rem; }
.badge-small-label { font-size: .625rem; color: #6b7280; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.badge-small-value { font-family: var(--font-heading); font-weight: 900; color: #111827; }
.hero-badge-stats {
  position: absolute; top: -1.5rem; right: -1rem;
  background: var(--royal-900); padding: .75rem 1.25rem; border-radius: var(--radius-2xl);
  box-shadow: 0 8px 25px rgba(0,0,0,.2); border: 1px solid var(--royal-700);
  display: flex; align-items: center; gap: .75rem;
}
.stats-icon { width: 2.5rem; height: 2.5rem; background: rgba(253,185,19,.2); border-radius: .75rem; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.stats-label { font-size: .75rem; color: #818cf8; font-weight: 700; }
.stats-value { font-family: var(--font-heading); font-weight: 900; color: #fff; white-space: nowrap; }
.hero-blob-1 { position: absolute; top: 0; right: 0; width: 43rem; height: 43rem; background: var(--royal-100); border-radius: 50%; filter: blur(70px); opacity: .4; z-index: -1; transform: translate(33%,-33%); }
.hero-blob-2 { position: absolute; bottom: 0; left: 0; width: 31rem; height: 31rem; background: rgba(253,211,77,.2); border-radius: 50%; filter: blur(70px); z-index: -1; transform: translate(-33%,33%); }

/* Trust Section */
.trust-section { padding: 3rem 0; background: #fff; border-bottom: 1px solid #f3f4f6; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; }
.trust-badge { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: var(--radius-xl); border: 1px solid #f3f4f6; transition: all .2s; }
.trust-badge:hover { box-shadow: var(--shadow-soft); }
.trust-icon { width: 2.75rem; height: 2.75rem; background: var(--royal-50); border-radius: .75rem; display: flex; align-items: center; justify-content: center; color: var(--royal-700); flex-shrink: 0; }
.trust-title { font-weight: 700; font-size: .9375rem; color: #111827; }
.trust-sub { font-size: .75rem; color: #9ca3af; }

/* Services Section */
.services-section { padding: 6rem 0; background: #f9fafb; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2rem; }
.service-card {
  background: #fff; border-radius: var(--radius-2xl); padding: 2rem;
  box-shadow: var(--shadow-soft); border: 1px solid #f3f4f6;
  transition: all .3s; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.svc-icon { width: 3.5rem; height: 3.5rem; background: var(--royal-50); border-radius: .875rem; display: flex; align-items: center; justify-content: center; color: var(--royal-700); font-size: 1.5rem; margin-bottom: 1.5rem; transition: all .3s; }
.service-card:hover .svc-icon { background: var(--royal-700); color: #fff; }
.service-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: #111827; margin-bottom: .75rem; }
.service-card p { color: #6b7280; font-size: .875rem; line-height: 1.65; flex-grow: 1; margin-bottom: 1rem; }
.svc-price { color: var(--gold); font-weight: 700; font-size: 1.125rem; margin-bottom: 1.25rem; }
.svc-link { color: var(--royal-700); font-weight: 700; font-size: .875rem; display: flex; align-items: center; gap: .5rem; transition: gap .2s; margin-top: auto; }
.svc-link:hover { gap: .875rem; }

/* Services Full Grid */
.services-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.service-full-card { border: 1px solid #f3f4f6; border-radius: var(--radius-3xl); padding: 2rem; box-shadow: var(--shadow-soft); transition: all .3s; }
.service-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.svc-full-header { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.svc-full-icon { width: 4rem; height: 4rem; background: var(--royal-50); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; color: var(--royal-700); font-size: 1.5rem; flex-shrink: 0; }
.svc-full-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-grow: 1; }
.svc-full-title-row h2 { font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; color: #111827; }
.svc-price-badge { background: rgba(253,185,19,.1); color: var(--gold); font-weight: 700; font-size: .875rem; padding: .25rem .75rem; border-radius: 9999px; white-space: nowrap; }
.svc-full-desc { color: #4b5563; font-size: .875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.svc-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.5rem; }
.svc-feature { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: #4b5563; }
.svc-feature i { color: var(--green-brand); font-size: .75rem; flex-shrink: 0; }
.svc-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; }
.pricing-card { border-radius: var(--radius-3xl); padding: 2rem; border: 1px solid #f3f4f6; background: #fff; text-align: center; box-shadow: var(--shadow-soft); position: relative; }
.pricing-card--featured { background: var(--royal-900); border-color: var(--royal-700); color: #fff; }
.pricing-popular { position: absolute; top: -.75rem; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--royal-900); font-size: .75rem; font-weight: 900; padding: .25rem 1rem; border-radius: 9999px; white-space: nowrap; text-transform: uppercase; letter-spacing: .05em; }
.pricing-icon { width: 3rem; height: 3rem; background: var(--royal-50); border-radius: .875rem; display: flex; align-items: center; justify-content: center; color: var(--royal-700); font-size: 1.25rem; margin: 0 auto 1.25rem; }
.pricing-icon--white { background: rgba(255,255,255,.1); color: #fff; }
.pricing-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; margin-bottom: .5rem; }
.pricing-card--featured h3 { color: #fff; }
.pricing-amount { font-family: var(--font-heading); font-weight: 900; font-size: 1.875rem; color: var(--royal-900); margin-bottom: .25rem; }
.pricing-amount--gold { color: var(--gold) !important; }
.pricing-period { font-size: .75rem; color: #9ca3af; margin-bottom: 1.5rem; }
.pricing-card--featured .pricing-period { color: #818cf8; }

/* Process */
.process-section { padding: 6rem 0; background: var(--royal-900); }
.process-section .section-tag { background: rgba(255,255,255,.1); color: #e0e9ff; }
.process-section .section-title { color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.process-icon { width: 3.5rem; height: 3.5rem; background: rgba(255,255,255,.1); color: #fff; border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin: 0 auto 1rem; position: relative; }
.process-num { position: absolute; top: -.5rem; right: -.5rem; width: 1.5rem; height: 1.5rem; background: var(--gold); color: var(--royal-900); font-size: .75rem; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.process-step h3 { font-weight: 700; color: #fff; margin-bottom: .5rem; }
.process-step p { font-size: .875rem; color: #9ca3af; }

/* Process on light background (service detail page) */
.bg-gray-section .process-icon { background: var(--royal-50); color: var(--royal-700); }
.bg-gray-section .process-step h3 { color: #111827; }
.bg-gray-section .process-step p { color: #6b7280; }

/* Testimonials */
.testimonials-section { padding: 6rem 0; background: #f9fafb; }
.google-header { display: flex; align-items: center; gap: .75rem; justify-content: center; margin-bottom: .75rem; }
.google-logo { width: 2rem; height: 2rem; }
.rating-pill { display: inline-flex; align-items: center; gap: .75rem; background: #fff; padding: .75rem 1.5rem; border-radius: 9999px; box-shadow: var(--shadow-soft); border: 1px solid #f3f4f6; margin-bottom: .5rem; }
.rating-num { font-size: 1.5rem; font-weight: 700; color: #111827; }
.stars { color: #F4B400; font-size: 1.25rem; letter-spacing: .1em; }
.rating-label { color: #6b7280; font-weight: 500; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; }
.testimonial-card { background: #fff; border-radius: var(--radius-2xl); padding: 2rem; box-shadow: var(--shadow-soft); border: 1px solid #f3f4f6; transition: box-shadow .3s; }
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.t-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.t-avatar { width: 3rem; height: 3rem; background: #dbeafe; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #2563eb; font-weight: 700; font-size: 1.125rem; margin-right: 1rem; flex-shrink: 0; }
.t-header h3 { font-weight: 700; color: #111827; }
.t-header p { font-size: .75rem; color: #6b7280; }
.t-google-icon { width: 1.25rem; height: 1.25rem; background: #f9fafb; padding: .375rem; border-radius: 50%; }
.t-stars { color: #F4B400; font-size: 1.125rem; margin-bottom: .75rem; }
.t-text { color: #374151; font-size: .875rem; line-height: 1.7; }
.trust-numbers { margin-top: 4rem; background: #fff; border-radius: var(--radius-3xl); padding: 2.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 2rem; text-align: center; border: 1px solid #f3f4f6; box-shadow: var(--shadow-soft); }
.tn-value { font-family: var(--font-heading); font-weight: 900; font-size: 1.875rem; color: #111827; margin-bottom: .25rem; }
.tn-label { color: #6b7280; font-size: .875rem; font-weight: 500; }

/* Blog Cards */
.blog-preview-section { padding: 6rem 0; background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; }
.blog-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-3xl); overflow: hidden; border: 1px solid #f3f4f6; box-shadow: var(--shadow-soft); transition: all .3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-img-wrap { position: relative; height: 12rem; overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.1); }
.blog-cat { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,.9); backdrop-filter: blur(4px); padding: .25rem .75rem; border-radius: 9999px; font-size: .625rem; font-weight: 700; color: var(--royal-700); text-transform: uppercase; }
.blog-content { padding: 1.75rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-meta { font-size: .625rem; color: #9ca3af; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.blog-content h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: #111827; margin-bottom: .75rem; line-height: 1.4; flex-grow: 1; }
.blog-card:hover h3 { color: var(--royal-700); }
.blog-content p { color: #6b7280; font-size: .875rem; margin-bottom: 1.25rem; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { color: var(--royal-700); font-weight: 700; font-size: .875rem; display: flex; align-items: center; gap: .5rem; transition: gap .2s; margin-top: auto; }
.blog-card:hover .blog-read-more { gap: .875rem; }
.no-posts { color: #9ca3af; text-align: center; padding: 3rem; }

/* Contact Section */
.contact-section { padding: 6rem 0; background: #fff; position: relative; overflow: hidden; }
.contact-compact { padding: 4rem 0; }
.contact-card { background: #fff; border-radius: var(--radius-4xl); box-shadow: 0 25px 60px rgba(0,0,0,.1); border: 1px solid #f3f4f6; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; }
.contact-info { background: var(--royal-900); padding: 2.5rem; color: #fff; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.contact-info-bg { position: absolute; top: 0; right: 0; width: 18rem; height: 18rem; background: rgba(30,58,138,.5); border-radius: 50%; filter: blur(80px); transform: translate(50%,-50%); }
.contact-info-content { position: relative; z-index: 1; }
.contact-info h3 { font-family: var(--font-heading); font-weight: 900; font-size: 1.875rem; margin-bottom: .75rem; }
.contact-info-sub { color: #818cf8; font-size: .875rem; line-height: 1.65; margin-bottom: 2.5rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon { width: 2.75rem; height: 2.75rem; background: rgba(255,255,255,.1); border-radius: .75rem; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; transition: background .2s; }
.ci-icon:hover { background: rgba(255,255,255,.2); }
.ci-label { font-size: .625rem; color: #818cf8; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .25rem; }
.ci-value { font-weight: 700; font-size: 1rem; color: #fff; transition: color .2s; }
a.ci-value:hover { color: var(--gold); }
.contact-social-row { position: relative; z-index: 1; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.ci-follow-label { font-size: .625rem; font-weight: 700; color: #818cf8; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 1rem; }
.contact-social { display: flex; gap: .75rem; }
.contact-social-btn { width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,.1); border-radius: .75rem; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .875rem; transition: all .3s; }
.contact-social-btn:hover { background: var(--gold); color: var(--royal-900); }
.contact-form-panel { padding: 2.5rem 4rem; background: #fff; }
.contact-success { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; padding: 3rem 0; }
.success-icon { width: 5rem; height: 5rem; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.success-icon i { color: #16a34a; font-size: 2.5rem; }
.contact-success h3 { font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; color: #111827; margin-bottom: .75rem; }
.contact-success p { color: #6b7280; margin-bottom: .5rem; }
.contact-success .success-sub { font-size: .875rem; color: #9ca3af; margin-bottom: 1.5rem; }
.link-btn { color: var(--royal-700); font-weight: 700; font-size: .875rem; background: none; border: none; cursor: pointer; text-decoration: underline; }
.form-title { font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; color: #111827; margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: .75rem; font-weight: 700; color: #4b5563; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; }
.form-group input, .form-group select, .form-group textarea {
  padding: 1rem 1.25rem; border-radius: var(--radius-xl);
  border: 1px solid #f3f4f6; background: rgba(249,250,251,.5);
  color: #111827; font-size: .875rem; outline: none;
  transition: all .2s; font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--royal-500); box-shadow: 0 0 0 4px rgba(30,64,175,.08);
}
.form-group textarea { resize: none; }
.input-error { border-color: #f87171 !important; }
.field-error { color: #ef4444; font-size: .75rem; margin-top: .25rem; }
.form-privacy { text-align: center; font-size: .75rem; color: #9ca3af; margin-top: .5rem; }

/* Page Hero */
.page-hero { padding: 8rem 0 5rem; background: linear-gradient(135deg, var(--royal-50) 0%, #fff 50%, #eff6ff 100%); position: relative; overflow: hidden; }
.page-hero-title { font-family: var(--font-heading); font-weight: 900; font-size: clamp(2.5rem,5vw,4rem); color: #111827; margin-bottom: 1.5rem; line-height: 1.1; }
.page-hero-desc { font-size: 1.25rem; color: #4b5563; max-width: 36rem; line-height: 1.7; }
.page-hero .section-tag { margin-bottom: 1rem; }
.page-hero-blob { position: absolute; top: 0; right: 0; width: 24rem; height: 24rem; background: var(--royal-100); border-radius: 50%; filter: blur(60px); opacity: .5; z-index: -1; transform: translate(33%,-33%); }

/* About Page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img { border-radius: var(--radius-3xl); box-shadow: 0 16px 40px rgba(0,0,0,.1); object-fit: cover; height: 28rem; width: 100%; }
.about-content h2 { font-family: var(--font-heading); font-weight: 900; font-size: 1.875rem; color: #111827; margin-bottom: 1rem; }
.about-content p { color: #4b5563; line-height: 1.75; }
.about-content > div { margin-bottom: 2rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: .5rem; }
.stat-box { background: #f9fafb; border-radius: var(--radius-xl); padding: 1.25rem; }
.stat-val { font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; color: var(--royal-900); margin-bottom: .25rem; }
.stat-label { color: #6b7280; font-size: .875rem; font-weight: 500; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 2rem; }
.feature-card { background: #fff; border-radius: var(--radius-2xl); padding: 1.75rem; box-shadow: var(--shadow-soft); border: 1px solid #f3f4f6; transition: all .3s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-icon { width: 3rem; height: 3rem; background: var(--royal-50); border-radius: .875rem; display: flex; align-items: center; justify-content: center; color: var(--royal-700); font-size: 1.25rem; margin-bottom: 1.25rem; transition: all .3s; }
.feature-card:hover .feature-icon { background: var(--royal-700); color: #fff; }
.feature-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: #111827; margin-bottom: .5rem; }
.feature-card p { color: #6b7280; font-size: .875rem; line-height: 1.65; }
.certifications-banner { padding: 4rem 0; background: var(--royal-900); text-align: center; }
.certifications-banner h2 { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; color: #fff; margin-bottom: 2rem; }
.cert-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.cert-badge { background: rgba(255,255,255,.1); border-radius: .75rem; padding: .75rem 1.5rem; color: rgba(255,255,255,.8); font-weight: 700; font-size: .875rem; letter-spacing: .05em; border: 1px solid rgba(255,255,255,.1); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 1px solid #f3f4f6; border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-soft); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.75rem; text-align: left; background: #fff; transition: background .2s; }
.faq-question:hover { background: #f9fafb; }
.faq-question.faq-open { background: #f9fafb; }
.faq-question span { font-family: var(--font-heading); font-weight: 700; color: #111827; padding-right: 1rem; font-size: .9375rem; }
.faq-icon { width: 2rem; height: 2rem; border-radius: 50%; background: var(--royal-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s; }
.faq-icon i { color: var(--royal-700); font-size: .75rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 1.75rem 1.5rem; color: #4b5563; font-size: .875rem; line-height: 1.75; border-top: 1px solid #f9fafb; padding-top: 1rem; }
.faq-cta-banner { padding: 4rem 0; background: var(--royal-900); position: relative; overflow: hidden; }
.faq-cta-banner h2 { font-family: var(--font-heading); font-weight: 900; font-size: 1.875rem; color: #fff; margin-bottom: 1rem; }
.faq-cta-banner p { color: #818cf8; margin-bottom: 2rem; }

/* Contact Page */
.contact-chips { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.chip { display: flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid #e5e7eb; padding: .75rem 1.25rem; border-radius: 9999px; font-size: .875rem; font-weight: 700; color: #374151; transition: all .2s; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.chip:hover { border-color: var(--whatsapp); color: var(--whatsapp); }
.text-royal { color: var(--royal-500); }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.contact-info-grid h2 { font-family: var(--font-heading); font-weight: 900; font-size: 1.875rem; color: #111827; margin-bottom: 1.5rem; }
.office-info { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.office-info li { display: flex; align-items: flex-start; gap: 1rem; }
.office-icon { width: 2.5rem; height: 2.5rem; background: var(--royal-50); border-radius: .875rem; display: flex; align-items: center; justify-content: center; color: var(--royal-700); flex-shrink: 0; }
.map-placeholder { background: var(--royal-50); border-radius: var(--radius-3xl); height: 18rem; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--royal-100); color: var(--royal-500); text-align: center; gap: .75rem; }
.map-placeholder i { font-size: 3rem; }
.map-placeholder p { font-weight: 700; }
.map-placeholder a { color: var(--royal-600); font-weight: 700; font-size: .875rem; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: #9ca3af; margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: var(--royal-700); }
.breadcrumb span { color: #4b5563; }

/* Footer */
.site-footer { background: #111827; padding: 5rem 0 2.5rem; border-top: 1px solid rgba(255,255,255,.05); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo-link { display: inline-block; margin-bottom: 1.5rem; }
.footer-logo { height: 2rem; }
.footer-desc { color: #9ca3af; font-size: .875rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.social-btn { width: 2.25rem; height: 2.25rem; background: rgba(255,255,255,.05); border-radius: .5rem; display: flex; align-items: center; justify-content: center; color: #9ca3af; font-size: .875rem; transition: all .2s; }
.social-btn:hover { background: var(--gold); color: var(--royal-900); }
.footer-heading { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-link { display: flex; align-items: center; gap: .5rem; color: #9ca3af; font-size: .875rem; transition: color .2s; }
.footer-link:hover { color: var(--gold); }
.footer-dot { width: .375rem; height: .375rem; border-radius: 50%; background: transparent; flex-shrink: 0; transition: background .2s; }
.footer-link:hover .footer-dot { background: var(--gold); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; }
.footer-contact-icon { width: 2.25rem; height: 2.25rem; border-radius: .5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.whatsapp-icon { background: rgba(37,211,102,.1); color: var(--whatsapp); }
.email-icon { background: rgba(59,130,246,.1); color: #60a5fa; }
.location-icon { background: rgba(249,115,22,.1); color: #fb923c; }
.footer-contact-label { font-size: .625rem; color: #6b7280; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .25rem; }
.footer-contact-value { color: #fff; font-size: .875rem; font-weight: 700; transition: color .2s; word-break: break-all; }
a.footer-contact-item:hover .footer-contact-value { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-copy { color: #6b7280; font-size: .75rem; font-weight: 500; }
.footer-copy span { color: #fff; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal-link { color: #6b7280; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; transition: color .2s; }
.footer-legal-link:hover { color: #fff; }
.footer-admin { color: #374151; }

/* Floating WhatsApp */
.float-wa {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 3.5rem; height: 3.5rem; background: var(--whatsapp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; box-shadow: var(--shadow-glow);
  transition: all .3s; animation: bouncefloat 3s infinite;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 0 30px rgba(37,211,102,.5); }

/* Legal */
.legal-page .prose h2 { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; color: #111827; margin: 2rem 0 .75rem; }
.legal-page .prose p { color: #4b5563; line-height: 1.8; margin-bottom: 1rem; }
.legal-page .prose a { color: var(--royal-700); text-decoration: underline; }

/* Blog detail */
.blog-detail-hero { padding-top: 6rem; }
.blog-hero-img-wrap { position: relative; height: 50vh; min-height: 22rem; overflow: hidden; }
.blog-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.blog-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,24,39,.8) 0%, rgba(17,24,39,.4) 50%, transparent 100%); }
.blog-hero-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.5rem; }
.blog-hero-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.blog-hero-cat { background: var(--gold); color: var(--royal-900); font-size: .75rem; font-weight: 900; padding: .25rem .75rem; border-radius: 9999px; text-transform: uppercase; letter-spacing: .05em; }
.blog-hero-read { color: rgba(255,255,255,.6); font-size: .875rem; }
.blog-hero-text h1 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(1.5rem,4vw,3rem); color: #fff; line-height: 1.2; }
.blog-detail-layout { display: flex; gap: 4rem; }
.blog-article { flex: 2; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid #f3f4f6; }
.article-author { display: flex; align-items: center; gap: .5rem; }
.author-avatar { width: 2.25rem; height: 2.25rem; background: var(--royal-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--royal-700); font-weight: 700; font-size: .75rem; }
.article-meta span { font-size: .875rem; color: #6b7280; }
.article-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.tag { background: #f3f4f6; color: #4b5563; font-size: .75rem; font-weight: 700; padding: .25rem .75rem; border-radius: 9999px; }
.article-body { font-size: 1rem; }
.blog-h1 { font-family: var(--font-heading); font-weight: 900; font-size: 1.875rem; color: #111827; margin: 2.5rem 0 1.25rem; }
.blog-h2 { font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; color: #111827; margin: 2rem 0 1rem; }
.blog-h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: #111827; margin: 1.5rem 0 .75rem; }
.blog-p { color: #374151; line-height: 1.8; margin-bottom: 1rem; }
.blog-li { color: #374151; margin: .5rem 0 .5rem 1.5rem; list-style: disc; }
.article-share { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #f3f4f6; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.article-share span { font-weight: 700; color: #374151; font-size: .875rem; }
.share-btns { display: flex; gap: .5rem; }
.share-btn { width: 2.5rem; height: 2.5rem; border-radius: .75rem; display: flex; align-items: center; justify-content: center; color: #fff; transition: opacity .2s; font-size: .875rem; }
.share-btn:hover { opacity: .8; }
.share-wa { background: var(--whatsapp); }
.share-li { background: #2563eb; }
.share-fb { background: #3b82f6; }
.share-tw { background: #38bdf8; }
.article-cta-box { margin-top: 3rem; background: var(--royal-900); border-radius: var(--radius-3xl); padding: 2rem; text-align: center; }
.article-cta-box h3 { font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; color: #fff; margin-bottom: .75rem; }
.article-cta-box p { color: #818cf8; margin-bottom: 1.5rem; }

/* Blog sidebar */
.blog-layout { display: flex; gap: 4rem; padding-bottom: 6rem; }
.blog-main { flex: 2; }
.blog-section-title { font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; color: #111827; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid #f3f4f6; }
.featured-post-wrap { margin: 3.5rem 0; }
.featured-post { display: flex; flex-direction: row; background: #fff; border-radius: var(--radius-4xl); overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.1); border: 1px solid #f3f4f6; transition: box-shadow .3s; }
.featured-post:hover { box-shadow: 0 16px 50px rgba(0,0,0,.15); }
.featured-post-img { width: 50%; min-height: 17.5rem; position: relative; overflow: hidden; }
.featured-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.featured-post:hover .featured-post-img img { transform: scale(1.05); }
.featured-label { position: absolute; top: 1.5rem; left: 1.5rem; background: var(--gold); color: var(--royal-900); font-size: .75rem; font-weight: 900; padding: .375rem 1rem; border-radius: 9999px; text-transform: uppercase; letter-spacing: .05em; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.featured-post-content { width: 50%; padding: 2.5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.featured-post-content .post-meta { display: flex; align-items: center; gap: 1rem; font-size: .75rem; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1.25rem; }
.meta-dot { width: .25rem; height: .25rem; border-radius: 50%; background: #d1d5db; }
.featured-post-content h2 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(1.25rem,2.5vw,2.25rem); color: #111827; margin-bottom: 1.25rem; line-height: 1.25; }
.featured-post:hover h2 { color: var(--royal-700); }
.featured-post-content p { color: #6b7280; font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more-link { color: var(--royal-700); font-weight: 900; display: flex; align-items: center; gap: .75rem; transition: gap .2s; margin-top: auto; }
.featured-post:hover .read-more-link { gap: 1.25rem; }
.blog-sidebar { width: 18rem; flex-shrink: 0; display: flex; flex-direction: column; gap: 2rem; padding-top: 4.5rem; }
.sidebar-cta { background: var(--royal-900); border-radius: var(--radius-2xl); padding: 1.75rem; color: #fff; }
.sidebar-cta h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; margin-bottom: .75rem; }
.sidebar-cta p { color: #818cf8; font-size: .875rem; margin-bottom: 1.25rem; }
.sidebar-box { background: #f9fafb; border-radius: var(--radius-2xl); padding: 1.5rem; }
.sidebar-box h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: #111827; margin-bottom: 1rem; }
.sidebar-service { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: #4b5563; font-weight: 500; padding: .5rem 0; border-bottom: 1px solid #e5e7eb; transition: color .2s; }
.sidebar-service:last-child { border-bottom: none; }
.sidebar-service:hover { color: var(--royal-700); }
.sidebar-service i { color: #818cf8; width: 1rem; text-align: center; }
.newsletter-form { display: flex; flex-direction: column; gap: .75rem; }
.newsletter-form input { padding: .75rem 1rem; border-radius: .75rem; border: 1px solid #f3f4f6; font-size: .875rem; color: #111827; background: #fff; outline: none; transition: border-color .2s; }
.newsletter-form input:focus { border-color: var(--royal-500); box-shadow: 0 0 0 3px rgba(30,64,175,.1); }

/* Service Detail */
.service-detail-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.svc-detail-icon { width: 4rem; height: 4rem; background: var(--royal-100); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; color: var(--royal-700); font-size: 1.875rem; margin-bottom: 1.5rem; }
.service-detail-hero h1 { font-family: var(--font-heading); font-weight: 900; font-size: clamp(2.5rem,4vw,3.5rem); color: #111827; margin-bottom: 1rem; line-height: 1.1; }
.svc-detail-desc { font-size: 1.25rem; color: #4b5563; line-height: 1.7; margin-bottom: 2rem; }
.svc-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.svc-pricing-card { background: #fff; border-radius: var(--radius-3xl); box-shadow: 0 16px 40px rgba(0,0,0,.1); border: 1px solid #f3f4f6; padding: 2rem; }
.svc-pricing-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.svc-from-label { font-size: .875rem; color: #6b7280; margin-bottom: .25rem; }
.svc-price-big { font-family: var(--font-heading); font-weight: 900; font-size: 2.5rem; color: var(--royal-900); }
.svc-price-note { color: #9ca3af; font-size: .875rem; }
.badge { display: inline-flex; align-items: center; padding: .25rem .625rem; border-radius: 9999px; font-size: .75rem; font-weight: 700; }
.badge-green { background: rgba(34,197,94,.1); color: #16a34a; }
.badge-blue { background: rgba(59,130,246,.1); color: #2563eb; }
.svc-includes-title { font-size: .875rem; font-weight: 700; color: #111827; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; }
.svc-features-list { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.svc-features-list li { display: flex; align-items: center; gap: .75rem; color: #374151; font-size: .875rem; font-weight: 500; }
.check-circle { width: 1.25rem; height: 1.25rem; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-circle i { color: #16a34a; font-size: .625rem; }
.other-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 1.5rem; }
.other-service-card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: var(--radius-2xl); border: 1px solid #f3f4f6; transition: all .2s; }
.other-service-card:hover { border-color: var(--royal-200); background: var(--royal-50); }
.other-svc-icon { width: 2.75rem; height: 2.75rem; background: var(--royal-50); border-radius: .875rem; display: flex; align-items: center; justify-content: center; color: var(--royal-700); flex-shrink: 0; transition: all .2s; }
.other-service-card:hover .other-svc-icon { background: var(--royal-700); color: #fff; }
.other-svc-title { font-weight: 700; color: #111827; font-size: .875rem; margin-bottom: .25rem; }
.other-svc-price { color: var(--gold); font-weight: 700; font-size: .75rem; }
.other-arrow { margin-left: auto; color: #d1d5db; transition: color .2s; }
.other-service-card:hover .other-arrow { color: var(--royal-700); }

/* Animations */
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .5 } }
@keyframes bouncefloat {
  0%,100% { transform: translateY(0) }
  50% { transform: translateY(-6px) }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .service-detail-hero, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 2rem; }
  .featured-post { flex-direction: column; }
  .featured-post-img { width: 100%; height: 17.5rem; }
  .featured-post-content { width: 100%; padding: 2rem; }
  .blog-layout { flex-direction: column; }
  .blog-sidebar { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .blog-detail-layout { flex-direction: column; }
  .contact-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-whatsapp { display: none; }
  .hamburger { display: flex; }
  .hero-headline { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
}
