/* ===================================================
   ORIAN DIGITAL AGENCY - GLOBAL STYLESHEET
   =================================================== */

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

/* --- CSS Variables --- */
:root {
  --white: #ffffff;
  --off-white: #f5f5f7;
  --black: #1d1d1f;
  --mid-gray: #6e6e73;
  --light-gray: #e8e8ed;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --blue: #0071e3;
  --blue-dark: #0051a2;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { font-family: 'Inter', sans-serif; }

/* ===================================================
   CURSOR GLOW
   =================================================== */
#cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.15s ease, top 0.15s ease;
}

/* ===================================================
   ANNOUNCEMENT BAR
   =================================================== */
#announcement-bar {
  background: var(--black);
  color: var(--off-white);
  height: 44px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1001;
  padding: 0 16px;
}

#announcement-bar .bar-left { color: var(--off-white); }
#announcement-bar .bar-center { color: var(--off-white); text-align: center; }
#announcement-bar .bar-close {
  background: none;
  border: none;
  color: var(--mid-gray);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s ease;
  position: absolute;
  right: 16px;
}
#announcement-bar .bar-close:hover { color: var(--off-white); }

/* ===================================================
   NAVBAR
   =================================================== */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  height: 64px;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0 6vw;
}

#navbar.bar-hidden { top: 0; }

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

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-logo .logo-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  margin-left: 3px;
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--black);
  color: white;
  padding: 10px 20px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  transition: color 0.2s ease;
}
#mobile-menu a:hover { color: var(--gold); }
#mobile-menu .menu-close {
  position: absolute;
  top: 20px;
  right: 6vw;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--black);
}

/* ===================================================
   BOOKING MODAL
   =================================================== */
#bookingModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: white;
  border-radius: 24px;
  padding: 48px;
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid-gray);
  line-height: 1;
  transition: color 0.2s ease;
}
.modal-close:hover { color: var(--black); }

.modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.modal-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--mid-gray);
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: white;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.modal-submit {
  background: var(--black);
  color: white;
  width: 100%;
  padding: 16px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  margin-top: 24px;
  transition: all 0.3s ease;
}
.modal-submit:hover { background: var(--gold); color: var(--black); }

/* ===================================================
   FLOATING WHATSAPP BUTTON
   =================================================== */
#wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: waPulse 1.5s ease-in-out infinite alternate;
  transition: transform 0.2s ease;
}
#wa-float:hover { transform: scale(1.1) !important; animation-play-state: paused; }
#wa-float svg { width: 32px; height: 32px; fill: white; }

@keyframes waPulse {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

/* ===================================================
   FOOTER
   =================================================== */
#footer {
  background: var(--black);
  color: white;
  padding: 80px 6vw 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-logo .logo-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  margin-left: 3px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--mid-gray);
  margin-bottom: 12px;
}

.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.6;
}

.footer-col-heading {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a, .footer-col ul li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--off-white);
  transition: color 0.2s ease;
  line-height: 1.4;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--mid-gray);
}

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-in.visible { opacity: 1; }

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.fade-up:nth-child(1), .scale-in:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2), .scale-in:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3), .scale-in:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4), .scale-in:nth-child(4) { transition-delay: 0.3s; }

/* ===================================================
   SECTION LABEL (reusable)
   =================================================== */
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* ===================================================
   PILL BUTTON (reusable)
   =================================================== */
.btn-pill-dark {
  background: var(--black);
  color: white;
  padding: 16px 32px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-pill-dark:hover { background: var(--gold); color: var(--black); transform: scale(1.02); }

.btn-pill-gold {
  background: var(--gold);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 980px;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-pill-gold:hover { filter: brightness(1.1); transform: scale(1.02); }

.btn-pill-outline {
  background: transparent;
  color: var(--black);
  padding: 16px 32px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: 1.5px solid var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-pill-outline:hover { background: var(--black); color: white; }

/* ===================================================
   MARQUEE
   =================================================== */
.marquee-section {
  background: var(--black);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--off-white);
  white-space: nowrap;
  padding: 0 16px;
}
.marquee-dot {
  color: var(--gold);
  font-size: 10px;
  padding: 0 8px;
  vertical-align: middle;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================================================
   STATS SECTION
   =================================================== */
.stats-section {
  background: var(--white);
  padding: 120px 6vw;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.stat-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--light-gray);
}
.stat-divider:nth-child(2) { left: 25%; }
.stat-divider:nth-child(3) { left: 50%; }
.stat-divider:nth-child(4) { left: 75%; }

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.stat-suffix { color: var(--gold); }

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--mid-gray);
  margin-top: 8px;
}

