/* ==========================================================================
   CREATOR NIHAR - MAIN STYLESHEET
   Brand: Creator Nihar
   Tagline: "Creative Minds. Digital Excellence."
   Palette: Clean Light BG, Deep Blue Primary, Vibrant Orange Accents
   ========================================================================== */

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

/* --- CSS VARIABLES & THEME TOKENS --- */
:root {
  /* Brand Core Colors (Extracted from Brand Logo) */
  --brand-blue: #0A4E8C;
  --brand-blue-hover: #083E70;
  --brand-blue-dark: #06284A;
  --brand-blue-deep: #03172E;
  --brand-blue-light: #EBF3FA;
  --brand-blue-subtle: #F2F7FD;
  --brand-blue-glow: rgba(10, 78, 140, 0.15);
  
  /* Brand Accent Colors */
  --brand-orange: #F5701E;
  --brand-orange-hover: #DC5E12;
  --brand-orange-light: #FFF2E8;
  --brand-orange-glow: rgba(245, 112, 30, 0.28);
  --brand-gold: #FFAA33;

  /* Surfaces & Backgrounds */
  --bg-page: #F8FAFD;
  --bg-card: #FFFFFF;
  --bg-card-glass: rgba(255, 255, 255, 0.88);
  --bg-card-hover: #FFFFFF;
  
  /* Text Colors */
  --text-primary: #0A1C2E;
  --text-secondary: #4A5B70;
  --text-muted: #728298;
  --text-inverse: #FFFFFF;

  /* Borders & Dividers */
  --border-subtle: rgba(10, 78, 140, 0.08);
  --border-light: rgba(10, 78, 140, 0.14);
  --border-orange: rgba(245, 112, 30, 0.35);
  --border-focus: #0A4E8C;

  /* Shadows */
  --shadow-xs: 0 2px 6px rgba(10, 40, 74, 0.04);
  --shadow-sm: 0 4px 14px rgba(10, 40, 74, 0.06);
  --shadow-md: 0 10px 28px rgba(10, 40, 74, 0.08);
  --shadow-lg: 0 20px 48px rgba(10, 40, 74, 0.12);
  --shadow-orange: 0 12px 30px rgba(245, 112, 30, 0.25);
  --shadow-blue: 0 12px 30px rgba(10, 78, 140, 0.22);

  /* Layout & Spacing */
  --container-max: 1240px;
  --header-height: 82px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & GLOBAL BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Subtle background ambient mesh */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: 
    radial-gradient(circle at 15% 15%, rgba(10, 78, 140, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 25%, rgba(245, 112, 30, 0.035) 0%, transparent 35%),
    radial-gradient(circle at 50% 85%, rgba(10, 78, 140, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Section Common Spacing */
.section {
  padding: 96px 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(10, 78, 140, 0.15);
}

.section-tag .dot {
  width: 7px;
  height: 7px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--brand-orange);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--brand-blue-deep);
  line-height: 1.22;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title .text-gradient {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #E65A08 100%);
  color: var(--text-inverse);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(245, 112, 30, 0.35);
  background: linear-gradient(135deg, #FF7B2B 0%, var(--brand-orange) 100%);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--brand-blue-dark);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--brand-blue-light);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.38);
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(6, 40, 74, 0.07);
  height: 72px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
}

.navbar.scrolled .brand-logo-img {
  height: 42px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--brand-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--brand-blue);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-btn {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-box {
  width: 26px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 26px;
  height: 2.5px;
  background-color: var(--brand-blue-deep);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  display: block;
}

.hamburger-inner {
  position: relative;
  margin-top: 8.75px;
}

.hamburger-inner::before {
  content: '';
  position: absolute;
  top: -8px;
}

.hamburger-inner::after {
  content: '';
  position: absolute;
  bottom: -8px;
}

.mobile-toggle.active .hamburger-inner {
  background-color: transparent;
}

.mobile-toggle.active .hamburger-inner::before {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--brand-orange);
}

.mobile-toggle.active .hamburger-inner::after {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--brand-orange);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
  opacity: 0.75;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-badge-tag {
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.hero-badge-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-blue-deep);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.4vw, 3.65rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brand-blue-deep);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.hero-title .gradient-span {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-orange) 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 42px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
}

.trust-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-frame {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 24px 60px rgba(10, 78, 140, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
  max-width: 440px;
  width: 100%;
  text-align: center;
  transition: transform 0.4s ease;
}

.hero-card-frame:hover {
  transform: translateY(-4px);
}

.hero-glow-back {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(245, 112, 30, 0.15) 0%, rgba(10, 78, 140, 0.1) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  animation: float-glow 6s infinite ease-in-out alternate;
}

@keyframes float-glow {
  0% { transform: scale(0.9) translate(-10px, -10px); }
  100% { transform: scale(1.1) translate(15px, 15px); }
}

.hero-logo-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-subtle);
  margin-bottom: 24px;
  position: relative;
}

.hero-logo-box img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.hero-badge-floating {
  position: absolute;
  background: #FFFFFF;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
  white-space: nowrap;
}

.hero-badge-floating.badge-top {
  top: -12px;
  right: -14px;
  color: var(--brand-orange);
}

.hero-badge-floating.badge-bottom {
  bottom: -14px;
  left: -14px;
}

.hero-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}

