/* ============================================
   HAZA INFOTECH — MAIN STYLESHEET
   Colors: Navy #1B2A4A | Gold #C9A84C | White #FFFFFF
   ============================================ */

:root {
  --navy: #1B2A4A;
  --navy-light: #243660;
  --gold: #C9A84C;
  --gold-light: #E2C06A;
  --silver: #A8B2BE;
  --white: #FFFFFF;
  --bg-light: #F5F7FA;
  --bg-section: #EEF1F6;
  --text-dark: #1B2A4A;
  --text-mid: #4A5568;
  --text-light: #6B7280;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(27,42,74,0.10);
  --shadow-lg: 0 12px 48px rgba(27,42,74,0.16);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ============ LOADER ============ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo img {
  width: 120px;
  animation: logoPulse 1s ease infinite alternate;
}
@keyframes logoPulse {
  from { transform: scale(0.95); opacity: 0.7; }
  to { transform: scale(1.05); opacity: 1; }
}

.loader-text {
  display: flex;
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--navy);
}
.loader-text span {
  opacity: 0;
  animation: letterFade 0.1s ease forwards;
}
.loader-text span:nth-child(1)  { animation-delay: 0.1s; }
.loader-text span:nth-child(2)  { animation-delay: 0.2s; }
.loader-text span:nth-child(3)  { animation-delay: 0.3s; }
.loader-text span:nth-child(4)  { animation-delay: 0.4s; }
.loader-text span:nth-child(5)  { animation-delay: 0.5s; }
.loader-text span:nth-child(6)  { animation-delay: 0.6s; }
.loader-text span:nth-child(7)  { animation-delay: 0.7s; }
.loader-text span:nth-child(8)  { animation-delay: 0.8s; }
.loader-text span:nth-child(9)  { animation-delay: 0.9s; }
.loader-text span:nth-child(10) { animation-delay: 1.0s; }
.loader-text span:nth-child(11) { animation-delay: 1.1s; }
.loader-text span:nth-child(12) { animation-delay: 1.2s; }
.loader-text span:nth-child(13) { animation-delay: 1.3s; }

@keyframes letterFade {
  to { opacity: 1; }
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--border);
  margin-top: 28px;
  border-radius: 4px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 4px;
  animation: barFill 1.8s ease forwards;
}
@keyframes barFill {
  to { width: 100%; }
}

/* ============ NAVBAR ============ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu a {
  padding: 10px 0;
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .mob-cta {
  margin-top: 12px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  padding: 12px;
  border: none;
}
.mobile-menu.open { display: flex; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 32px 60px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.s1 {
  width: 600px; height: 600px;
  background: var(--navy);
  top: -100px; right: -150px;
}
.s2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: 0; left: -100px;
  opacity: 0.08;
}
.s3 {
  width: 300px; height: 300px;
  background: var(--silver);
  top: 40%; left: 40%;
  opacity: 0.06;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 24px;
}
.gold-text { color: var(--gold); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  border: 2px solid var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid var(--navy);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.5s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============ SECTIONS SHARED ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-tag.center { text-align: center; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.center { text-align: center; }
.section-title em { color: var(--gold); font-style: normal; }

.section-desc {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 640px;
}
.section-desc.center { text-align: center; margin: 0 auto 48px; }

/* ============ ABOUT STRIP ============ */
.about-strip { background: var(--bg-light); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.col-text .section-desc { max-width: 100%; }
.col-text .btn-primary { margin-top: 8px; }

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ac {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition);
}
.ac:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ac.gold {
  background: var(--navy);
}
.ac.gold .ac-num, .ac.gold .ac-label { color: var(--gold); }
.ac-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.ac-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ SERVICES ============ */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.sc-icon {
  width: 48px; height: 48px;
  background: rgba(27,42,74,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--navy);
  transition: var(--transition);
}
.service-card:hover .sc-icon {
  background: var(--navy);
  color: var(--gold);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.sc-arrow {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}
.service-card:hover .sc-arrow { transform: translateX(6px); }

/* ============ WHY US ============ */
.why-section { background: var(--bg-section); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(27,42,74,0.1);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============ PROCESS ============ */
.process-section { background: var(--navy); }
.process-section .section-tag { color: var(--gold); }
.process-section .section-title { color: var(--white); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.ps {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 20px;
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  transition: var(--transition);
  text-align: center;
}
.ps:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.ps-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.ps h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.ps p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.ps-arrow {
  color: var(--gold);
  opacity: 0.5;
  display: flex;
  align-items: center;
  margin-top: 40px;
  font-size: 1rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--bg-light); }

.testimonials-slider {
  overflow: hidden;
  position: relative;
  margin-top: 48px;
}
.testi-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testi-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--border);
  text-align: center;
}
.testi-stars {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.testi-card p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 28px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.testi-avatar {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.testi-author div:last-child {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.testi-author strong { color: var(--navy); font-size: 0.95rem; }
.testi-author span { color: var(--text-light); font-size: 0.82rem; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--silver);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============ CTA STRIP ============ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
}
.cta-inner {
  text-align: center;
}
.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 32px;
}
.cta-inner .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.cta-inner .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.1);
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-icons a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