/* ===================================================
   WHY ORIAN SECTION
   =================================================== */
.why-section {
  background: var(--off-white);
  padding: 120px 6vw;
}

.section-header { margin-bottom: 64px; }
.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.0;
}

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

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--light-gray);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ===================================================
   SERVICES LIST SECTION
   =================================================== */
.services-list-section {
  background: var(--white);
  padding: 120px 6vw;
}

.services-list { margin-top: 48px; }

.service-list-item {
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--light-gray);
  padding: 32px 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-left: 0;
}
.service-list-item:hover {
  padding-left: 16px;
  background: var(--off-white);
  padding-right: 16px;
  border-radius: 12px;
}

.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  min-width: 32px;
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  min-width: 240px;
}

.service-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--mid-gray);
  flex: 1;
  max-width: 400px;
}

.service-arrow {
  font-size: 20px;
  color: var(--gold);
  margin-left: auto;
}

/* ===================================================
   HOW WE WORK SECTION
   =================================================== */
.process-section {
  background: var(--black);
  color: white;
  padding: 120px 6vw;
}

.process-section .section-heading { color: white; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 64px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 0;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.step-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.step-day {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 12px;
}

.step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ===================================================
   STICKY SCROLL SECTION
   =================================================== */
.sticky-scroll-section {
  background: var(--white);
  height: 500vh;
  position: relative;
}

.sticky-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.sticky-left {
  width: 40%;
  padding: 120px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.sticky-left .section-heading { font-size: 56px; }

.sticky-right {
  width: 60%;
  position: relative;
}

.feature-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 80px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.feature-panel.active {
  opacity: 1;
  transform: translateX(0);
}

.feature-panel.exit {
  opacity: 0;
  transform: translateX(-40px);
}

.panel-bg-number {
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-size: 200px;
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.panel-icon { font-size: 64px; margin-bottom: 24px; display: block; }

.panel-title {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.panel-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--mid-gray);
  line-height: 1.6;
  max-width: 400px;
}

/* ===================================================
   TESTIMONIALS SECTION
   =================================================== */
.testimonials-section {
  background: var(--off-white);
  padding: 120px 6vw;
  overflow: hidden;
}

.testimonials-section .section-heading { margin-bottom: 64px; }

.testimonials-outer {
  overflow: hidden;
}

.testimonials-outer:hover .testimonial-row { animation-play-state: paused; }

.testimonial-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  width: max-content;
}

.row-left { animation: scrollLeft 35s linear infinite; }
.row-right { animation: scrollRight 35s linear infinite; }

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  min-width: 340px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--light-gray);
  flex-shrink: 0;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.author-role {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--mid-gray);
}

/* ===================================================
   CTA BANNER SECTION
   =================================================== */
.cta-banner {
  background: var(--black);
  padding: 120px 6vw;
  text-align: center;
}

.cta-heading {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.cta-heading .gold { color: var(--gold); }

.cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================================
   PAGE HERO (dark - services/portfolio/pricing/contact)
   =================================================== */
.page-hero {
  background: var(--black);
  padding: 180px 6vw 120px;
  color: white;
}

.page-hero .section-heading { color: white; line-height: 1.0; }

.page-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin-top: 24px;
  line-height: 1.6;
}

/* ===================================================
   SERVICES PAGE TABS
   =================================================== */
.tabs-section { background: white; padding: 80px 6vw; }

.tabs-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 64px;
}

