/* ===========================
   FRAME2FRAME — GLOBAL STYLES
   Light Professional Theme
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg-primary:    #ffffff;
  --bg-secondary:  #f6f7f9;
  --bg-card:       #ffffff;
  --bg-hover:      #f0f2f5;
  --accent:        #cc1f1f;
  --accent-light:  #e53030;
  --accent-glow:   rgba(204, 31, 31, 0.10);
  --gold:          #b8860b;
  --text-primary:  #111827;
  --text-secondary:#4b5563;
  --text-muted:    #9ca3af;
  --border:        rgba(0,0,0,0.09);
  --border-accent: rgba(204,31,31,0.30);
  --font-display:  'Syne', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --radius:        6px;
  --radius-lg:     14px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card:   0 2px 16px rgba(0,0,0,0.07);
  --shadow-glow:   0 0 28px rgba(204,31,31,0.12);
  --shadow-nav:    0 2px 20px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.display-xl { font-size: clamp(1.9rem, 4vw, 3.4rem); font-weight: 800; }
.display-lg { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 800; }
.display-md { font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 700; }
.display-sm { font-size: clamp(1.15rem, 1.8vw, 1.55rem); font-weight: 700; }
.text-accent { color: var(--accent); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-secondary); }

/* Layout */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.section    { padding: clamp(3.5rem, 7vw, 7rem) 0; }
.section-sm { padding: clamp(2rem, 4vw, 4rem) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Section Label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-nav);
  transition: var(--transition);
}
.navbar.scrolled { padding: 0.55rem 0; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.6rem; margin-left: 0.3rem; opacity: 0.5; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.6rem;
  min-width: 230px;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
  display: block; padding: 0.5rem 0.85rem;
  font-size: 0.83rem; color: var(--text-secondary);
  border-radius: var(--radius); transition: var(--transition);
}
.dropdown-menu a:hover { color: var(--accent); background: var(--accent-glow); }

.nav-cta { display: flex; align-items: center; gap: 0.65rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 700;
  border-radius: var(--radius); transition: var(--transition);
  white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 2px 10px rgba(204,31,31,0.25); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,31,31,0.35); }
.btn-outline { border: 1.5px solid var(--border); color: var(--text-primary); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.btn-ghost { color: var(--text-secondary); padding: 0.7rem 1rem; }
.btn-ghost:hover { color: var(--text-primary); }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 0.95rem; }
.btn-sm { padding: 0.48rem 1.1rem; font-size: 0.79rem; }
.btn-white { background: #fff; color: var(--accent); font-weight: 700; }
.btn-white:hover { background: #f5f5f5; transform: translateY(-2px); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 130px;
  background: linear-gradient(140deg, #ffffff 0%, #fdf3f3 55%, #fff8f8 100%);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(204,31,31,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,31,31,0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 65% 50%, black 0%, transparent 100%);
}
.hero-glow {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(204,31,31,0.10) 0%, transparent 70%);
  top: 50%; right: 5%; transform: translateY(-50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(204,31,31,0.08);
  border: 1px solid rgba(204,31,31,0.20);
  padding: 0.38rem 1rem; border-radius: 100px;
  font-size: 0.79rem; font-weight: 600; color: var(--accent);
  margin-bottom: 1.6rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.hero-title { margin-bottom: 1.2rem; }
.hero-title em { font-style: normal; color: var(--accent); }
.hero-desc {
  font-size: clamp(0.93rem, 1.3vw, 1.08rem);
  color: var(--text-secondary);
  max-width: 500px; margin-bottom: 2.1rem; line-height: 1.78;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; align-items: center; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.stat-number span { color: var(--accent); }
.stat-label { font-size: 0.77rem; color: var(--text-muted); margin-top: 0.2rem; letter-spacing: 0.04em; }

/* Marquee */
.marquee-wrap { background: var(--accent); padding: 0.8rem 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee-scroll 32s linear infinite; width: max-content; }
.marquee-item {
  display: flex; align-items: center; gap: 1.5rem; padding: 0 2rem;
  font-family: var(--font-display); font-size: 0.79rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #fff; white-space: nowrap;
}
.marquee-item::after { content: '✦'; color: rgba(255,255,255,0.4); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.1rem;
  position: relative; transition: var(--transition); cursor: pointer; overflow: hidden;
}
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.service-icon { font-size: 1.9rem; margin-bottom: 1rem; display: block; transition: var(--transition); }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.55rem; }
.service-card p  { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.7; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.79rem; font-weight: 700; color: var(--accent);
  margin-top: 1rem; opacity: 0; transform: translateY(4px); transition: var(--transition);
}
.service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }

/* Cards */
.card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition); box-shadow: var(--shadow-card);
}
.card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-glow); transform: translateY(-3px); }

/* Process Steps */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 3.5rem; left: 12%; right: 12%;
  height: 1px; background: var(--border);
}
.process-step { padding: 0 1.25rem; text-align: center; position: relative; }
.step-num {
  width: 54px; height: 54px; border: 2px solid var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: var(--accent); background: var(--bg-primary); position: relative; z-index: 1;
}
.process-step h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.4rem; }
.process-step p  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }

/* Testimonials */
.testimonial-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.1rem; box-shadow: var(--shadow-card); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.75rem;
  font-family: Georgia, serif; font-size: 5rem; color: var(--accent); opacity: 0.09; line-height: 1;
}
.testimonial-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.3rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-glow); border: 2px solid var(--border-accent);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: var(--accent);
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.77rem; color: var(--text-muted); }
.stars { color: #f59e0b; font-size: 0.8rem; margin-bottom: 0.5rem; }

/* CTA Section */
.cta-section { background: var(--accent); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-section .container { position: relative; z-index: 2; }

/* Footer */
.footer {
  background: #111827; border-top: 3px solid var(--accent);
  padding: 5rem 0 2rem; color: #e5e7eb;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3.5rem; margin-bottom: 3.5rem; }
.footer-brand p { font-size: 0.875rem; color: #9ca3af; line-height: 1.75; margin: 1.2rem 0 1.5rem; max-width: 280px; }
.footer-logo-img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.footer-col h4 {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #6b7280; margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-size: 0.875rem; color: #9ca3af; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.9rem; }
.footer-contact-item .icon {
  width: 30px; height: 30px; background: rgba(204,31,31,0.15);
  border: 1px solid rgba(204,31,31,0.3); border-radius: var(--radius);
  display: grid; place-items: center; font-size: 0.8rem; flex-shrink: 0; margin-top: 0.1rem;
}
.footer-contact-item p { font-size: 0.82rem; color: #9ca3af; line-height: 1.5; }
.footer-contact-item strong { display: block; font-size: 0.7rem; color: #6b7280; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem; }
.social-links { display: flex; gap: 0.55rem; margin-top: 1.4rem; }
.social-link {
  width: 34px; height: 34px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius);
  display: grid; place-items: center; font-size: 0.95rem; transition: var(--transition);
}
.social-link:hover { background: rgba(204,31,31,0.20); border-color: rgba(204,31,31,0.40); transform: translateY(-2px); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; color: #6b7280; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: #6b7280; transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* Page Hero */
.page-hero {
  padding: 9rem 0 4.5rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fdf3f3 55%, #fff 100%);
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--border); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 0.45rem; font-size: 0.79rem; color: var(--text-muted); margin-bottom: 1.3rem; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.4; }

/* Feature Items */
.service-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.feature-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 1.1rem; background: var(--bg-secondary);
  border: 1.5px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition);
}
.feature-item:hover { border-color: var(--border-accent); background: #fff; }
.feature-check {
  width: 22px; height: 22px; background: var(--accent-glow);
  border: 1.5px solid var(--border-accent); border-radius: 50%;
  display: grid; place-items: center; font-size: 0.67rem; color: var(--accent); flex-shrink: 0; margin-top: 0.1rem;
}
.feature-item h5 { font-size: 0.87rem; font-weight: 600; margin-bottom: 0.2rem; }
.feature-item p  { font-size: 0.77rem; color: var(--text-secondary); }

/* Blog Cards */
.blog-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-card);
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--border-accent); box-shadow: var(--shadow-glow); }
.blog-card-img { aspect-ratio: 16/9; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 1.6rem; }
.blog-tag {
  display: inline-block; padding: 0.22rem 0.7rem;
  background: var(--accent-glow); border: 1px solid var(--border-accent);
  border-radius: 100px; font-size: 0.67rem; font-weight: 700;
  color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.6rem;
}
.blog-card h3 { font-size: 1.03rem; margin-bottom: 0.6rem; line-height: 1.45; }
.blog-card p  { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.65; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; font-size: 0.75rem; color: var(--text-muted); }

/* Contact Form */
.contact-form { display: grid; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.79rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 0.78rem 1rem;
  color: var(--text-primary); font-size: 0.875rem; transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-glow); }
.form-group textarea { resize: vertical; min-height: 115px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

/* Accordion */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 0; font-family: var(--font-display); font-size: 0.97rem; font-weight: 600;
  color: var(--text-primary); text-align: left; transition: var(--transition);
}
.accordion-btn:hover { color: var(--accent); }
.accordion-icon {
  width: 24px; height: 24px; border: 1.5px solid var(--border);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 0.7rem; flex-shrink: 0; transition: var(--transition); color: var(--text-secondary);
}
.accordion-btn.open .accordion-icon { background: var(--accent-glow); border-color: var(--border-accent); color: var(--accent); transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 0 1.35rem; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; }
.accordion-body.open { display: block; }

/* Divider / Tags */
.divider { height: 1px; background: var(--border); }
.tag-pill {
  display: inline-flex; align-items: center;
  padding: 0.28rem 0.8rem; background: var(--bg-secondary);
  border: 1.5px solid var(--border); border-radius: 100px;
  font-size: 0.75rem; color: var(--text-secondary); font-weight: 500;
}

/* Mobile Menu */
/* ── Mobile Menu — Professional Slide-in Drawer ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 78vw;
  max-width: 320px;
  height: 100vh;
  z-index: 999;
  background: #fff;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
/* Backdrop overlay */
.mobile-menu::before {
  content: '';
  position: fixed;
  inset: 0;
  right: 78vw;
  max-right: calc(100vw - 320px);
  background: rgba(0,0,0,0.45);
  z-index: -1;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: #000;
}
.mobile-menu-logo { height: 36px; width: auto; }
.mobile-menu-close {
  position: static;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.22); }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0.5rem 0;
  flex: 1;
}
.mobile-menu a {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary) !important;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.mobile-menu a:hover {
  color: var(--accent) !important;
  background: var(--accent-glow);
}
.mobile-menu a.contact-link {
  color: #fff !important;
  background: var(--accent);
  margin: 1.25rem;
  width: calc(100% - 2.5rem);
  border-radius: var(--radius);
  border: none;
  justify-content: center;
}
.mobile-menu a.contact-link:hover { background: var(--accent-light); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: var(--transition);
  animation: float-bob 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
@keyframes float-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* Animations */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.65s ease; }
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.10s; } .stagger-2 { transition-delay: 0.20s; }
.stagger-3 { transition-delay: 0.30s; } .stagger-4 { transition-delay: 0.40s; }
.stagger-5 { transition-delay: 0.50s; }

