/*
  Amil Karamat Masih — Professional Spiritual Consultant
  Website Stylesheet | Mobile-First Responsive Design
  ============================================================
*/

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --primary:       #0B2C5F;
  --primary-dark:  #081f44;
  --secondary:     #4A90D9;
  --wa:            #25D366;
  --wa-dark:       #1eb857;
  --white:         #ffffff;
  --off-white:     #F8FAFC;
  --gray-100:      #F3F4F6;
  --gray-200:      #E5E7EB;
  --gray-500:      #6B7280;
  --gray-700:      #374151;
  --gray-900:      #111827;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.06);
  --shadow:        0 4px 6px rgba(0,0,0,.07),0 10px 15px rgba(0,0,0,.07);
  --shadow-lg:     0 10px 25px rgba(0,0,0,.1),0 20px 40px rgba(0,0,0,.07);
  --shadow-xl:     0 20px 40px rgba(0,0,0,.12),0 40px 60px rgba(0,0,0,.08);
  --radius:        16px;
  --radius-sm:     10px;
  --radius-pill:   9999px;
  --transition:    all .3s ease;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); color: var(--gray-700); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); line-height: 1.2; }

/* ---- CONTAINER ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media(min-width:768px){ .container { padding: 0 32px; } }

/* ---- SECTION HEADER ---- */
.section-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 10px;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px,5vw,48px);
  font-weight: 700; color: var(--primary);
}
.section-heading.white { color: var(--white); }
.section-line { width: 80px; height: 4px; background: var(--secondary); border-radius: 2px; }
.section-line.center { margin: 16px auto 0; }
.section-line.left   { margin: 16px 0 0; }
.section-title { text-align: center; margin-bottom: 56px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: var(--radius-pill);
  font-family: var(--font-sans); font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-lg); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: var(--shadow); }