.meta-pill {
  background: var(--brand-blue-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
}

.meta-pill .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.meta-pill .value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-blue-deep);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 42px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 78, 140, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(245, 112, 30, 0.3);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDFB 100%);
}

.service-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: var(--brand-orange-light);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  align-self: flex-start;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  background: var(--brand-blue);
  color: #FFFFFF;
  transform: scale(1.05);
}

.service-card.featured .service-icon-wrap {
  background: var(--brand-orange-light);
  color: var(--brand-orange);
}

.service-card.featured:hover .service-icon-wrap {
  background: var(--brand-orange);
  color: #FFFFFF;
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
  margin-bottom: 12px;
}

.service-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
}

.service-price-unit {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.service-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.service-features-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.75rem;
}

.service-card.featured .feature-icon {
  background: var(--brand-orange-light);
  color: var(--brand-orange);
}

.feature-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

/* ==========================================================================
   WHY CHOOSE CREATOR NIHAR
   ========================================================================== */
.why-section {
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition-normal);
  position: relative;
}

.why-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 78, 140, 0.2);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.why-card:hover .why-card-icon {
  background: var(--brand-orange);
  color: #FFFFFF;
  border-color: var(--brand-orange);
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
}

.why-card-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(10, 78, 140, 0.15);
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
  margin-bottom: 10px;
}

.why-card-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
  opacity: 0.25;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition-normal);
  text-align: center;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}

.step-num-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.process-step:hover .step-num-badge {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue);
}

.pricing-card.pricing-featured {
  border-color: var(--brand-orange);
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFAF6 100%);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-orange);
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-currency {
  font-size: 1.8rem;
  font-weight: 700;
  vertical-align: top;
  margin-right: 2px;
  color: var(--brand-orange);
}

.pricing-period {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-summary {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-action {
  margin-top: auto;
}

.pricing-note-box {
  background: #FFFFFF;
  border: 1px dashed rgba(10, 78, 140, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.pricing-note-icon {
  color: var(--brand-orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pricing-note-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-note-text strong {
  color: var(--brand-blue-deep);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
}

.about-visual {
  text-align: center;
  position: relative;
}

.about-logo-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  max-width: 380px;
  margin: 0 auto;
}

.about-logo-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.about-tagline-quote {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brand-orange);
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-content p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-highlight-card {
  background: var(--brand-blue-subtle);
  border-left: 3px solid var(--brand-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
}

.about-highlight-card.highlight-orange {
  border-left-color: var(--brand-orange);
  background: var(--brand-orange-light);
}

.about-highlight-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
  margin-bottom: 4px;
}

.about-highlight-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.4;
}

/* ==========================================================================
   OWNER INFORMATION SECTION
   ========================================================================== */
.owner-section {
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
}

.owner-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.owner-card-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 52px;
  align-items: flex-start;
}

/* Photo Column */
.owner-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.owner-photo-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.owner-photo-glow {
  position: absolute;
  inset: -12px;
  background: radial-gradient(circle at 50% 30%, rgba(245, 112, 30, 0.22) 0%, rgba(10, 78, 140, 0.18) 60%, transparent 80%);
  border-radius: calc(var(--radius-lg) + 12px);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.owner-img-wrapper {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid #FFFFFF;
  background: #EBF3FA;
}

.owner-photo-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.owner-photo-frame:hover .owner-photo-img {
  transform: scale(1.02);
}

/* Certified Ethical Hacker Badge */
.owner-cert-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: #FFFFFF;
  border: 1.5px solid var(--brand-blue);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(10, 78, 140, 0.16);
  white-space: nowrap;
}

.owner-cert-badge .cert-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.owner-cert-badge .cert-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.owner-cert-badge .cert-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--brand-blue-deep);
}

.owner-cert-badge .cert-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Location Tag Under Photo */
.owner-location-box {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-blue-subtle);
  border: 1px solid var(--border-subtle);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.owner-location-box svg {
  color: var(--brand-orange);
}

/* Information Column */
.owner-info-col {
  display: flex;
  flex-direction: column;
}

.owner-header-meta {
  margin-bottom: 24px;
}

.owner-role-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: var(--brand-orange-light);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(245, 112, 30, 0.2);
}

