/* =============================================================
   Virtual Ejari Dubai - Premium Dark Luxury UI
   ============================================================= */

/* Variables */
:root {
  --bg-main: #FAFAFA;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F9FAFB;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.15);
  
  --text-main: #374151;
  --text-muted: #6B7280;
  --text-dark: #111827;
  
  --gold-primary: #F59E0B;
  --gold-light: #FCD34D;
  --gold-dark: #D97706;
  --accent: #EF4444;
  --whatsapp: #25D366;
  
  --font-sans: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 9999px;
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-blur: blur(20px);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { 
  font-family: var(--font-body); 
  color: var(--text-main); 
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  line-height: 1.6; 
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Layout */
.max-w { max-width: 1400px; margin: 0 auto; padding: 0 2rem; overflow-x: hidden; }
.text-center { text-align: center; }
.py-20 { padding-top: 6rem; padding-bottom: 6rem; }
.mb-12 { margin-bottom: 3rem; }
.hidden { display: none !important; }

/* Typography */
.text-gold { color: var(--gold-primary); }
.gradient-text {
  background: linear-gradient(135deg, #F59E0B, #DC2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-gradient-text {
  background: linear-gradient(135deg, #F59E0B, #DC2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
  padding: 1rem 2rem; border-radius: var(--radius-pill);
  font-family: var(--font-sans); font-weight: 500; font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.02em; text-transform: uppercase;
}

.btn-gold {
  background: linear-gradient(135deg, #F59E0B, #DC2626);
  color: #fff;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.3);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}




/* Floating Navbar (Pill style) */
.site-nav {
  position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 100;
  width: calc(100% - 3rem); max-width: 1200px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  height: 4.5rem; display: flex; align-items: center;
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0 1.5rem 0 2rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 2.5rem; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-link { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.nav-link:hover, .nav-link.nav-active { color: var(--gold-primary); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-actions .btn { padding: 0.6rem 1.5rem; font-size: 0.8rem; }
.nav-btn-chat { background: rgba(0,0,0,0.05); border: 1px solid var(--border-color); color: var(--text-dark); }
.nav-btn-chat:hover { background: rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.2); transform: translateY(-2px); }
.hamburger { display: none; }

.hero-section {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; padding-top: 6rem;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.65)), url('../img/hero-bg.png');
  background-size: cover;
  background-position: center;
}
.hero-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 60%);
  z-index: -1; filter: blur(60px);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem; border-radius: var(--radius-pill);
  background: rgba(245, 158, 11, 0.2); border: 1px solid rgba(245, 158, 11, 0.4);
  color: #F59E0B; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300; line-height: 1; margin-bottom: 1.5rem;
  color: #fff;
}
.hero-headline strong { font-weight: 500; color: #fff; }
.hero-headline .gradient-text {
  background: linear-gradient(135deg, #F59E0B, #FF6B6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.25rem; color: rgba(255,255,255,0.8); font-weight: 300;
  max-width: 600px; margin: 0 auto 3rem;
}
.hero-ctas { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

/* Features / Process (Bento Grid) */
.bento-section { padding: 8rem 0; }
.section-header { text-align: left; margin-bottom: 4rem; display: flex; flex-direction: column; gap: 1rem; }
.section-tag { color: var(--gold-primary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; }
.section-title { font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 300; }
.section-title span { color: var(--gold-primary); font-style: italic; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}
.bento-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-card:hover { border-color: rgba(245, 158, 11, 0.3); transform: translateY(-5px); background: var(--bg-card-hover); }
.bento-large { grid-column: span 8; grid-row: span 2; }
.bento-tall { grid-column: span 4; grid-row: span 2; }
.bento-wide { grid-column: span 8; grid-row: span 1; }
.bento-small { grid-column: span 4; grid-row: span 1; }

.bento-icon { font-size: 2rem; color: var(--gold-primary); flex-shrink: 0; }
.bento-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.5rem;
  min-height: 0;
}
.bento-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card:hover .bento-img {
  transform: scale(1.05);
}
/* Sizing per card type */
.bento-large .bento-img-wrap { max-height: 300px; }
.bento-tall .bento-img-wrap { max-height: 250px; }
.bento-small .bento-img-wrap { max-height: 100px; }
.bento-wide .bento-img-wrap { max-height: 100px; }
.bento-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.bento-content p { color: var(--text-muted); font-size: 0.95rem; font-weight: 400; }

/* Services List (Minimal Rows) */
.services-list-section { padding: 6rem 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.service-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 3rem 0; border-bottom: 1px solid var(--border-color);
  transition: all 0.3s;
}
.service-row:first-child { border-top: 1px solid var(--border-color); }
.service-row:hover { padding-left: 2rem; padding-right: 2rem; background: rgba(0,0,0,0.02); }
.sr-title { font-size: 2.5rem; font-family: var(--font-sans); font-weight: 300; color: var(--text-dark); flex: 1; }
.sr-desc { flex: 1; color: var(--text-muted); font-weight: 400; padding-right: 2rem; }
.sr-action { flex-shrink: 0; }
.sr-btn { width: 4rem; height: 4rem; border-radius: 50%; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-main); font-size: 1.5rem; transition: all 0.3s; }
.service-row:hover .sr-btn { background: var(--gold-primary); color: var(--text-dark); border-color: var(--gold-primary); transform: rotate(-45deg); }

/* Pricing (Dark Cards) */
.pricing-section { padding: 8rem 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 3rem 2.5rem;
  display: flex; flex-direction: column;
}
.price-card.featured {
  background: linear-gradient(to bottom, #FAFAFA, #FFFFFF);
  border-color: var(--gold-primary);
  position: relative;
}
.price-tag { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--gold-primary); color: #fff; padding: 0.4rem 1.5rem; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.pc-title { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.pc-amount { font-size: 3.5rem; font-weight: 300; color: var(--text-dark); line-height: 1; margin-bottom: 2rem; font-family: var(--font-sans); }
.pc-amount span { font-size: 1rem; color: var(--text-muted); }
.pc-features { list-style: none; margin-bottom: 3rem; flex-grow: 1; }
.pc-features li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; color: var(--text-main); font-weight: 400; }
.pc-features li i { color: var(--gold-primary); font-size: 0.8rem; }

/* Contact / Light CTA */
.cta-dark { padding: 8rem 0; background: #FFFFFF; position: relative; overflow: hidden; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cta-glow { position: absolute; right: -10%; bottom: -20%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%); filter: blur(50px); }
.form-minimal { background: transparent; }
.input-minimal {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border-light);
  padding: 1rem 0; color: var(--text-dark); font-size: 1rem; font-family: var(--font-body); margin-bottom: 1.5rem; outline: none; transition: all 0.3s;
}
.input-minimal:focus { border-bottom-color: var(--gold-primary); }
.input-minimal::placeholder { color: rgba(0,0,0,0.4); font-weight: 400; }

/* Footer Minimal */
.footer-minimal { border-top: 1px solid var(--border-color); padding: 5rem 0 2rem; background: var(--bg-main); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 5rem; }
.fm-logo { height: 2rem; margin-bottom: 1.5rem; }
.fm-desc { color: var(--text-muted); font-weight: 400; max-width: 300px; }
.fm-title { font-family: var(--font-sans); font-size: 1rem; color: var(--text-dark); margin-bottom: 1.5rem; font-weight: 600; }
.fm-links { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.fm-links a { color: var(--text-muted); font-weight: 400; }
.fm-links a:hover { color: var(--gold-primary); }
.fm-contact { font-size: 1.2rem; color: var(--text-dark); display: block; margin-bottom: 0.5rem; font-weight: 500; }
.fm-bottom { border-top: 1px solid var(--border-color); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.85rem; font-weight: 400; }

/* Legacy compat helpers */
.bg-white { background: #fff; }
.bg-gray-section { background: var(--bg-main); }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.mt-6 { margin-top: 1.5rem; }
.max-w--narrow { max-width: 800px; }
.page-hero-blob { display: none; }
.section-sub { color: var(--text-muted); max-width: 600px; }
.text-royal { color: var(--gold-primary); }

/* Contact chips */
.contact-chips { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius-pill); background: var(--bg-card); border: 1px solid var(--border-color); font-weight: 500; color: var(--text-dark); transition: all 0.3s; }
.chip:hover { border-color: var(--gold-primary); transform: translateY(-2px); }

/* Services full grid */
.services-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.service-full-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2.5rem; transition: all 0.3s; }
.service-full-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.svc-full-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.svc-full-icon { width: 3.5rem; height: 3.5rem; background: rgba(245,158,11,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--gold-primary); font-size: 1.5rem; flex-shrink: 0; }
.svc-full-title-row h2 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.svc-price-badge { display: inline-block; background: rgba(245,158,11,0.1); color: var(--gold-dark); padding: 0.25rem 0.75rem; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; }
.svc-full-desc { color: var(--text-muted); margin-bottom: 1.5rem; }
.svc-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }
.svc-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-main); }
.svc-feature i { color: var(--accent); font-size: 0.75rem; }
.svc-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Buttons legacy */
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius-pill); background: linear-gradient(135deg, #F59E0B, #DC2626); color: #fff; font-weight: 500; transition: all 0.3s; font-size: 0.95rem; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(239,68,68,0.2); }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: var(--radius-pill); background: var(--whatsapp); color: #fff; font-weight: 500; font-size: 0.95rem; transition: all 0.3s; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.btn-full, .btn-block { width: 100%; justify-content: center; }
.btn-light { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: var(--radius-pill); background: var(--bg-main); border: 1px solid var(--border-color); color: var(--text-dark); font-weight: 500; transition: all 0.3s; }
.btn-light:hover { border-color: var(--gold-primary); }

/* Pricing legacy */
.pricing-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; position: relative; transition: all 0.3s; }
.pricing-card--featured { border-color: var(--gold-primary); box-shadow: 0 10px 30px rgba(245,158,11,0.1); }
.pricing-popular { position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%); background: linear-gradient(135deg, #F59E0B, #DC2626); color: #fff; padding: 0.35rem 1.25rem; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }
.pricing-icon { width: 3.5rem; height: 3.5rem; background: rgba(245,158,11,0.1); color: var(--gold-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.5rem; }
.pricing-icon--white { background: rgba(255,255,255,0.2); color: #fff; }
.pricing-card h3 { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 1rem; }
.pricing-amount { font-size: 2.5rem; font-family: var(--font-sans); font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
.pricing-amount--gold { color: var(--gold-primary); }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }

/* Contact section (includes/contact.php) */
.contact-section { padding: 6rem 0; }
.contact-compact { padding: 4rem 0; }
.contact-info-bg { display: none; }
.contact-info-content { position: relative; z-index: 1; }
.contact-info-sub { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }
.contact-social-row { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); }
.ci-follow-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.ci-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; font-weight: 600; }
.contact-social { display: flex; gap: 0.75rem; }
.contact-social-btn { width: 2.5rem; height: 2.5rem; background: rgba(245,158,11,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-primary); transition: all 0.3s; }
.contact-social-btn:hover { background: var(--gold-primary); color: #fff; }
.contact-form-panel { padding: 2rem 0 0; }
.contact-success { text-align: center; padding: 3rem 0; }
.success-icon { font-size: 3rem; color: var(--accent); margin-bottom: 1rem; }
.success-sub { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.5rem; }
.form-title { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border-color); border-radius: var(--radius-md); background: var(--bg-card); color: var(--text-dark); font-family: var(--font-body); font-size: 1rem; outline: none; transition: all 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold-primary); box-shadow: 0 0 0 3px rgba(245,158,11,0.1); }
.input-error { border-color: #EF4444 !important; }
.field-error { color: #EF4444; font-size: 0.8rem; margin-top: 0.25rem; display: block; }
.link-btn { background: none; border: none; color: var(--gold-primary); font-weight: 600; cursor: pointer; text-decoration: underline; }
.form-privacy { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; }

/* Contact page info grid */
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info-grid h2 { font-size: 2rem; color: var(--text-dark); margin-bottom: 2rem; }
.office-info { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.office-info li { display: flex; align-items: flex-start; gap: 1rem; }
.office-icon { width: 3rem; height: 3rem; background: rgba(245,158,11,0.1); color: var(--gold-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.map-placeholder { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 4rem; text-align: center; color: var(--text-muted); }
.map-placeholder i { font-size: 3rem; color: var(--gold-primary); margin-bottom: 1rem; display: block; }
.map-placeholder a { color: var(--gold-primary); font-weight: 600; margin-top: 1rem; display: inline-block; }

/* FAQ extras */
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0; }
.faq-answer-inner { padding: 0 2rem 1.5rem; color: var(--text-muted); line-height: 1.7; }
.faq-cta-banner { padding: 5rem 0; background: linear-gradient(135deg, #F59E0B, #DC2626); text-align: center; position: relative; overflow: hidden; }
.faq-cta-banner h2 { font-size: 2rem; color: #fff; margin-bottom: 1rem; }
.faq-cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.faq-cta-blob { display: none; }

/* Floating WhatsApp */
.float-wa { position: fixed; bottom: 2rem; right: 2rem; width: 3.5rem; height: 3.5rem; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 15px rgba(37,211,102,0.3); z-index: 50; transition: all 0.3s; }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

/* Subpages (About, Services, FAQ, Contact, Blog) */
.page-hero { padding: 10rem 0 6rem; background: var(--bg-card); text-align: center; border-bottom: 1px solid var(--border-color); }
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero-title { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--text-dark); margin-bottom: 1.5rem; }
.page-hero-desc { font-size: 1.2rem; color: var(--text-muted); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img { border-radius: var(--radius-lg); box-shadow: 0 20px 40px rgba(0,0,0,0.08); width: 100%; }
.about-content h2 { font-size: 2rem; color: var(--text-dark); margin-bottom: 1rem; }
.about-content p { color: var(--text-muted); margin-bottom: 2rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.stat-box { border-left: 3px solid var(--gold-primary); padding-left: 1rem; }
.stat-val { font-size: 2.5rem; font-family: var(--font-sans); color: var(--text-dark); font-weight: 600; line-height: 1; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }

.features-grid, .faq-grid, .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-color); padding: 2rem; border-radius: var(--radius-lg); transition: all 0.3s; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(245, 158, 11, 0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.feature-icon { font-size: 2rem; color: var(--gold-primary); margin-bottom: 1.5rem; }
.feature-card h3 { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

.certifications-banner { background: var(--bg-card); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 4rem 0; text-align: center; }
.certifications-banner h2 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 2rem; }
.cert-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.cert-badge { background: var(--bg-main); border: 1px solid var(--border-color); padding: 0.75rem 1.5rem; border-radius: var(--radius-pill); font-weight: 500; color: var(--text-main); font-size: 0.9rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info { background: var(--bg-main); padding: 3rem; border-radius: var(--radius-lg); border: 1px solid var(--border-color); }
.contact-info h3 { font-size: 2rem; margin-bottom: 2rem; color: var(--text-dark); }
.contact-info-items { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; align-items: center; }
.ci-icon { width: 3rem; height: 3rem; background: rgba(245, 158, 11, 0.1); color: var(--gold-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-right: 1rem;}
.ci-value { font-size: 1.1rem; color: var(--text-dark); font-weight: 500; word-break: break-word; overflow-wrap: break-word; }
.contact-card { background: var(--bg-card); padding: 3rem; border-radius: var(--radius-lg); border: 1px solid var(--border-color); box-shadow: 0 10px 40px rgba(0,0,0,0.03); overflow: hidden; }
.contact-section, .contact-card, .contact-grid, .contact-info { max-width: 100%; overflow: hidden; }

.form-control { width: 100%; padding: 1rem; border: 1px solid var(--border-color); border-radius: var(--radius-md); background: var(--bg-card); color: var(--text-dark); font-family: var(--font-body); margin-bottom: 1.5rem; outline: none; transition: all 0.3s; }
.form-control:focus { border-color: var(--gold-primary); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1); }

.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); margin-bottom: 1rem; overflow: hidden; }
.faq-question { padding: 1.5rem 2rem; width: 100%; text-align: left; font-size: 1.1rem; font-weight: 600; color: var(--text-dark); display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-icon { color: var(--gold-primary); transition: transform 0.3s; }
.faq-answer { padding: 0 2rem 1.5rem; color: var(--text-muted); display: none; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-icon { transform: rotate(180deg); }

.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; padding: 4rem 0; }
.article-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; transition: transform 0.3s; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: rgba(245, 158, 11, 0.3); }
.article-img { height: 250px; width: 100%; object-fit: cover; }
.article-content { padding: 2rem; }
.article-meta { font-size: 0.85rem; color: var(--gold-primary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; font-weight: 600; }
.article-title { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 1rem; }
.article-desc { color: var(--text-muted); margin-bottom: 1.5rem; }

.sidebar-box { background: var(--bg-main); border: 1px solid var(--border-color); padding: 2rem; border-radius: var(--radius-lg); margin-bottom: 2rem; }
.sidebar-box h3 { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 1.5rem; }
.sidebar-service { display: block; padding: 1rem 0; border-bottom: 1px solid var(--border-color); color: var(--text-main); font-weight: 500; }
.sidebar-service:hover { color: var(--gold-primary); padding-left: 0.5rem; transition: all 0.3s; }

.service-hero { padding: 10rem 0 6rem; background: var(--bg-card); border-bottom: 1px solid var(--border-color); }
.service-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--text-dark); margin-bottom: 1.5rem; }
.service-content { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; }
.service-content h2, .service-content h3 { color: var(--text-dark); margin: 2rem 0 1rem; }
.service-content ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.service-content li { margin-bottom: 0.5rem; }

/* Service Detail Page */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; justify-content: center; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold-primary); }
.breadcrumb i { font-size: 0.6rem; }
.breadcrumb span { color: var(--text-dark); font-weight: 600; }

.service-detail-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; text-align: left; }
.svc-detail-icon { width: 4rem; height: 4rem; background: rgba(245,158,11,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--gold-primary); font-size: 1.75rem; margin-bottom: 1.5rem; }
.service-detail-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); margin-bottom: 1rem; }
.svc-detail-desc { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; }
.svc-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.svc-pricing-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.svc-pricing-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-color); }
.svc-from-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.svc-price-big { font-size: 3rem; font-family: var(--font-sans); font-weight: 700; color: var(--text-dark); line-height: 1; }
.svc-price-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.badge { display: inline-block; padding: 0.35rem 0.75rem; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.badge-green { background: rgba(16,185,129,0.1); color: #059669; }
.badge-blue { background: rgba(245,158,11,0.1); color: var(--gold-dark); }
.svc-includes-title { font-size: 1.1rem; color: var(--text-dark); font-weight: 700; margin-bottom: 1.5rem; }
.svc-features-list { list-style: none; margin-bottom: 2rem; }
.svc-features-list li { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0; color: var(--text-main); font-size: 0.95rem; border-bottom: 1px solid rgba(0,0,0,0.04); }
.check-circle { width: 1.5rem; height: 1.5rem; background: rgba(16,185,129,0.1); color: #059669; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; }

/* Process Steps */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-step { text-align: center; }
.process-icon { width: 4rem; height: 4rem; background: rgba(245,158,11,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--gold-primary); font-size: 1.5rem; position: relative; }
.process-num { position: absolute; top: -0.25rem; right: -0.25rem; width: 1.25rem; height: 1.25rem; background: linear-gradient(135deg, #F59E0B, #DC2626); color: #fff; border-radius: 50%; font-size: 0.65rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.process-step h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; }

/* Other Services */
.mb-8 { margin-bottom: 2rem; }
.other-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.other-service-card { display: flex; align-items: center; gap: 1rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.5rem; transition: all 0.3s; }
.other-service-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
.other-svc-icon { width: 3rem; height: 3rem; background: rgba(245,158,11,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--gold-primary); font-size: 1.25rem; flex-shrink: 0; }
.other-svc-title { font-weight: 600; color: var(--text-dark); font-size: 1rem; }
.other-svc-price { font-size: 0.85rem; color: var(--gold-primary); font-weight: 600; }
.other-arrow { color: var(--text-muted); margin-left: auto; transition: transform 0.3s; }
.other-service-card:hover .other-arrow { transform: translateX(4px); color: var(--gold-primary); }

/* Blog Page */
.featured-post-wrap { margin-bottom: 4rem; }
.featured-post { display: grid; grid-template-columns: 1.2fr 1fr; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; }
.featured-post:hover { border-color: rgba(245,158,11,0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.featured-post-img { position: relative; overflow: hidden; min-height: 300px; }
.featured-post-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-label { position: absolute; top: 1rem; left: 1rem; background: linear-gradient(135deg, #F59E0B, #DC2626); color: #fff; padding: 0.3rem 1rem; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; }
.featured-post-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.featured-post-content h2 { font-size: 1.75rem; color: var(--text-dark); margin-bottom: 1rem; }
.featured-post-content p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.post-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.meta-dot { width: 4px; height: 4px; background: var(--text-muted); border-radius: 50%; }
.read-more-link { color: var(--gold-primary); font-weight: 600; font-size: 0.95rem; }

.blog-main { }
.blog-section-title { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 2rem; }
.blog-card { display: block; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; }
.blog-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.blog-img-wrap { position: relative; height: 200px; overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.blog-cat { position: absolute; top: 0.75rem; left: 0.75rem; background: rgba(255,255,255,0.9); padding: 0.25rem 0.75rem; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 600; color: var(--text-dark); }
.blog-content { padding: 1.5rem; }
.blog-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.blog-content h3 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.blog-content p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.blog-read-more { color: var(--gold-primary); font-weight: 600; font-size: 0.85rem; }
.no-posts { text-align: center; color: var(--text-muted); padding: 3rem 0; }

.blog-sidebar { }
.sidebar-cta { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2rem; }
.sidebar-cta h3 { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.sidebar-cta p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.sidebar-chevron { margin-left: auto; font-size: 0.7rem; color: var(--text-muted); }

.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; }
.newsletter-form input { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border-color); border-radius: var(--radius-md); font-family: var(--font-body); outline: none; }
.newsletter-form input:focus { border-color: var(--gold-primary); }

.newsletter-banner { padding: 5rem 0; background: linear-gradient(135deg, #F59E0B, #DC2626); text-align: center; position: relative; overflow: hidden; }
.newsletter-banner h2 { font-size: 2rem; color: #fff; margin-bottom: 1rem; }
.newsletter-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.nb-blob { display: none; }
.nb-note { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-top: 1rem; }
.newsletter-form-wide { display: flex; gap: 1rem; max-width: 500px; margin: 0 auto; }
.newsletter-form-wide input { flex: 1; padding: 0.85rem 1.25rem; border: none; border-radius: var(--radius-pill); font-family: var(--font-body); font-size: 1rem; outline: none; }
.btn-gold, .newsletter-form-wide button, .newsletter-form button { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: var(--radius-pill); background: #fff; color: #DC2626; font-weight: 600; font-size: 1rem; border: none; cursor: pointer; transition: all 0.3s; font-family: var(--font-body); }
.btn-gold:hover, .newsletter-form-wide button:hover, .newsletter-form button:hover { background: var(--text-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

/* Blog Detail */
.blog-detail-hero { margin-bottom: 0; }
.blog-hero-img-wrap { position: relative; height: 400px; overflow: hidden; background: var(--bg-main); }
.blog-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.blog-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7)); }
.blog-hero-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 3rem 2rem; color: #fff; z-index: 1; }
.blog-hero-meta { display: flex; gap: 1rem; margin-bottom: 1rem; }
.blog-hero-cat { background: linear-gradient(135deg, #F59E0B, #DC2626); padding: 0.3rem 1rem; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; }
.blog-hero-read { font-size: 0.85rem; opacity: 0.8; display: flex; align-items: center; }
.blog-hero-text h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 600; }

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

.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border-color); font-size: 0.9rem; color: var(--text-muted); }
.article-author { display: flex; align-items: center; gap: 0.75rem; font-weight: 600; color: var(--text-dark); }
.author-avatar { width: 2.5rem; height: 2.5rem; background: linear-gradient(135deg, #F59E0B, #DC2626); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; }
.article-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag { background: rgba(245,158,11,0.1); color: var(--gold-dark); padding: 0.25rem 0.75rem; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; }

.article-body { line-height: 1.8; color: var(--text-main); font-size: 1.05rem; }
.article-body h2 { font-size: 1.75rem; color: var(--text-dark); margin: 2.5rem 0 1rem; padding-top: 1rem; border-top: 1px solid var(--border-color); }
.article-body h3 { font-size: 1.35rem; color: var(--text-dark); margin: 2rem 0 0.75rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--text-dark); }
.article-body blockquote { border-left: 4px solid var(--gold-primary); padding: 1rem 1.5rem; margin: 2rem 0; background: rgba(245,158,11,0.05); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; color: var(--text-muted); }

.article-share { display: flex; align-items: center; gap: 1rem; padding: 2rem 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); margin: 2rem 0; }
.article-share span { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; }
.share-btns { display: flex; gap: 0.75rem; }
.share-btn { width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; transition: all 0.3s; }
.share-btn:hover { transform: translateY(-3px); }
.share-wa { background: #25D366; }
.share-li { background: #0077B5; }
.share-fb { background: #1877F2; }
.share-tw { background: #1DA1F2; }

.article-cta-box { background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(239,68,68,0.08)); border: 1px solid rgba(245,158,11,0.2); border-radius: var(--radius-lg); padding: 2.5rem; margin-top: 2rem; }
.article-cta-box h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.75rem; }
.article-cta-box p { color: var(--text-muted); margin-bottom: 1.5rem; }

.related-post { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border-color); transition: all 0.3s; }
.related-post:hover { padding-left: 0.5rem; }
.related-post img { width: 4rem; height: 4rem; border-radius: var(--radius-md); object-fit: cover; flex-shrink: 0; }
.related-post p { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
.related-post span { font-size: 0.8rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 1024px) {
  /* Navbar - collapse to hamburger on tablets */
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; border: none; background: transparent; padding: 0.5rem; }
  .site-nav { width: 100%; top: 0; border-radius: 0; border-top: none; border-left: none; border-right: none; height: 4rem; }
  .nav-inner { padding: 0 1rem; }

  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-large, .bento-tall, .bento-wide, .bento-small { grid-column: 1 / -1; grid-row: auto; min-height: 200px; }
  .service-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid, .blog-layout, .contact-info-grid, .service-detail-hero, .blog-detail-layout { grid-template-columns: 1fr; }
  .blog-sidebar { margin-top: 3rem; }
  .services-full-grid { grid-template-columns: 1fr; }
  .svc-features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .other-services-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post-img { min-height: 200px; }
  .newsletter-form-wide { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-logo img { height: 2rem; }

  /* Global spacing */
  .max-w { padding: 0 1.25rem; }
  .py-20 { padding-top: 4rem; padding-bottom: 4rem; }
  .py-16 { padding-top: 3rem; padding-bottom: 3rem; }

  /* Home hero */
  .hero-section { min-height: 85vh; padding-top: 5rem; }
  .hero-headline { font-size: 2.2rem; }
  .hero-desc { font-size: 1rem; margin-bottom: 2rem; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 1rem; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }
  .hero-badge { font-size: 0.7rem; }

  /* Bento */
  .bento-section { padding: 4rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-title { font-size: 1.75rem; }
  .bento-card { padding: 1.5rem; min-height: auto !important; }
  .bento-content h3 { font-size: 1.2rem; }
  .bento-img-wrap { max-height: 150px !important; }
  .bento-small .bento-img-wrap,
  .bento-wide .bento-img-wrap { max-height: 80px !important; }

  /* Services list */
  .services-list-section { padding: 4rem 0; }
  .sr-title { font-size: 1.3rem; }
  .sr-desc { padding-right: 0; font-size: 0.9rem; }
  .sr-btn { width: 3rem; height: 3rem; font-size: 1.2rem; }

  /* Pricing */
  .pricing-section { padding: 4rem 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 2rem 1.5rem; }
  .pc-amount { font-size: 2.5rem; }

  /* CTA */
  .cta-dark { padding: 4rem 0; }

  /* Page heroes */
  .page-hero { padding: 7rem 0 3rem; }
  .page-hero-title { font-size: 2rem; }
  .page-hero-desc { font-size: 1rem; }
  .service-hero { padding: 7rem 0 3rem; }

  /* About page */
  .about-img { margin-bottom: 2rem; }
  .about-content h2 { font-size: 1.5rem; }
  .stat-val { font-size: 2rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 1.5rem; }

  /* Certifications */
  .cert-badges { flex-direction: column; align-items: stretch; }
  .cert-badge { text-align: center; }
  .certifications-banner { padding: 3rem 0; }

  /* Contact */
  .contact-chips { flex-direction: column; align-items: stretch; }
  .chip { justify-content: center; }
  .contact-info { padding: 2rem; }
  .contact-card { padding: 2rem; }
  .contact-section { padding: 4rem 0; }

  /* Services full cards */
  .service-full-card { padding: 1.5rem; }
  .svc-full-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .svc-full-icon { width: 3rem; height: 3rem; font-size: 1.2rem; }
  .svc-full-title-row h2 { font-size: 1.25rem; }
  .svc-actions { flex-direction: column; }
  .svc-actions .btn-primary, .svc-actions .btn-whatsapp { width: 100%; justify-content: center; }
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-amount { font-size: 2rem; }

  /* Service detail */
  .svc-detail-icon { width: 3rem; height: 3rem; font-size: 1.25rem; }
  .service-detail-hero h1 { font-size: 2rem; }
  .svc-detail-desc { font-size: 1rem; }
  .svc-hero-actions { flex-direction: column; }
  .svc-hero-actions .btn-primary, .svc-hero-actions .btn-whatsapp { width: 100%; justify-content: center; }
  .svc-pricing-card { padding: 1.5rem; }
  .svc-pricing-top { flex-direction: column; gap: 1rem; }
  .svc-price-big { font-size: 2.5rem; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .process-icon { width: 3.5rem; height: 3.5rem; font-size: 1.25rem; }

  /* FAQ */
  .faq-question { padding: 1.25rem 1.5rem; font-size: 1rem; }
  .faq-answer-inner { padding: 0 1.5rem 1.25rem; }
  .faq-cta-banner { padding: 3rem 0; }
  .faq-cta-banner h2 { font-size: 1.5rem; }

  /* Blog */
  .blog-hero-img-wrap { height: 250px; }
  .blog-hero-text h1 { font-size: 1.5rem; }
  .blog-hero-text { padding: 2rem 1.25rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section-title { font-size: 1.25rem; }
  .article-body { font-size: 1rem; }
  .article-body h2 { font-size: 1.4rem; }
  .article-body h3 { font-size: 1.15rem; }
  .article-share { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .article-cta-box { padding: 1.5rem; }
  .article-cta-box h3 { font-size: 1.25rem; }
  .article-meta { flex-direction: column; gap: 0.75rem; align-items: flex-start; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-minimal { padding: 3rem 0 1.5rem; }
  .fm-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Newsletter */
  .newsletter-banner { padding: 3rem 0; }
  .newsletter-banner h2 { font-size: 1.5rem; }
  .newsletter-form-wide { flex-direction: column; padding: 0 1rem; }
}

@media (max-width: 480px) {
  /* Extra small phones */
  .hero-headline { font-size: 1.8rem; }
  .hero-desc { font-size: 0.9rem; }
  .section-title { font-size: 1.5rem; }
  .page-hero-title { font-size: 1.6rem; }
  .page-hero { padding: 6.5rem 0 2.5rem; }

  .btn { padding: 0.85rem 1.5rem; font-size: 0.9rem; }
  .btn-primary { padding: 0.7rem 1.25rem; font-size: 0.9rem; }
  .btn-whatsapp { padding: 0.7rem 1.25rem; font-size: 0.9rem; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-val { font-size: 1.75rem; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 0 1rem; }

  .svc-price-big { font-size: 2rem; }
  .pc-amount { font-size: 2rem; }
  .pricing-amount { font-size: 1.75rem; }

  .blog-hero-img-wrap { height: 200px; }
  .blog-hero-text h1 { font-size: 1.25rem; }
  .featured-post-content { padding: 1.5rem; }
  .featured-post-content h2 { font-size: 1.25rem; }

  .service-detail-hero h1 { font-size: 1.6rem; }
  .breadcrumb { font-size: 0.8rem; flex-wrap: wrap; }

  .contact-info h3 { font-size: 1.5rem; }
  .form-title { font-size: 1.25rem; }
}

/* =============================================================
   SEO Enhancement Styles – Service Pages
   ============================================================= */

/* ── Trust Signals Strip ──────────────────────────── */
.trust-signals {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-pill); padding: 8px 16px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-dark);
  transition: all 0.3s;
}
.trust-item i { color: var(--gold-primary); font-size: 0.9rem; }
.trust-item:hover { background: rgba(245,158,11,0.15); transform: translateY(-2px); }

/* ── Service Detail H1 ────────────────────────────── */
.svc-detail-h1 {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark);
  margin-bottom: 16px; line-height: 1.15;
}

/* ── Hero Banner / Slider ─────────────────────────── */
.svc-hero-banner {
  width: 100%; height: 450px; object-fit: cover;
  border-radius: var(--radius-lg); margin-top: 20px; margin-bottom: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.svc-slider-container { position: relative; margin-top: 20px; margin-bottom: 28px; }
.svc-slider {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  gap: 16px; scrollbar-width: none;
}
.svc-slider::-webkit-scrollbar { display: none; }
.svc-slider .svc-hero-banner {
  flex: 0 0 100%; scroll-snap-align: start; margin: 0;
}
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.slider-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--border-color); border: none; cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active, .slider-dot:hover {
  background: var(--gold-primary); transform: scale(1.2);
}

/* ── SEO Content Layout (Article + Sidebar) ───────── */
.seo-content-section { background: #fff; }
.seo-content-wrapper {
  display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start;
}
.seo-main-content {
  font-size: 1.05rem; color: var(--text-main); line-height: 1.8;
}
.seo-main-content h2 {
  font-size: 1.6rem; color: var(--text-dark); margin: 32px 0 16px;
  padding-top: 24px; border-top: 1px solid var(--border-color);
}
.seo-main-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.seo-main-content p { margin-bottom: 16px; }
.seo-main-content ul, .seo-main-content ol {
  padding-left: 24px; margin-bottom: 20px;
}
.seo-main-content li { margin-bottom: 8px; }
.seo-main-content strong { color: var(--text-dark); }
.seo-main-content table {
  width: 100%; border-collapse: collapse; margin: 20px 0; border-radius: var(--radius-md); overflow: hidden;
}
.seo-main-content thead { background: rgba(245,158,11,0.1); }
.seo-main-content th {
  padding: 12px 16px; text-align: left; font-weight: 700; color: var(--text-dark);
  font-size: 0.9rem; border-bottom: 2px solid var(--border-color);
}
.seo-main-content td {
  padding: 12px 16px; border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}
.seo-main-content tr:hover td { background: rgba(245,158,11,0.03); }

/* ── Sidebar Cards ────────────────────────────────── */
.seo-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.sidebar-card h3 {
  font-size: 1.1rem; color: var(--text-dark); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.sidebar-card h3 i { color: var(--gold-primary); }
.quick-facts { list-style: none; }
.quick-facts li {
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.92rem; color: var(--text-main);
}
.quick-facts li:last-child { border-bottom: none; }
.quick-facts li strong { color: var(--text-dark); margin-right: 6px; }
.sidebar-card.sidebar-cta {
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(239,68,68,0.06));
  border-color: rgba(245,158,11,0.2);
}
.sidebar-card.sidebar-cta h3 { color: var(--text-dark); font-size: 1.2rem; }
.sidebar-card.sidebar-cta p { color: var(--text-muted); font-size: 0.9rem; }

/* ── Trust Banner Section ─────────────────────────── */
.trust-banner-section {
  padding: 60px 0; background: var(--bg-main);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.trust-banner-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.trust-banner-img img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.trust-banner-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--text-dark); margin-bottom: 16px;
}
.trust-banner-content p {
  color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; font-size: 1rem;
}
.trust-stats-row { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-stat { text-align: center; }
.trust-stat-num {
  display: block; font-size: 2rem; font-family: var(--font-sans);
  font-weight: 700; color: var(--gold-primary); line-height: 1;
}
.trust-stat-label {
  display: block; font-size: 0.8rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px;
}

/* ── Process Visual Grid (Process + Image) ────────── */
.process-visual-grid {
  display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center;
}
.process-image-col img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* ── FAQ Accordion ────────────────────────────────── */
.seo-faq-section .faq-accordion { max-width: 900px; margin: 0 auto; }
.seo-faq-section .faq-item {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden;
  transition: all 0.3s;
}
.seo-faq-section .faq-item:hover { border-color: rgba(245,158,11,0.3); }
.seo-faq-section .faq-question {
  width: 100%; padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; background: none; border: none; cursor: pointer;
  font-size: 1.05rem; font-weight: 600; color: var(--text-dark);
  text-align: left; font-family: var(--font-body);
}
.seo-faq-section .faq-chevron {
  color: var(--gold-primary); transition: transform 0.3s; font-size: 0.9rem;
}
.seo-faq-section .faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.seo-faq-section .faq-item.open .faq-answer {
  max-height: 400px; padding: 0 24px 20px;
}
.seo-faq-section .faq-item.open .faq-chevron { transform: rotate(180deg); }
.seo-faq-section .faq-answer p {
  color: var(--text-muted); line-height: 1.75; font-size: 0.95rem;
}

/* ── Two-Column SEO Text + Image ──────────────────── */
.seo-two-col-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}

/* ── Responsive: SEO Sections ─────────────────────── */
@media (max-width: 1024px) {
  .seo-content-wrapper { grid-template-columns: 1fr; }
  .seo-sidebar { position: static; }
  .trust-banner-grid { grid-template-columns: 1fr; }
  .trust-banner-img { order: -1; }
  .process-visual-grid { grid-template-columns: 1fr; }
  .process-image-col { order: -1; }
  .seo-two-col-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .svc-hero-banner { height: 280px; }
  .trust-signals { gap: 10px; }
  .trust-item { font-size: 0.78rem; padding: 6px 12px; }
  .svc-detail-h1 { font-size: 1.8rem; }
  .trust-stats-row { gap: 20px; }
  .trust-stat-num { font-size: 1.6rem; }
  .seo-main-content h2 { font-size: 1.3rem; }
  .seo-faq-section .faq-question { font-size: 0.95rem; padding: 16px 20px; }
}
@media (max-width: 480px) {
  .svc-hero-banner { height: 200px; }
  .trust-signals { flex-direction: column; }
  .svc-detail-h1 { font-size: 1.5rem; }
  .trust-stats-row { flex-direction: column; gap: 16px; }
}