.tab-btn {
  background: white;
  color: var(--black);
  border: 1.5px solid var(--light-gray);
  padding: 10px 24px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-btn:hover { background: var(--off-white); }
.tab-btn.active { background: var(--black); color: white; border-color: var(--black); }

.tab-content { display: none; }
.tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  animation: tabFadeIn 0.4s ease forwards;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-service-number {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.tab-title {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.1;
}

.tab-price {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
}

.tab-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.included-heading {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 16px;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--black);
}

.check-gold {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.tab-cta {
  background: var(--black);
  color: white;
  padding: 16px 32px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.tab-cta:hover { background: var(--gold); color: var(--black); }

.tab-visual {
  border-radius: 24px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tab-visual .visual-icon { font-size: 100px; position: relative; z-index: 1; }

.tab-visual .visual-watermark {
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-size: 200px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

/* ===================================================
   PORTFOLIO PAGE
   =================================================== */
.filter-section { background: white; padding: 60px 6vw 0; }

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  background: white;
  color: var(--black);
  border: 1.5px solid var(--light-gray);
  padding: 10px 24px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover { background: var(--off-white); }
.filter-btn.active { background: var(--black); color: white; border-color: var(--black); }

.portfolio-grid {
  padding: 0 6vw 120px;
  background: white;
  columns: 3;
  column-gap: 24px;
}

.project-card {
  break-inside: avoid;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  background: white;
  border: 1px solid var(--light-gray);
  display: inline-block;
  width: 100%;
}
.project-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.project-card.hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.project-card.wide { column-span: all; }

.card-thumb {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.card-thumb-wide { height: 400px; }

.card-thumb-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card:hover .card-thumb-inner { transform: scale(1.05); }

.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  border-radius: 980px;
  padding: 6px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.card-info {
  background: white;
  padding: 28px 32px;
}

.card-project-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--mid-gray);
  margin-bottom: 16px;
}

.card-view {
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}
.card-view:hover { color: var(--black); }

/* ===================================================
   PRICING PAGE
   =================================================== */
.pricing-cards-section { background: white; padding: 120px 6vw; }

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  border: 1px solid var(--light-gray);
  border-radius: 28px;
  padding: 48px 40px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  background: var(--black);
  color: white;
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 980px;
  white-space: nowrap;
}

.plan-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  margin-bottom: 16px;
}
.pricing-card.featured .plan-label { color: rgba(255,255,255,0.5); }

.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-card.featured .plan-price { color: white; }

.plan-period {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--mid-gray);
  margin-bottom: 24px;
}
.pricing-card.featured .plan-period { color: rgba(255,255,255,0.4); }

.plan-divider {
  height: 1px;
  background: var(--light-gray);
  margin: 28px 0;
}
.pricing-card.featured .plan-divider { background: rgba(255,255,255,0.1); }

.plan-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--mid-gray);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.6); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--black);
}
.pricing-card.featured .plan-feature { color: rgba(255,255,255,0.85); }

.plan-btn {
  background: var(--off-white);
  color: var(--black);
  width: 100%;
  padding: 16px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
  text-decoration: none;
}
.plan-btn:hover { background: var(--black); color: white; }

.plan-btn.gold-btn {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}
.plan-btn.gold-btn:hover { filter: brightness(1.1); }

.intl-section {
  background: var(--off-white);
  padding: 80px;
  border-radius: 24px;
  margin: 0 6vw 80px;
}

.intl-heading {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}

.intl-text {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--mid-gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Calculator */
.calculator-section { background: white; padding: 120px 6vw; }

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
  align-items: start;
}

.calc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  transition: background 0.2s ease;
  border-radius: 8px;
}
.calc-item.checked { background: rgba(201,168,76,0.05); padding-left: 8px; padding-right: 8px; }

.calc-label-wrap { display: flex; align-items: center; gap: 12px; }

.calc-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid var(--light-gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.calc-item.checked .calc-checkbox { background: var(--gold); border-color: var(--gold); }
.calc-checkmark { display: none; color: white; font-size: 14px; font-weight: 700; }
.calc-item.checked .calc-checkmark { display: block; }

.calc-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--black);
}

.calc-price-tag {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--gold);
  font-weight: 500;
}

.calc-summary {
  position: sticky;
  top: 120px;
  background: var(--off-white);
  border-radius: 24px;
  padding: 40px;
}

.calc-summary-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.calc-total {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
}

.calc-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  min-height: 40px;
}

.calc-selected-item {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--mid-gray);
}

.calc-divider { height: 1px; background: var(--light-gray); margin: 24px 0; }

