/* Tudolog - High Fidelity Redesign System */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-deep: #051324;
  --bg-dark-card: #0a2540;
  --bg-light: #f8fafc;
  --bg-light-card: #ffffff;
  
  --brand-orange: #f97316;
  --brand-orange-hover: #ea580c;
  --brand-orange-soft: #ffedd5;
  --brand-glow: rgba(249, 115, 22, 0.35);
  
  --brand-blue: #0284c7;
  --brand-blue-glow: rgba(2, 132, 199, 0.35);
  
  --text-white: #ffffff;
  --text-slate: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  --text-dark-muted: #475569;
  
  --border-color: rgba(255, 255, 255, 0.1);
  --border-light: #e2e8f0;
  
  --font-display: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Atmosphere Glows */
.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-glow-1 {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, rgba(5, 19, 36, 0) 70%);
}

.ambient-glow-2 {
  position: absolute;
  bottom: -300px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.1) 0%, rgba(5, 19, 36, 0) 70%);
}

/* Layout Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* Typography & Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.orange-text {
  color: var(--brand-orange);
}

.dark-text {
  color: var(--text-dark) !important;
}

.dark-desc {
  color: var(--text-dark-muted) !important;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 700;
}

.muted-link {
  color: var(--text-muted) !important;
  font-size: 12px;
  text-decoration: underline;
}

/* Swash SVG Accent for Hero Title */
.orange-swash-wrap {
  position: relative;
  display: inline-block;
  color: var(--brand-orange);
  padding-bottom: 4px;
}

.orange-swash-svg {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 18px;
  pointer-events: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(5, 19, 36, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(5, 19, 36, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-white);
}

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

.logo-brand-img {
  height: 44px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-brand-img:hover {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 4px 12px rgba(249, 115, 22, 0.3));
}

.logo-img-wrapper {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(43, 91, 175, 0.4));
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.blue-text {
  color: #3b82f6;
}

.logo-tagline {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--text-slate);
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-slate);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--brand-orange);
}

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

/* Lang Switcher */
.lang-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 3px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active, .lang-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--text-white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 10px 30px var(--brand-glow);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 38px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 170px;
  padding-bottom: 110px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(180deg, rgba(5, 19, 36, 0.72) 0%, rgba(5, 19, 36, 0.95) 100%), url('images/last-banner-tudolog-1.webp');
  background-size: cover;
  background-position: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.tag-arrows {
  font-size: 14px;
  font-weight: 900;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-slate);
  margin-bottom: 40px;
  max-width: 620px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* Glassmorphism Quick Contact Card */
.hero-contact-card {
  background: rgba(10, 37, 64, 0.55);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), rgba(2, 132, 199, 0.8));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}

.contact-val {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
}

.contact-val.sub {
  font-size: 15px;
  color: var(--text-slate);
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.scroll-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, var(--brand-orange), transparent);
  animation: pulseLine 2s infinite;
}

@keyframes pulseLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Marquee Ticker */
.marquee-ticker-container {
  background: #020914;
  border-y: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-slate);
  text-transform: uppercase;
}

.marquee-star {
  color: var(--brand-orange);
  font-size: 12px;
}

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

/* Statistics Banner Section */
.stats-banner-section {
  background: #040d1a;
  padding: 64px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-header-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--brand-orange);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}

.stat-card {
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-unit {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
}

.stat-desc {
  color: var(--text-slate);
  font-size: 15px;
  line-height: 1.5;
}

/* Section Headings */
.section-head {
  margin-bottom: 56px;
}

.section-subtag {
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  display: block;
}

.section-main-title {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-slate);
  max-width: 680px;
}

/* Services Section (Light Background & 3 Cards) */
.services-section {
  background-color: var(--bg-light);
  padding: 110px 0;
  color: var(--text-dark);
}

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