.owner-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--brand-blue-deep);
  line-height: 1.18;
  margin-bottom: 8px;
}

.owner-title-p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-blue);
  line-height: 1.4;
}

/* Four Highlights Grid */
.owner-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.highlight-stat-card {
  background: var(--bg-page);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  transition: var(--transition-fast);
}

.highlight-stat-card:hover {
  background: #FFFFFF;
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.highlight-stat-card .stat-top {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--brand-blue-deep);
  line-height: 1.2;
}

.highlight-stat-card .stat-bottom {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 4px;
}

/* Owner Bio */
.owner-bio-block {
  margin-bottom: 28px;
}

.owner-bio-block p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.owner-bio-block p:last-child {
  margin-bottom: 0;
}

/* My Vision Card */
.owner-vision-card {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--brand-blue-subtle) 100%);
  border: 1.5px solid rgba(10, 78, 140, 0.16);
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}

.vision-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-orange);
  margin-bottom: 8px;
}

.vision-badge svg {
  color: var(--brand-orange);
}

.vision-quote {
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.65;
  font-weight: 500;
}

/* Personal Message / Quote Box */
.owner-message-box {
  background: var(--brand-blue-subtle);
  border: 1px dashed rgba(10, 78, 140, 0.22);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.owner-quote-text {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 600;
  color: var(--brand-blue-deep);
  line-height: 1.45;
}

.owner-signature {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.owner-signature .sig-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-orange);
}

.owner-signature .sig-role {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   CONTACT / BOOKING SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-info-card {
  background: linear-gradient(145deg, var(--brand-blue-deep) 0%, var(--brand-blue) 100%);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(245, 112, 30, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-info-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.contact-method-item:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-method-icon.whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.contact-method-icon.email {
  background: var(--brand-orange);
  color: #FFFFFF;
}

.contact-method-meta {
  flex-grow: 1;
}

.contact-method-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
  display: block;
}

.contact-method-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
}

.contact-hours-card {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-hours-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.contact-hours-val {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.booking-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.booking-form-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
  margin-bottom: 8px;
}

.booking-form-sub {
  font-size: 0.94rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-label span.req {
  color: var(--brand-orange);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--bg-page);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: #FFFFFF;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px var(--brand-blue-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.service-pill-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-pill-btn {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  background: var(--bg-page);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-pill-btn:hover {
  border-color: var(--brand-blue);
  background: #FFFFFF;
}

.service-pill-btn.active {
  border-color: var(--brand-orange);
  background: var(--brand-orange-light);
  box-shadow: 0 0 0 3px var(--brand-orange-glow);
}

.service-pill-btn .pill-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-blue-deep);
}

.service-pill-btn .pill-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-orange);
}

.booking-actions {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 28px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--brand-blue-deep);
  color: #FFFFFF;
  padding: 80px 0 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(1.05);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-orange);
  margin-bottom: 14px;
}

.footer-bio {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: var(--brand-orange);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-contact-item a:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

.floating-whatsapp .whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.floating-whatsapp .whatsapp-tooltip {
  position: absolute;
  right: 74px;
  background: var(--brand-blue-deep);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-md);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   MODAL COMPONENT
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 23, 46, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  padding: 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  transform: rotate(90deg);
}

