/* =============================================
   CABINET OROCHI — MAIN STYLESHEET
   Colors: ISU Bengal Black #000000, Roarange #F47920, Light Gray #E6E7E8
   ============================================= */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #000000;
  --primary-light: #2a2a2a;
  --primary-dark: #000000;
  --gold: #F47920;
  --gold-light: #f89a50;
  --gold-dark: #c85f10;
  --white: #FFFFFF;
  --off-white: #E6E7E8;
  --light-gray: #d4d5d7;
  --gray: #6B7A8D;
  --dark: #111111;
  --success: #28A745;
  --danger: #DC3545;
  --warning: #FFC107;

  --font-main: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.14);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.20);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { font-size: 1rem; color: var(--gray); line-height: 1.75; }

.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.font-display { font-family: var(--font-display); }

/* ---- Layout Helpers ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244,121,32,0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header h2 { color: var(--primary); margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244,121,32,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,121,32,0.45);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-gold {
  border-top: 4px solid var(--gold);
}
.card-primary {
  background: var(--primary);
  color: var(--white);
}
.card-primary p { color: rgba(255,255,255,0.8); }

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-gold { background: rgba(244,121,32,0.15); color: var(--gold-dark); }
.badge-primary { background: rgba(0,0,0,0.1); color: var(--primary); }
.badge-success { background: rgba(40,167,69,0.1); color: var(--success); }

/* ---- Icon Box ---- */
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-box-gold { background: rgba(244,121,32,0.12); color: var(--gold); }
.icon-box-primary { background: rgba(0,0,0,0.08); color: var(--primary); }
.icon-box-white { background: rgba(255,255,255,0.15); color: var(--white); }
.icon-box-lg { width: 80px; height: 80px; font-size: 2.2rem; }

/* ---- ======== HEADER / NAV ======== ---- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  padding: 22px 0;
  transition: var(--transition);
}
#header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
}
.logo img {
  height: 64px;
  width: auto;
  max-height: 64px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: contain;
  background: var(--white);
  padding: 4px 8px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
#header.scrolled .logo { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
#header.scrolled .nav-links a { color: var(--primary); }
#header.scrolled .nav-links a:hover,
#header.scrolled .nav-links a.active {
  background: rgba(0,0,0,0.07);
  color: var(--primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#header.scrolled .hamburger span { background: var(--primary); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 1200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-menu.open { display: flex !important; }
.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  padding: 14px 40px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1201;
  padding: 8px;
  line-height: 1;
}

/* ---- ======== HERO ======== ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,121,32,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); display: block; }
.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-desc strong { color: var(--gold-light); }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

.hero-visual { position: relative; }
.hero-card-stack { position: relative; }

.hero-main-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.hero-main-card h3 { color: var(--gold); margin-bottom: 16px; font-size: 1.1rem; }

.offer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.offer-item:last-child { border-bottom: none; }
.offer-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(244,121,32,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.offer-item span { font-size: 0.9rem; color: rgba(255,255,255,0.85); }

.hero-floating-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.hero-floating-badge .badge-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.hero-floating-badge .badge-txt {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Scroll indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ---- ======== CORE OFFERS SECTION ======== ---- */
.offers-section { background: var(--off-white); }

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.offer-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.offer-card .icon-box { margin: 0 auto 24px; }
.offer-card h3 { color: var(--primary); margin-bottom: 12px; }
.offer-card p { margin-bottom: 24px; font-size: 0.95rem; }
.offer-card ul { text-align: left; margin-bottom: 28px; }
.offer-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray);
}
.offer-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- ======== PROCESS SECTION ======== ---- */
.process-section { background: var(--primary); }
.process-section .section-header h2 { color: var(--white); }
.process-section .section-header p { color: rgba(255,255,255,0.7); }
.process-section .eyebrow { color: var(--gold); }

.process-steps { display: flex; gap: 0; align-items: stretch; }
.process-step {
  flex: 1;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.process-step:last-child { border-right: none; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(244,121,32,0.15);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-step .icon-box { margin: 0 auto 20px; background: rgba(255,255,255,0.08); color: var(--gold); }
.process-step h4 { color: var(--white); margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.process-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 0.9rem;
  z-index: 1;
}

/* ---- ======== STATS BANNER ======== ---- */
.stats-banner { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.stats-banner .stat-item { padding: 16px 24px; }
.stats-banner .stat-number { color: var(--white); }
.stats-banner .stat-label { color: rgba(0,0,0,0.7); font-weight: 600; }

/* ---- ======== SERVICES PREVIEW ======== ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
  transform: translateX(4px);
}
.service-card .service-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}
.service-card .service-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}
.service-card .service-sessions {
  font-size: 0.8rem;
  color: var(--gray);
  margin-left: auto;
}

/* ---- ======== CTA BAND ======== ---- */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244,121,32,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 480px; }
.cta-band-btns { display: flex; gap: 16px; flex-shrink: 0; }

/* ---- ======== TESTIMONIALS ======== ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
}
.testimonial-text { font-size: 0.95rem; color: var(--gray); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--gray); }
.stars { color: var(--gold); font-size: 0.9rem; }

/* ---- ======== FOOTER ======== ---- */
#footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }

#footer .logo { color: var(--white); margin-bottom: 20px; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--gold); color: var(--primary-dark); }

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a::before { content: '→'; opacity: 0; transition: var(--transition); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.35); }

/* ---- ======== PAGE HEADER ======== ---- */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,121,32,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; }