/* Utilities */
.flex { display: flex; } .items-center { align-items: center; }
.justify-between { justify-content: space-between; } .justify-center { justify-content: center; }
.text-center { text-align: center; }
.gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; } .gap-4 { gap: 2rem; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-6 { margin-bottom: 3rem; }
.w-full { width: 100%; }

/* ── Process Step Icons ── */
.step-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.4rem;
}
.step-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  border: 2px solid #fff;
}
.process-steps::before { display: none; }

/* ── Industry Cards ── */
.ind-card { cursor: pointer; }
.ind-img { margin: 0 auto 1rem; display: flex; justify-content: center; }
.ind-label { font-size: 0.95rem; font-weight: 700; }

/* ── Hero two-column responsive ── */
@media (max-width: 900px) {
  .hero > .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .hero > .container > div > div:last-child { display: none; }
}
@media (max-width: 768px) {
  .cta-section .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .cta-section .container > div > div:last-child { display: none; }
}

/* ── Hero Two-Column ── */
.hero { padding-top: 130px !important; background: linear-gradient(140deg,#ffffff 0%,#fdf3f3 55%,#fff8f8 100%) !important; }
.hero .container { position: relative; z-index: 2; }
.hero-illus { position: relative; }
.hero-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.78rem; font-weight: 700; color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  white-space: nowrap;
}
.hero-chip-1 { bottom: 12%; left: -8%; }
.hero-chip-2 { top: 12%; right: -6%; }
.hero-chip-3 { bottom: 28%; right: -8%; }
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr !important; }
  .hero-illus { display: flex !important; justify-content: center; margin-top: 2rem; }
  .hero { min-height: auto !important; }
}

/* ── Service Card Images ── */
.svc-img-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; margin: -2.1rem -2.1rem 1.25rem -2.1rem; width: calc(100% + 4.2rem); }
.svc-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.service-card:hover .svc-img { transform: scale(1.06); }

/* ── Industry Photo Cards ── */
.ind-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.5s ease; }
.ind-card:hover .ind-photo { transform: scale(1.06); }
.ind-img-wrap { overflow: hidden; }
.ind-card { padding: 0 !important; }

/* ── Remove step badge (01-04) ── */
.step-badge { display: none !important; }

/* ── Remove blank space below footer ── */
html, body { margin: 0; padding: 0; }
footer { margin-bottom: 0 !important; }
body > *:last-child { margin-bottom: 0 !important; }

/* ── Kill blank space below footer ── */
html, body { margin: 0; padding: 0; overflow-x: hidden; }
footer { display: block !important; margin: 0 !important; }
body > script { display: none; }

/* ════════════════════════════════
   TESTIMONIAL AUTO-SCROLL
   ════════════════════════════════ */
.tscroll-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.tscroll-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: tscroll-left 70s linear infinite;
  padding: 0.5rem 0 1rem;
}
.tscroll-track:hover {
  animation-play-state: paused;
}
@keyframes tscroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Card */
.tcard {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 1.75rem;
  width: 320px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.tcard:hover {
  box-shadow: 0 8px 32px rgba(204,31,31,0.13);
  border-color: rgba(204,31,31,0.28);
  transform: translateY(-3px);
}
.tcard::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}

.tcard .stars {
  color: #f59e0b;
  font-size: 0.82rem;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
}
.tcard-text {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1rem;
}
.tcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(204,31,31,0.10);
  border: 2px solid rgba(204,31,31,0.22);
  display: grid;
  place-items: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #cc1f1f;
  flex-shrink: 0;
}
.tcard-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: #111827;
  line-height: 1.3;
}
.tcard-role {
  font-size: 0.73rem;
  color: #9ca3af;
  margin-top: 0.15rem;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 600px) {
  .tcard { width: 268px; padding: 1.4rem; }
  .tscroll-track { animation-duration: 45s; gap: 1rem; }
}