.calc-send-btn {
  background: var(--gold);
  color: var(--black);
  width: 100%;
  padding: 16px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.calc-send-btn:hover { filter: brightness(1.1); }

/* FAQ */
.faq-section { background: white; padding: 120px 6vw; }

.faq-list { margin-top: 64px; }

.faq-item {
  border-bottom: 1px solid var(--light-gray);
  padding: 28px 0;
  cursor: pointer;
}

.faq-question {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  font-size: 22px;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 20px;
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-main { padding: 120px 6vw; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-heading {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}

.contact-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--mid-gray);
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 40px;
}

.contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  margin-bottom: 2px;
}

.contact-item-value {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.wa-big-btn {
  background: #25d366;
  color: white;
  padding: 18px 32px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: filter 0.2s ease;
  text-decoration: none;
  margin-bottom: 40px;
}
.wa-big-btn:hover { filter: brightness(1.1); }

.payment-heading, .timezone-heading {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.payment-methods, .timezone-items {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.8;
}

/* Multi-step form */
.form-container {
  background: var(--off-white);
  border-radius: 28px;
  padding: 48px;
}

.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}

.progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  transition: all 0.3s ease;
}
.progress-dot.active { background: var(--gold); transform: scale(1.3); }
.progress-dot.done { background: var(--black); }

.form-step { display: none; }
.form-step.active { display: block; }

.step-heading {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
}

.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.option-btn {
  background: white;
  border: 1.5px solid var(--light-gray);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s ease;
}
.option-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.option-btn.selected { border-color: var(--gold); background: rgba(201,168,76,0.05); }

.budget-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.step-field { margin-bottom: 16px; }
.step-field input, .step-field textarea {
  width: 100%;
  background: white;
  border: 1.5px solid var(--light-gray);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.step-field input:focus, .step-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.step-field textarea { resize: vertical; min-height: 100px; }

.step-buttons { display: flex; gap: 12px; }

.step-back {
  background: white;
  color: var(--black);
  border: 1.5px solid var(--light-gray);
  padding: 16px 24px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.step-back:hover { border-color: var(--black); }

.step-next {
  flex: 1;
  background: var(--black);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.step-next:hover { background: var(--gold); color: var(--black); }
.step-next:disabled { background: var(--light-gray); color: var(--mid-gray); cursor: not-allowed; }

.step-submit {
  flex: 1;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px;
  border-radius: 980px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.step-submit:hover { filter: brightness(1.1); }

.thankyou-screen {
  text-align: center;
  padding: 40px 0;
}

.thankyou-check {
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}

.thankyou-title {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}

.thankyou-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--mid-gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

.thankyou-btns { display: flex; flex-direction: column; gap: 12px; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-row { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .section-heading { font-size: 40px !important; }
  .cta-heading { font-size: 40px !important; }

  .hero-headline { font-size: 52px !important; }

  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 48px; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .tab-content.active { grid-template-columns: 1fr; }
  .portfolio-grid { columns: 1; }
  .project-card.wide { column-span: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-name { min-width: auto; }
  .service-desc { display: none; }
  .announcement-bar .bar-left { display: none; }
  .sticky-left { display: none; }
  .sticky-right { width: 100%; }
  .feature-panel { padding: 40px 24px; }
  .panel-title { font-size: 28px; }
  .tabs-section { padding: 60px 24px; }
  .contact-main { padding: 80px 24px; }
  .calculator-section { padding: 80px 24px; }
  .faq-section { padding: 80px 24px; }
  .pricing-cards-section { padding: 80px 24px; }
  .pricing-row { max-width: 100%; }
  .intl-section { margin: 0 24px 48px; padding: 40px; }
  .service-options { grid-template-columns: 1fr; }
  .form-container { padding: 32px 24px; }
  .modal-box { padding: 32px 24px; }
  .calc-summary { position: static; }
  #announcement-bar { font-size: 12px; gap: 12px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .nav-logo { font-size: 20px; }
  .hero-headline { font-size: 44px !important; letter-spacing: -0.03em !important; }
  .stat-number { font-size: 40px; }
  .testimonial-card { min-width: 280px; padding: 24px; }
  .tab-title { font-size: 32px; }
}
