/* ===========================
   VEOMORE — style.css
   =========================== */

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

:root {
  --navy:       #1B2A4A;
  --navy-dark:  #111D33;
  --navy-mid:   #243558;
  --accent:     #2A5FC4;
  --accent-light: #3D74E0;
  --gold:       #C8A96E;
  --white:      #FFFFFF;
  --grey-50:    #F8F9FB;
  --grey-100:   #F1F3F7;
  --grey-200:   #E2E6EE;
  --grey-400:   #9AA3B2;
  --grey-600:   #5A6478;
  --grey-800:   #2E3648;
  --text:       #1E2636;
  --text-light: #5A6478;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(27,42,74,0.07);
  --shadow-md:  0 8px 30px rgba(27,42,74,0.12);
  --shadow-lg:  0 20px 60px rgba(27,42,74,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   UTILITIES
   =========================== */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(42,95,196,0.08);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

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

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,95,196,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

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

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   NAVBAR
   =========================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
}

.logo-img {
  height: 88px;
  width: auto;
  display: block;
}

.logo-text--light {
  color: var(--white);
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link {
  color: var(--text-light);
}
.navbar.scrolled .nav-link:hover {
  color: var(--navy);
  background: var(--grey-100);
}

.nav-cta-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding: 10px 22px;
  background: var(--accent);
  border-radius: var(--radius);
  transition: var(--transition);
  margin-left: 8px;
}
.nav-cta-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(42,95,196,0.4);
}

.navbar.scrolled .nav-cta-btn {
  background: var(--accent);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span {
  background: var(--navy);
}

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 140px 24px 100px;
}

/* Real photo background via Unsplash */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1800&q=80');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark gradient overlay — left heavy so text is readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,18,35,0.88) 0%,
    rgba(17,29,51,0.75) 50%,
    rgba(17,29,51,0.35) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}

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

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  background: rgba(200,169,110,0.08);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.75;
}

.hero-title-highlight {
  color: #288A6A;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-actions .btn-primary {
  padding: 16px 36px;
  font-size: 1rem;
  background: #288A6A;
  border-color: #288A6A;
  color: #0a1223;
  font-weight: 700;
}

.hero-actions .btn-primary:hover {
  background: #1f6e54;
  border-color: #1f6e54;
  box-shadow: 0 8px 28px rgba(46,204,143,0.4);
}

/* Trust strip */
.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.hero-trust-item i {
  color: #288A6A;
  font-size: 0.9rem;
}

.hero-trust-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
}

/* Hero Visual Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.visual-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.visual-card-dots {
  display: flex;
  gap: 5px;
}

.visual-card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.visual-card-dots span:first-child { background: #FF5F57; }
.visual-card-dots span:nth-child(2) { background: #FFBD2E; }
.visual-card-dots span:last-child { background: #28CA41; }

.visual-card-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.visual-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.vstep {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
}

.vstep-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.vstep--done .vstep-icon {
  background: rgba(34,197,94,0.2);
  color: #22C55E;
}

.vstep--active .vstep-icon {
  background: rgba(42,95,196,0.3);
  color: #60A5FA;
}

.vstep--pending .vstep-icon {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.3);
}

.vstep-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vstep-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.vstep--pending .vstep-label {
  color: rgba(255,255,255,0.4);
}

.vstep-status {
  font-size: 0.7rem;
  color: #22C55E;
  font-weight: 500;
}

.vstep-status--active {
  color: #60A5FA;
}

.vstep-status--pending {
  color: rgba(255,255,255,0.3);
}

.vstep-bar {
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.vstep-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #60A5FA);
  border-radius: 2px;
  transition: width 1s ease;
}

.vstep--done .vstep-fill {
  background: linear-gradient(90deg, #22C55E, #4ADE80);
}

.visual-badges {
  display: flex;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.vbadge {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ===========================
   SERVICES
   =========================== */