.contact-list { gap: 14px !important; }
.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  line-height: 1.5;
}
.contact-list i {
  color: var(--gold);
  margin-top: 2px;
  min-width: 14px;
}
.contact-list a {
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none;
}
.contact-list a:hover { color: var(--gold) !important; }

.footer-bottom {
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============ FLOAT BUTTONS ============ */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.call { background: var(--navy); }
.float-btn.whatsapp { background: #25D366; }

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.4s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }
.fade-up:nth-child(5) { animation-delay: 0.7s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 160px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 120px 24px 60px; }
  .hero-stats { gap: 24px; }
  .process-steps { gap: 4px; }
  .ps { min-width: 100%; max-width: 100%; }
  .ps-arrow { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .testi-card { padding: 32px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ ABOUT PAGE ============ */
.team-section { background: var(--bg-light); }
.values-section { background: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.value-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============ SERVICES PAGE ============ */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.sd-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  background: var(--white);
  transition: var(--transition);
}
.sd-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.sd-card .sc-icon { margin-bottom: 20px; }
.sd-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.sd-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.sd-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sd-tag {
  background: rgba(27,42,74,0.06);
  color: var(--navy);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 500;
}

/* ============ PORTFOLIO PAGE ============ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pc-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.pc-thumb-1 { background: linear-gradient(135deg, var(--navy) 0%, #2d4a80 100%); }
.pc-thumb-2 { background: linear-gradient(135deg, #1a3a2a 0%, #2d6a4a 100%); }
.pc-thumb-3 { background: linear-gradient(135deg, #3a1a2a 0%, #6a2d4a 100%); }
.pc-thumb-4 { background: linear-gradient(135deg, #3a2a1a 0%, #6a4a2d 100%); }
.pc-thumb-5 { background: linear-gradient(135deg, #1a2a3a 0%, #2d4a6a 100%); }
.pc-thumb-6 { background: linear-gradient(135deg, #2a1a3a 0%, #4a2d6a 100%); }

.pc-body { padding: 24px; }
.pc-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.pc-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.pc-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============ CONTACT PAGE ============ */
.contact-section { background: var(--bg-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.cd-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cd-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cd-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2px;
}
.cd-text span, .cd-text a {
  font-size: 0.875rem;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.5;
  display: block;
}
.cd-text a:hover { color: var(--gold); }

.connect-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.connect-btn.linkedin { background: #0A66C2; color: var(--white); }
.connect-btn.linkedin:hover { background: #0850a0; transform: translateY(-2px); }
.connect-btn.wa { background: #25D366; color: var(--white); }
.connect-btn.wa:hover { background: #1db958; transform: translateY(-2px); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success .success-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.form-success h4 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-success p { color: var(--text-mid); }

/* map section */
.map-section { background: var(--white); padding: 0; }
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}