/* Toast alert notification */
.toast-msg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--brand-blue-deep);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-msg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .about-box {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Owner Section on medium screens */
  .owner-card-grid {
    grid-template-columns: 320px 1fr;
    gap: 36px;
  }

  .owner-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .section {
    padding: 70px 0;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 16px 32px rgba(10, 40, 74, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .nav-actions {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-card {
    padding: 30px 20px;
  }

  .contact-info-card {
    padding: 32px 24px;
  }

  .service-pill-group {
    grid-template-columns: 1fr;
  }

  .booking-actions {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  /* Owner Section on tablet & mobile */
  .owner-profile-card {
    padding: 32px 22px;
  }

  .owner-card-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .owner-photo-col {
    order: -1;
  }

  .owner-photo-frame {
    max-width: 290px;
  }

  .owner-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .owner-header-meta {
    text-align: center;
  }

  .owner-signature {
    flex-direction: column;
    gap: 2px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-card-frame {
    padding: 24px 18px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  .owner-highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .highlight-stat-card {
    padding: 12px 8px;
  }

  .highlight-stat-card .stat-top {
    font-size: 1.25rem;
  }

  .owner-cert-badge {
    padding: 6px 14px;
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   FREE CONSULTATION PAGE STYLES
   ========================================================================== */
.nav-link-consultation {
  color: var(--brand-orange) !important;
  font-weight: 700 !important;
}

.nav-btn-consultation {
  border-color: rgba(245, 112, 30, 0.4);
  color: var(--brand-orange);
  background: var(--brand-orange-light);
}

.nav-btn-consultation:hover {
  background: var(--brand-orange);
  color: #FFFFFF;
  border-color: var(--brand-orange);
}

/* Consultation Hero */
.consult-hero {
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 70px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-page) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.consult-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-orange-light);
  border: 1px solid rgba(245, 112, 30, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}

.consult-hero-badge span {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.consult-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.8vw, 3.8rem);
  font-weight: 800;
  color: var(--brand-blue-deep);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.consult-hero-subheading {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 18px;
}

.consult-hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 36px auto;
}

.consult-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Consultation Information Box */
.consult-specs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.consult-spec-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.consult-spec-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}

.consult-spec-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.consult-spec-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--brand-blue-deep);
}

.consult-spec-val.highlight {
  color: var(--brand-orange);
}

.consult-spec-val.pending {
  color: #D97706;
  font-size: 0.98rem;
}

.consult-notice-banner {
  background: #FFFBEB;
  border: 1.5px dashed #F59E0B;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.consult-notice-icon {
  font-size: 1.4rem;
  color: #D97706;
  flex-shrink: 0;
}

.consult-notice-text {
  font-size: 0.94rem;
  color: #92400E;
  line-height: 1.55;
  font-weight: 500;
}

/* What Can We Discuss Cards */
.discuss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.discuss-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.discuss-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-md);
}

.discuss-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.discuss-card:hover .discuss-icon {
  background: var(--brand-orange);
  color: #FFFFFF;
}

.discuss-icon svg {
  width: 26px;
  height: 26px;
}

.discuss-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
  margin-bottom: 12px;
}

.discuss-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* How It Works Steps */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.roadmap-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
}

.roadmap-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}

.roadmap-step-badge {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
  background: var(--brand-orange-light);
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.roadmap-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--brand-blue-deep);
  margin-bottom: 12px;
}

.roadmap-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Consultation Form Section */
.consult-form-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.consult-form-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

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

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

.consult-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0 28px 0;
  padding: 16px 20px;
  background: var(--brand-blue-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.consult-checkbox-wrap input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-orange);
  margin-top: 3px;
  cursor: pointer;
  flex-shrink: 0;
}

.consult-checkbox-label {
  font-size: 0.92rem;
  color: var(--brand-blue-deep);
  line-height: 1.5;
  font-weight: 600;
  cursor: pointer;
}

/* Success Confirmation Panel */
.consult-success-panel {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.consult-success-panel.active {
  display: block;
}

.success-check-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.2);
}

.success-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FEF3C7;
  color: #B45309;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid #FCD34D;
}

.success-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
  margin-bottom: 16px;
}

.success-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 32px auto;
}

.success-details-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 580px;
  margin: 0 auto 36px auto;
  text-align: left;
}

.success-details-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
}

.success-details-row:last-child {
  border-bottom: none;
}

.success-details-row .label {
  color: var(--text-muted);
  font-weight: 500;
}

.success-details-row .val {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-blue-deep);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .consult-specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .discuss-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .consult-specs-grid {
    grid-template-columns: 1fr;
  }

  .discuss-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .consult-form-card {
    padding: 32px 20px;
  }
}