.btn-white:hover { background: var(--gray-100); box-shadow: var(--shadow-lg); }
.btn-wa { background: var(--wa); color: var(--white); box-shadow: 0 4px 15px rgba(37,211,102,.35); }
.btn-wa:hover { background: var(--wa-dark); box-shadow: 0 8px 25px rgba(37,211,102,.4); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* SVG ICON helper */
.ico { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.ico-sm { width: 16px; height: 16px; }
.ico-lg { width: 24px; height: 24px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(11,44,95,.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 16px 0; transition: var(--transition);
}
.header.scrolled { background: rgba(11,44,95,.98); padding: 10px 0; box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.logo { display: flex; flex-direction: column; z-index: 901; line-height: 1; }
.logo-name { font-family: var(--font-serif); font-size: clamp(17px,3.5vw,26px); font-weight: 700; color: var(--white); }
.logo-sub  { font-size: clamp(9px,1.8vw,11px); font-weight: 600; color: var(--secondary); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 3px; }

/* Desktop nav */
.nav-desktop { display: none; align-items: center; gap: 28px; }
@media(min-width:768px){ .nav-desktop { display: flex; } }
.nav-links { display: flex; gap: 22px; }
.nav-link {
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.85);
  position: relative; padding-bottom: 2px;
}
.nav-link::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--secondary); transition:var(--transition); }
.nav-link:hover,.nav-link.active { color: var(--secondary); }
.nav-link:hover::after,.nav-link.active::after { width: 100%; }
.nav-ctas { display: flex; gap: 8px; }
.nav-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; transition: var(--transition); }
.nav-btn-call { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.nav-btn-call:hover { background: rgba(255,255,255,.22); }
.nav-btn-wa { background: var(--wa); color: var(--white); box-shadow: 0 2px 10px rgba(37,211,102,.3); }
.nav-btn-wa:hover { background: var(--wa-dark); }

/* Hamburger */
.mobile-menu-btn { display: flex; align-items: center; justify-content: center; background: transparent; border: none; cursor: pointer; color: var(--white); z-index: 901; padding: 6px; }
@media(min-width:768px){ .mobile-menu-btn { display: none; } }
.hamburger { width: 24px; height: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; background: var(--primary); z-index: 900;
  padding: 100px 32px 40px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-link {
  display: block; font-family: var(--font-serif); font-size: 22px;
  color: rgba(255,255,255,.8); padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav-link:hover,.mobile-nav-link.active { color: var(--secondary); }
.mobile-ctas { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.mobile-cta { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 15px; border-radius: 12px; font-size: 16px; font-weight: 600; }
.mobile-cta-call { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.mobile-cta-wa   { background: var(--wa); color: var(--white); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative; width: 100%;
  height: 100svh; min-height: 580px;
  overflow: hidden; background: var(--primary);
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform 7s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,44,95,.93) 0%, rgba(11,44,95,.72) 50%, rgba(74,144,217,.42) 100%);
}
.hero-content {
  position: relative; z-index: 10; height: 100%;
  display: flex; align-items: center; padding-top: 80px;
}
.hero-text { max-width: 680px; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px,6vw,72px);
  font-weight: 800; color: var(--white);
  margin-bottom: 18px; line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-desc {
  font-size: clamp(14px,2.5vw,19px);
  color: rgba(255,255,255,.9); margin-bottom: 32px;
  max-width: 540px; font-weight: 300; line-height: 1.65;
}
.hero-btns { display: flex; flex-direction: column; gap: 12px; }
@media(min-width:460px){ .hero-btns { flex-direction: row; flex-wrap: wrap; } }

/* Arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.25);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); backdrop-filter: blur(4px);
}
@media(min-width:768px){ .hero-arrow { width: 52px; height: 52px; } }
.hero-arrow:hover { background: rgba(0,0,0,.55); border-color: rgba(255,255,255,.4); }
.hero-prev { left: 12px; }
.hero-next { right: 12px; }

/* Dots */
.hero-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: 8px; align-items: center;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 99px;
  background: rgba(255,255,255,.45); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.hero-dot.active { width: 28px; background: var(--white); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 80px 0; background: var(--white); }
.about-grid { display: flex; flex-direction: column; align-items: center; gap: 48px; }
@media(min-width:992px){ .about-grid { flex-direction: row; gap: 80px; align-items: center; } }
.about-img-wrap { width: 100%; }
@media(min-width:992px){ .about-img-wrap { width: 45%; flex-shrink: 0; } }
.about-img-box {
  width: 100%; max-width: 420px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-xl); background: var(--gray-100);
}
.about-img-box img {
  width: 100%; height: auto;
  max-height: 340px; object-fit: contain; object-position: center bottom;
}
@media(min-width:992px){ .about-img-box img { max-height: 520px; } }
.about-content { width: 100%; }
.about-text { font-size: 16px; color: var(--gray-500); line-height: 1.75; font-weight: 300; margin-bottom: 14px; }
.about-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding: 80px 0; background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media(min-width:560px){ .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:992px){ .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200); transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(74,144,217,.35); }
.service-card-img { position: relative; height: 210px; overflow: hidden; background: var(--primary); }
@media(min-width:768px){ .service-card-img { height: 230px; } }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; opacity: .9; }
.service-card:hover .service-card-img img { transform: scale(1.08); opacity: 1; }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.62) 0%,transparent 55%); }
.service-card-name { position: absolute; bottom: 12px; left: 14px; right: 14px; font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.3; }
.service-card-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.service-card-desc { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; font-weight: 300; flex: 1; margin-bottom: 14px; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--secondary); }
.service-card-link:hover { color: var(--primary); }
.service-card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s ease; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  position: relative; padding: 64px 0; overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a8a 55%, var(--secondary) 100%);
}
.cta-strip::before { content:''; position:absolute; top:-40%; left:-15%; width:380px; height:380px; background:rgba(255,255,255,.05); border-radius:50%; filter:blur(60px); }
.cta-strip::after  { content:''; position:absolute; bottom:-40%; right:-15%; width:380px; height:380px; background:rgba(74,144,217,.18); border-radius:50%; filter:blur(60px); }
.cta-inner { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 32px; text-align: center; }
@media(min-width:768px){ .cta-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.cta-text h2 { font-size: clamp(22px,4vw,36px); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.cta-text p  { font-size: 15px; color: rgba(255,255,255,.82); font-weight: 300; max-width: 500px; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
@media(min-width:460px){ .cta-btns { flex-direction: row; } }

/* ============================================================
   INFO SECTIONS (alternating)
   ============================================================ */
.info-section { padding: 72px 0; }
.info-section:nth-child(odd)  { background: var(--white); }
.info-section:nth-child(even) { background: var(--off-white); }
.info-grid { display: flex; flex-direction: column; align-items: center; gap: 40px; }
@media(min-width:992px){ .info-grid { flex-direction: row; gap: 64px; align-items: center; } .info-grid.rev { flex-direction: row-reverse; } }
.info-img-wrap { width: 100%; }
@media(min-width:992px){ .info-img-wrap { width: 46%; flex-shrink: 0; } }
.info-img-box {
  width: 100%; max-width: 520px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--white);
  border: 1px solid var(--gray-200); padding: 8px;
}
@media(min-width:768px){ .info-img-box { padding: 16px; } }
.info-img-box img {
  width: 100%; height: auto;
  max-height: 260px; object-fit: contain; display: block;
  border-radius: 10px; transition: transform .7s ease;
}
@media(min-width:768px){ .info-img-box img { max-height: 340px; } }
.info-img-box:hover img { transform: scale(1.03); }
.info-content { width: 100%; }
.info-heading { font-size: clamp(22px,3.5vw,34px); font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.info-line { width: 60px; height: 3px; background: var(--secondary); border-radius: 2px; margin-bottom: 20px; }
.info-text { font-size: 15px; color: var(--gray-500); line-height: 1.75; font-weight: 300; margin-bottom: 12px; }
.info-cta { margin-top: 24px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 80px 0; background: var(--primary);
  position: relative; overflow: hidden;
}
.why-section::before { content:''; position:absolute; top:-60px; right:-60px; width:400px; height:400px; background:rgba(74,144,217,.1); border-radius:50%; filter:blur(80px); }
.why-section::after  { content:''; position:absolute; bottom:-60px; left:-60px; width:400px; height:400px; background:rgba(74,144,217,.1); border-radius:50%; filter:blur(80px); }
.why-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; gap: 18px; }
@media(min-width:560px){ .why-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:992px){ .why-grid { grid-template-columns: repeat(3,1fr); } }
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; transition: var(--transition); }
.why-card:hover { background: rgba(255,255,255,.11); transform: translateY(-6px); border-color: rgba(74,144,217,.5); box-shadow: 0 0 30px rgba(74,144,217,.14); }
.why-icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(74,144,217,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: var(--transition); }
.why-icon svg { width: 24px; height: 24px; stroke: var(--secondary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: var(--transition); }
.why-card:hover .why-icon { background: rgba(74,144,217,.4); transform: scale(1.1); }
.why-card:hover .why-icon svg { stroke: var(--white); }
.why-title { font-family: var(--font-serif); font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-desc  { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.65; font-weight: 300; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 80px 0; background: var(--off-white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.faq-item.open { box-shadow: var(--shadow); border-color: rgba(74,144,217,.35); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; cursor: pointer;
  font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: var(--primary);
  gap: 14px; user-select: none;
}
.faq-question:hover, .faq-item.open .faq-question { color: var(--secondary); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-text { padding: 0 22px 20px; font-size: 14.5px; color: var(--gray-500); line-height: 1.75; font-weight: 300; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid { display: flex; flex-direction: column; gap: 36px; max-width: 1080px; margin: 0 auto; }
@media(min-width:992px){ .contact-grid { flex-direction: row; gap: 56px; align-items: flex-start; } }
.contact-info { width: 100%; }
@media(min-width:992px){ .contact-info { width: 38%; flex-shrink: 0; } }
.contact-info-card { background: var(--off-white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.contact-info-title { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon.blue { background: rgba(11,44,95,.1); }
.contact-icon.green { background: rgba(37,211,102,.12); }
.contact-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-icon.blue svg { stroke: var(--primary); }
.contact-icon.green svg { stroke: var(--wa); }
.contact-item-label { font-size: 11px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 3px; }
.contact-item-value { font-size: 15px; font-weight: 700; color: var(--primary); }
a.contact-item-value:hover { color: var(--secondary); }
a.contact-item-value.green-val { color: var(--gray-700); }
a.contact-item-value.green-val:hover { color: var(--wa); }
hr.divider { border: none; border-top: 1px solid var(--gray-200); margin: 20px 0; }
.contact-direct-btns { display: flex; flex-direction: column; gap: 10px; }
.contact-direct-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 13px; border-radius: 10px; font-size: 14.5px; font-weight: 700; transition: var(--transition); }
.contact-direct-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-direct-btn.blue { background: var(--primary); color: var(--white); }
.contact-direct-btn.blue:hover { background: var(--primary-dark); }
.contact-direct-btn.green { background: var(--wa); color: var(--white); }
.contact-direct-btn.green:hover { background: var(--wa-dark); }

/* Form */
.contact-form-wrap { width: 100%; }
.contact-form { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); }
@media(min-width:560px){ .contact-form { padding: 36px; } }
.form-title { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media(min-width:540px){ .form-row { grid-template-columns: repeat(2,1fr); } }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 12.5px; font-weight: 600; color: var(--gray-700); }
.form-control {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200);
  border-radius: 10px; font-family: var(--font-sans); font-size: 14px;
  color: var(--gray-900); background: var(--off-white); outline: none; transition: var(--transition);
}
.form-control:focus { border-color: var(--secondary); background: var(--white); box-shadow: 0 0 0 3px rgba(74,144,217,.12); }
textarea.form-control { resize: none; min-height: 118px; }
.form-group.has-error .form-control { border-color: #dc2626; }
.form-error { font-size: 11.5px; color: #dc2626; display: none; margin-top: 2px; }
.form-group.has-error .form-error { display: block; }
.form-submit {
  width: 100%; padding: 15px; background: var(--primary); color: var(--white);
  border: none; border-radius: 12px; font-family: var(--font-sans);
  font-size: 15px; font-weight: 700; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px;
}
.form-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.form-submit:disabled { opacity: .7; transform: none; }
.form-submit svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-success {
  display: none; text-align: center; padding: 16px;
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3);
  border-radius: 10px; color: #15803d; font-weight: 600; margin-top: 14px; font-size: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary); color: var(--white); padding: 60px 0 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 44px; }
@media(min-width:560px){ .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:992px){ .footer-grid { grid-template-columns: repeat(4,1fr); } }
.footer-brand { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.footer-about-text { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.7; font-weight: 300; }
.footer-col-title { font-size: 13px; font-weight: 600; color: var(--secondary); letter-spacing: .5px; margin-bottom: 14px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-link { font-size: 13px; color: rgba(255,255,255,.72); }
.footer-link:hover { color: var(--secondary); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-contact-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact-label { font-size: 10px; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .5px; display: block; }
.footer-contact-value { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.88); }
.footer-wa-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; background: var(--wa); color: var(--white); border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; margin-top: 6px; }
.footer-wa-btn:hover { background: var(--wa-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
}
@media(min-width:768px){ .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.42); }
.back-to-top { display: flex; align-items: center; gap: 8px; background: none; border: none; font-family: var(--font-sans); font-size: 12.5px; color: rgba(255,255,255,.6); cursor: pointer; transition: var(--transition); }
.back-to-top:hover { color: var(--white); }
.back-to-top-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.back-to-top-icon svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-wa {
  position: fixed; bottom: 24px; right: 18px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: var(--transition);
}
.float-wa:hover { background: var(--wa-dark); transform: scale(1.1); }
.float-wa::before {
  content: ''; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(.88); opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}
.float-wa svg { width: 26px; height: 26px; fill: currentColor; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--primary); padding: 140px 0 72px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg,rgba(11,44,95,.96) 0%,rgba(74,144,217,.28) 100%); }
.page-hero-inner { position: relative; z-index: 10; }
.page-hero h1 { font-size: clamp(30px,6vw,58px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.page-hero p  { font-size: clamp(15px,2.5vw,19px); color: rgba(255,255,255,.8); max-width: 580px; margin: 0 auto; font-weight: 300; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.breadcrumb a { color: var(--secondary); }
.breadcrumb a:hover { color: var(--white); }
.bc-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.35); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.from-left  { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.visible    { opacity: 1; transform: translate(0); }
.stagger > * { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.stagger.visible > *:nth-child(1) { transition-delay:   0ms; }
.stagger.visible > *:nth-child(2) { transition-delay:  80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }
.stagger.visible > *:nth-child(9) { transition-delay: 640ms; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.text-center { text-align: center; }