.services {
  background: var(--grey-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.service-card--featured::before {
  background: linear-gradient(90deg, var(--gold), #E8C97E);
  opacity: 1;
}

.service-card--featured:hover {
  background: var(--navy-dark);
}

.service-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(42,95,196,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card--featured .service-icon-wrap {
  background: rgba(255,255,255,0.1);
}

.service-card:hover .service-icon-wrap {
  background: rgba(42,95,196,0.15);
}

.service-icon {
  font-size: 1.4rem;
  color: var(--accent);
}

.service-card--featured .service-icon {
  color: var(--gold);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card--featured .service-title {
  color: var(--white);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.65;
}

.service-card--featured .service-desc {
  color: rgba(255,255,255,0.65);
}

.service-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.service-card--featured .service-list li {
  color: rgba(255,255,255,0.75);
}

.service-list li i {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.service-card--featured .service-list li i {
  color: var(--gold);
}

.service-list {
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap var(--transition);
  margin-top: auto;
}

.service-card--featured .service-link {
  color: var(--gold);
}

.service-link:hover {
  gap: 10px;
}

/* ===========================
   ABOUT
   =========================== */

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

/* Graphic */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-graphic {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringRotate linear infinite;
}

.graphic-ring--1 {
  width: 340px; height: 340px;
  border-color: rgba(27,42,74,0.08);
  animation-duration: 20s;
}

.graphic-ring--2 {
  width: 250px; height: 250px;
  border-color: rgba(42,95,196,0.15);
  border-style: dashed;
  animation-duration: 15s;
  animation-direction: reverse;
}

.graphic-ring--3 {
  width: 160px; height: 160px;
  border-color: rgba(42,95,196,0.25);
  animation-duration: 10s;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.graphic-center {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(27,42,74,0.35);
  z-index: 1;
}

.graphic-center i {
  font-size: 2rem;
  color: var(--white);
}

/* About content */
.about-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 36px 0 36px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--grey-200);
  flex-shrink: 0;
}

.about-content .btn-primary {
  color: var(--white);
}

/* ===========================
   SERVICE CATEGORY
   =========================== */

.service-category {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #288A6A;
  margin-bottom: 12px;
  margin-top: -4px;
}

.service-card--featured .service-category {
  color: var(--gold);
}

.service-dot {
  font-size: 0.45rem;
  color: #288A6A;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card--featured .service-dot {
  color: var(--gold);
}

/* ===========================
   WHY US
   =========================== */

.why {
  background: var(--grey-50);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 480px;
  display: block;
}

.why-stat-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.why-stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #288A6A;
  line-height: 1;
}

.why-stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 4px;
}

.why-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(46,204,143,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #288A6A;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.why-feature h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===========================
   PROCESS
   =========================== */

.process {
  background: var(--navy);
}

.process .section-label {
  color: #288A6A;
  background: rgba(46,204,143,0.1);
}

.process .section-title {
  color: var(--white);
}

.process .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 20px;
}

.process-step {
  text-align: center;
  padding: 0 16px;
}

.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(40,138,106,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  margin: 0 auto 16px;
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(46,204,143,0.15);
  border: 2px solid #288A6A;
  font-size: 1rem;
  font-weight: 800;
  color: #288A6A;
  margin: 0 auto 20px;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: rgba(46,204,143,0.3);
  margin-top: 28px;
  flex-shrink: 0;
}

/* ===========================
   TESTIMONIALS
   =========================== */

.testimonials {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #288A6A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Footer logo */
.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 12px;
  display: block;
}

/* ===========================
   TRUST BAR
   =========================== */

.trust-bar {
  background: var(--navy);
  padding: 48px 0;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.trust-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===========================
   CONTACT
   =========================== */

.contact {
  background: var(--grey-50);
}

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

.contact-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.detail-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

a.detail-value:hover {
  color: var(--accent);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-800);
}

.required {
  color: #E53E3E;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 11px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42,95,196,0.1);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239AA3B2' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-note {
  font-size: 0.78rem;
  color: var(--grey-400);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: -6px;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}

.form-success.visible {
  display: block;
}

.success-icon {
  font-size: 3rem;
  color: #22C55E;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.form-success .btn-outline {
  color: var(--accent);
  border-color: var(--accent);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--navy-dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin: 12px 0 16px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-email {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--transition);
}
.footer-email:hover { opacity: 0.8; }

.footer-links-group h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links-group ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 28px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-stat-badge {
    right: 20px;
    bottom: 20px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-connector {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

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

  .about-visual {
    order: -1;
  }

  .about-graphic {
    width: 260px;
    height: 260px;
  }

  .graphic-ring--1 { width: 260px; height: 260px; }
  .graphic-ring--2 { width: 190px; height: 190px; }
  .graphic-ring--3 { width: 120px; height: 120px; }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .why-image img {
    height: 300px;
  }
  .section { padding: 70px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    font-size: 1.2rem;
    padding: 14px 32px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .navbar.scrolled .nav-toggle.open span {
    background: var(--white);
  }

  .nav-cta-btn {
    margin-left: 0;
    margin-top: 8px;
    padding: 14px 36px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .trust-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

  .contact-form-wrap {
    padding: 28px 24px;
  }

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

  .about-stats {
    flex-direction: column;
    gap: 0;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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