/* ---- ======== ABOUT PAGE ======== ---- */
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual {
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
}
.about-visual-inner h3 { color: var(--gold); margin-bottom: 24px; }
.about-stat-row { display: flex; gap: 24px; margin-top: 32px; }
.about-stat {
  flex: 1;
  text-align: center;
  background: rgba(255,255,255,0.08);
  padding: 20px 12px;
  border-radius: var(--radius);
}
.about-stat .num { font-size: 2rem; font-weight: 800; color: var(--gold); display: block; }
.about-stat .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}
.value-item:last-child { border-bottom: none; }
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(244,121,32,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.value-item h5 { color: var(--primary); margin-bottom: 4px; }
.value-item p { font-size: 0.9rem; }

/* ---- ======== SERVICES PAGE ======== ---- */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.service-detail-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.service-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 28px;
  position: relative;
}
.service-card-header .icon-box { background: rgba(255,255,255,0.15); color: var(--gold); }
.service-card-header h3 { color: var(--white); margin-bottom: 4px; font-size: 1.1rem; }
.service-card-header .sub { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

.service-card-body { padding: 28px; }
.service-card-body p { font-size: 0.9rem; margin-bottom: 20px; }

.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--gray); }
.info-row .value { font-weight: 600; color: var(--primary); }

.service-price-box {
  background: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(201,168,76,0.06));
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 20px;
  text-align: center;
}
.price-from { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.price-main { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.price-unit { font-size: 0.8rem; color: var(--gray); }

/* ---- ======== FOR SCHOOLS PAGE ======== ---- */
.school-hero-bg { background: linear-gradient(135deg, #111111, #000000); }

.rule-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--gold);
  margin-bottom: 20px;
}
.rule-card .rule-icon { font-size: 2rem; margin-bottom: 12px; }
.rule-card h4 { color: var(--primary); margin-bottom: 8px; }
.rule-card p { font-size: 0.9rem; }

.commission-banner {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.commission-banner .pct { font-size: 4rem; font-weight: 800; color: var(--white); line-height: 1; }
.commission-banner h3 { color: var(--white); margin: 8px 0; }
.commission-banner p { color: rgba(0,0,0,0.7); font-size: 0.95rem; }

.school-pricing-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 24px; }
.school-pricing-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
}
.school-pricing-table th:first-child { border-radius: 10px 0 0 0; }
.school-pricing-table th:last-child { border-radius: 0 10px 0 0; }
.school-pricing-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9rem;
  color: var(--dark);
}
.school-pricing-table tr:last-child td { border-bottom: none; }
.school-pricing-table tr:hover td { background: var(--off-white); }
.school-pricing-table td.price { font-weight: 700; color: var(--primary); }

/* ---- ======== CONTACT PAGE ======== ---- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--gold); }

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(244,121,32,0.1);
}
.form-control::placeholder { color: rgba(107,122,141,0.5); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  height: 100%;
}
.contact-info-card h3 { color: var(--gold); margin-bottom: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-item .c-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(244,121,32,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item .c-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.contact-item .c-value { font-weight: 600; color: var(--white); font-size: 0.95rem; margin-top: 2px; }

.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.form-note { font-size: 0.8rem; color: var(--gray); }

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}
.alert-success { background: rgba(40,167,69,0.1); border: 1px solid rgba(40,167,69,0.3); color: #155724; }
.alert-error { background: rgba(220,53,69,0.1); border: 1px solid rgba(220,53,69,0.3); color: #721c24; }
.alert.show { display: block; }

/* ---- ======== BLOG PAGE ======== ---- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.blog-card-img .bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, var(--white) 0, var(--white) 1px, transparent 0, transparent 50%);
  background-size: 12px 12px;
}
.blog-card-body { padding: 24px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.blog-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gray); }
.blog-card-body h4 { color: var(--primary); margin-bottom: 10px; font-size: 1.05rem; }
.blog-card-body p { font-size: 0.9rem; margin-bottom: 16px; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.read-more:hover { gap: 10px; }

/* ---- Utility ---- */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-primary { background: var(--primary); }
.bg-dark { background: var(--primary-dark); }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- Back to top button ---- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 900;
  border: none;
  cursor: pointer;
}
.back-to-top.visible { display: flex !important; }

/* ---- ======== WHATSAPP FLOATING BUTTON ======== ---- */
a.whatsapp-float,
.whatsapp-float {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
  width: 56px !important;
  height: 56px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none !important;
  color: #fff !important;
  font-size: 1.6rem;
  animation: wa-pulse 2.5s infinite;
}
a.whatsapp-float:hover,
.whatsapp-float:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 6px 24px rgba(37,211,102,0.65) !important;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---- ======== TABLE OVERFLOW FIX ======== ---- */
.school-pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.school-pricing-table {
  min-width: 480px;
  width: 100%;
}

/* ---- Animate on scroll ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
