:root {
  --primary-blue: #1D7BEA;
  --dark-blue: #0D3B66;
  --light-blue: #4ECDC4;
  --cta-red: #E63946;
  --text-dark: #1B2430;
  --text-muted: #5B6B7A;
  --bg-light: #F5F5F5;
  --white: #FFFFFF;
  --border: #E3EAF3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.top-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 14px;
  flex-wrap: wrap;
  word-break: break-word;
}

.top-bar-item svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-blue);
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.site-header .container {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logos img {
  height: 40px;
  width: auto;
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  flex: 1;
}

.brand-title strong {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-title span {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  font-size: 15px;
  color: var(--text-dark);
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(29, 123, 234, 0.08);
  color: var(--primary-blue);
}

.nav a[aria-current="page"] {
  background: rgba(29, 123, 234, 0.12);
  color: var(--primary-blue);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(6px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero Section */
.hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 50%, #0E4B86 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-image img {
  max-width: 100%;
  max-height: 600px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  width: 100%;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-badge img {
  height: 24px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.hero h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--white);
}

.hero p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.95);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(29, 123, 234, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(29, 123, 234, 0.4);
  transform: translateY(-2px);
}

.btn-hero {
  padding: 16px 32px;
  font-size: 16px;
  margin-top: 20px;
}

/* Services Section */
.services-section {
  padding: 60px 0;
  background: var(--white);
}

.section-head {
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-head p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-blue);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(29, 123, 234, 0.1), rgba(14, 75, 134, 0.1));
  border-radius: 50%;
  color: var(--primary-blue);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Why Section */
.why-section {
  padding: 60px 0;
  background: #F3F8FF;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.trust-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  padding: 60px 0;
  background: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.gallery figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.gallery figcaption {
  padding: 16px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 60px 0 100px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-brand img {
  height: 40px;
}

.footer-brand p {
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 16px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  padding: 8px 0;
  font-size: 16px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--primary-blue);
}

.fineprint {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Bottom Fixed CTA Bar */
.bottom-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cta-red);
  box-shadow: 0 -4px 20px rgba(230, 57, 70, 0.3);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-cta-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

.bottom-cta-link:hover {
  opacity: 0.9;
}

.bottom-cta-link svg {
  flex-shrink: 0;
}