.service-model-card {
  background: var(--bg-light-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
}

.service-model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card-img.monochrome {
  filter: grayscale(100%) contrast(1.1);
}

.service-model-card:hover .card-img {
  transform: scale(1.05);
}

.card-icon-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card-icon-badge.blue-badge {
  background: var(--brand-blue);
}

.card-icon-badge.orange-badge {
  background: var(--brand-orange);
}

.card-arrow-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--text-dark);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.card-arrow-btn:hover {
  background: var(--brand-orange);
  color: #fff;
}

.card-content-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.card-p {
  color: var(--text-dark-muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.card-checklist {
  list-style: none;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.card-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card-checklist li:last-child {
  margin-bottom: 0;
}

.orange-check {
  color: var(--brand-orange);
  font-size: 16px;
}

/* Bento Grid Section */
.bento-section {
  background-color: #f1f5f9;
  padding: 110px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.bento-card {
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
}

.bento-card:hover {
  transform: translateY(-6px);
}

.bento-dark {
  background: linear-gradient(135deg, #091e36 0%, #030d19 100%);
  color: #fff;
  box-shadow: 0 15px 40px rgba(5, 19, 36, 0.2);
}

.bento-light {
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.bento-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.bento-icon-badge.light-badge {
  background: rgba(249, 115, 22, 0.1);
  color: var(--brand-orange);
}

.bento-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.bento-p {
  color: var(--text-slate);
  font-size: 15px;
  line-height: 1.6;
}

.bento-p.dark-p {
  color: var(--text-dark-muted);
}

/* History Section */
.history-section {
  background-color: var(--bg-light);
  padding: 110px 0;
  color: var(--text-dark);
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.history-p {
  font-size: 16px;
  color: var(--text-dark-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.history-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  margin-top: 12px;
  transition: var(--transition);
}

.history-link:hover {
  color: var(--brand-orange);
  transform: translateX(4px);
}

.history-card-wrap {
  position: relative;
  padding: 20px;
}

.orange-accent-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: var(--brand-orange);
  border-radius: 32px;
  z-index: 1;
}

.history-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.history-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.history-badge-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
  color: #fff;
}

.history-year {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.history-lbl {
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text-slate);
}

/* Testimonials Section */
.testimonials-section {
  background-color: #f1f5f9;
  padding: 110px 0;
  color: var(--text-dark);
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.stars-row {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-dark-muted);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial-author {
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.author-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--text-dark);
}

.author-role {
  font-size: 13px;
  color: var(--text-dark-muted);
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--bg-light);
  padding: 110px 0;
  color: var(--text-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  color: var(--brand-orange);
  transition: var(--transition);
  font-size: 18px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
  color: var(--text-dark-muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Bottom CTA Section */
.bottom-cta-section {
  background: linear-gradient(180deg, #091e36 0%, #030a14 100%);
  padding: 100px 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-cta-title {
  font-size: 44px;
  margin-bottom: 16px;
}

.bottom-cta-desc {
  font-size: 18px;
  color: var(--text-slate);
  margin-bottom: 36px;
}

/* Floating WhatsApp */
.wa-floating-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 99;
  text-decoration: none;
  transition: var(--transition);
}

.wa-floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.65);
}

/* Footer */
.footer {
  background: #020710;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 36px;
  color: var(--text-slate);
}

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

.footer-brand-desc {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-slate);
  max-width: 320px;
  line-height: 1.6;
}

.footer-title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links, .footer-contact-list {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-slate);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-contact-list li {
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.orange-icon {
  color: var(--brand-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-dev-credit {
  font-weight: 500;
}

.dev-link {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.dev-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Modal Dialog */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 19, 36, 0.88);
  backdrop-filter: blur(14px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

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

.modal-dialog {
  background: #091c33;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
  max-height: 90vh;
  overflow-y: auto;
  color: #fff;
}

.modal-btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--text-slate);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.modal-btn-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.modal-heading {
  font-size: 26px;
  margin-bottom: 8px;
}

.modal-subtext {
  color: var(--text-slate);
  font-size: 14px;
  margin-bottom: 28px;
}

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

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-slate);
}

.input-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-white);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-body);
}

.input-control.select-dark {
  background-color: #051324;
}

.input-control:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 15px var(--brand-glow);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .services-3col-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .history-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 38px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
