/* ================================
   RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #f5f7fb;
  color: #0B1F3A;
  line-height: 1.6;
}

/* ================================
   CONTAINER
================================ */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* ================================
   HEADER & NAV
================================ */
header {
  background: linear-gradient(135deg, #071A33, #0B1F3A);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  position: relative;
}

header h1 {
  font-size: 24px;
  font-weight: 700;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  height: 70px;
  position: relative;
  min-width: 110px;
}

.header-logo {
  height: 180px;
  width: auto;
  position: absolute;
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

nav a {
  position: relative;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.9;
  text-decoration: none;
  padding: 6px 0;
  padding-bottom: 6px;
  transition: opacity 0.25s ease, color 0.25s ease;
}

nav a:hover {
  opacity: 1;
  color: #c9a24d;
}

nav a.active {
  color: #c9a24d;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #c9a24d;
  border-radius: 2px;
}

nav a:not(.active):not(.header-cta):hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(201, 162, 77, 0.6);
  border-radius: 2px;
}

/* Header CTA button */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 2px solid #c9a24d;
  border-radius: 8px;
  background: transparent;
  color: #c9a24d !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  opacity: 1 !important;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: #c9a24d;
  color: #0b1f3a !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 162, 77, 0.35);
}

.header-cta::after {
  display: none !important;
}

/* ================================
   HAMBURGER MOBILE MENU
================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ================================
   HERO SECTION
================================ */
.hero {
  position: relative;
  min-height: 55vh;
  padding: 100px 0 60px;
  overflow: hidden;
  background-image: url("../images/hero-global.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 20, 40, 0.75),
    rgba(5, 20, 40, 0.55),
    rgba(5, 20, 40, 0.75)
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(255, 215, 120, 0.12),
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.hero .container,
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1.15;
  position: relative;
  z-index: 3;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 77, 0.15);
  border: 1px solid rgba(201, 162, 77, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.hero-actions a {
  min-width: 220px;
  text-align: center;
}

.hero-trust {
  margin-top: 22px;
  font-size: 0.95rem;
  opacity: 0.9;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.hero-small {
  min-height: 55vh;
}

.highlight {
  color: #c9a24d;
}

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  font-size: 1rem;
  font-family: inherit;
}

.btn.primary {
  background: linear-gradient(135deg, #c9a24d, #e0c070);
  color: #0b1f3a;
  border-color: #c9a24d;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #0b1f3a, #0b2c52);
  color: #c9a24d;
  border-color: #c9a24d;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 162, 77, 0.35);
}

.btn.secondary {
  background: transparent;
  border: 2px solid #c9a24d;
  color: #c9a24d;
}

.btn.secondary:hover {
  background: #c9a24d;
  color: #0b1f3a;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 162, 77, 0.35);
}

.btn.outline {
  background: transparent;
  border: 2px solid #c9a24d;
  color: #c9a24d;
}

.btn.outline:hover {
  background: #c9a24d;
  color: #0b1f3a;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 162, 77, 0.35);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-white {
  background: #ffffff;
  color: #0b1f3a;
  border: 2px solid #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background: #0b1f3a;
  color: #c9a24d;
  border: 2px solid #0b1f3a;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: transparent;
  color: #0b1f3a;
  border-color: #0b1f3a;
  transform: translateY(-3px);
}

/* ================================
   SECTIONS GENERAL
================================ */
section {
  padding: 80px 0;
  background: white;
}

section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0b1f3a;
}

section h3 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

/* ================================
   SERVICES GRID
================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
  background: transparent;
}

.service-card {
  background: #ffffff !important;
  padding: 26px 22px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: #071a33 !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 2px solid #e6ebf2;
  opacity: 1 !important;
}

.service-card:hover {
  border-color: #c9a24d;
  background: linear-gradient(135deg, #fdf8ed, #ffffff) !important;
  color: #0b1f3a !important;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201, 162, 77, 0.18);
}

/* ================================
   TRUST SECTION
================================ */
.trust-section {
  background: #f8f9fb;
  padding: 80px 0;
  text-align: center;
}

.trust-section h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #0b1f3a;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.trust-card {
  background: white;
  padding: 30px 24px;
  border-radius: 16px;
  border: 2px solid transparent;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.trust-card h3 {
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #0b1f3a;
  text-align: center;
}

.trust-card p {
  font-size: 0.95rem;
  color: #555;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border-color: #c9a24d;
}

/* ================================
   STATISTICS / COUNTER SECTION
================================ */
.stats-section {
  background: linear-gradient(135deg, #071A33, #0B2C52);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #c9a24d;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.85;
  font-weight: 500;
}

/* ================================
   PROCESS / HOW IT WORKS
================================ */
.process-section {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  position: relative;
}

.process-step {
  position: relative;
  padding: 30px 24px;
  text-align: center;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c9a24d, #e0c070);
  color: #0b1f3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(201, 162, 77, 0.3);
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #0b1f3a;
}

.process-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ================================
   TESTIMONIALS
================================ */
.testimonials-section {
  background: #f8f9fb;
  padding: 100px 0;
  text-align: center;
}

.testimonials-section h2 {
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  text-align: left;
  border: 2px solid transparent;
  transition: all 0.35s ease;
  position: relative;
}

.testimonial-card:hover {
  border-color: #c9a24d;
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: #c9a24d;
  line-height: 1;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a24d, #e0c070);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b1f3a;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0b1f3a;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #888;
}

/* ================================
   NEWSLETTER / CTA BANNER
================================ */
.newsletter-section {
  background: linear-gradient(135deg, #c9a24d, #e0c070);
  padding: 80px 0;
  text-align: center;
}

.newsletter-section h2 {
  color: #0b1f3a;
  margin-bottom: 14px;
}

.newsletter-section p {
  color: #0b1f3a;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid rgba(11, 31, 58, 0.2);
  font-size: 1rem;
  background: #ffffff;
  color: #0b1f3a;
  font-family: inherit;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #0b1f3a;
}

.newsletter-form button {
  padding: 14px 28px;
  background: #0b1f3a;
  color: #c9a24d;
  border: 2px solid #0b1f3a;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.newsletter-form button:hover {
  background: transparent;
  color: #0b1f3a;
  transform: translateY(-2px);
}

/* ================================
   ENHANCED FOOTER
================================ */
footer {
  background: #071A33;
  color: white;
  padding: 60px 0 30px;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #c9a24d;
}

.footer-col p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: #c9a24d;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-social a:hover {
  border-color: #c9a24d;
  background: #c9a24d;
  color: #0b1f3a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom p {
  margin-bottom: 4px;
}

/* ================================
   PAGE HERO (subpages)
================================ */
.page-hero {
  position: relative;
  color: white;
  padding: 90px 0 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 26, 51, 0.72),
    rgba(11, 42, 77, 0.60)
  );
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero--usa {
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80");
}

.page-hero--rdc {
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80");
}

.page-hero--commerce {
  background-image: url("https://images.unsplash.com/photo-1494412574643-ff11b0a5eb19?w=1600&q=80");
}

.page-hero--contact {
  background-image: url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&q=80");
}

.page-hero--transactions {
  background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1600&q=80");
}

.page-hero--about {
  background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1600&q=80");
}

.page-hero--faq {
  background-image: url("https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1600&q=80");
}

.page-hero--dubai {
  background-image: url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1600&q=80");
}

.page-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
}

/* ================================
   CONTENT HELPERS
================================ */
.content-narrow {
  max-width: 900px;
  margin: auto;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.info-card {
  background: #f5f7fb;
  padding: 18px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: #c9a24d;
  background: #fdf8ed;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 162, 77, 0.15);
}

.cta-box {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================================
   RICH SERVICE CARDS (for subpages)
================================ */
.rich-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.rich-service-card {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 16px;
  border: 2px solid #e6ebf2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.rich-service-card:hover {
  border-color: #c9a24d;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201, 162, 77, 0.15);
}

.rich-service-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.rich-service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #0b1f3a;
  text-align: left;
}

.rich-service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ================================
   BENEFITS LIST
================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: #f8f9fb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #fdf8ed;
  transform: translateX(4px);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c9a24d, #e0c070);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-text h4 {
  font-size: 1rem;
  color: #0b1f3a;
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 0.9rem;
  color: #666;
}

/* ================================
   SECTION VARIANTS
================================ */
.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: -10px auto 50px;
  font-size: 1.05rem;
  color: #666;
}

.section-dark {
  background: linear-gradient(135deg, #071A33, #0B2C52);
  color: white;
}

.section-dark h2 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-light {
  background: #f8f9fb;
}

/* ================================
   FAQ ACCORDION
================================ */
.faq-section {
  padding: 100px 0;
  background: #ffffff;
}

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

.faq-item {
  border: 2px solid #e6ebf2;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
  border-color: #c9a24d;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #0b1f3a;
  background: #ffffff;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  background: #fdf8ed;
}

.faq-icon {
  font-size: 1.3rem;
  color: #c9a24d;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

/* ================================
   ABOUT PAGE
================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image {
  background: linear-gradient(135deg, #071A33, #0B2C52);
  border-radius: 20px;
  padding: 40px;
  color: white;
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.about-image .big-icon {
  font-size: 5rem;
}

.about-image p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #c9a24d;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.value-card {
  background: white;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #e6ebf2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.value-card:hover {
  border-color: #c9a24d;
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(201, 162, 77, 0.15);
}

.value-card .value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.1rem;
  color: #0b1f3a;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #e6ebf2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}

.team-card:hover {
  border-color: #c9a24d;
  transform: translateY(-5px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a24d, #e0c070);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #0b1f3a;
  font-weight: 700;
}

.team-card h3 {
  font-size: 1.1rem;
  color: #0b1f3a;
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 0.85rem;
  color: #c9a24d;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* ================================
   CONTACT PAGE ENHANCED
================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  padding-top: 10px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #f8f9fb;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: #fdf8ed;
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #c9a24d, #e0c070);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 1rem;
  color: #0b1f3a;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.9rem;
  color: #666;
}

.contact-form-wrapper {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border: 2px solid #e6ebf2;
}

.contact-form-wrapper h2 {
  margin-bottom: 24px;
  font-size: 1.6rem;
}

/* ================================
   FORM STYLING
================================ */
form label {
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  font-weight: 600;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  font-size: 15px;
  font-family: inherit;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: #c9a24d;
  box-shadow: 0 0 0 2px rgba(201, 162, 77, 0.25);
}

/* ================================
   404 PAGE
================================ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, #071A33, #0B2C52);
  color: white;
}

.error-content h1 {
  font-size: 8rem;
  font-weight: 900;
  color: #c9a24d;
  line-height: 1;
  margin-bottom: 16px;
}

.error-content h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 16px;
}

.error-content p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 30px;
}

/* ================================
   THANK YOU PAGE
================================ */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.thankyou-content {
  max-width: 600px;
}

.thankyou-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.thankyou-content h1 {
  font-size: 2.5rem;
  color: #0b1f3a;
  margin-bottom: 14px;
}

.thankyou-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ================================
   SCROLL ANIMATIONS
================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease;
}

.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease;
}

.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* ================================
   BADGE (generic)
================================ */
.badge {
  display: inline-block;
  background: rgba(201, 162, 77, 0.15);
  border: 1px solid rgba(201, 162, 77, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

/* ================================
   CTA BANNER SECTION
================================ */
.cta-banner {
  background: linear-gradient(135deg, #071A33, #0B2C52);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
   MARKETS STRIP
================================ */
.markets-strip {
  background: #f8f9fb;
  padding: 50px 0;
  text-align: center;
}

.markets-strip h3 {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.markets-logos {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.market-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}

.market-flag .flag {
  font-size: 3rem;
}

/* ================================
   CHAT WIDGET
================================ */
#chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #c9a24d;
  color: #081f3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#chat:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 320px;
  max-height: 420px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  font-family: inherit;
}

.chat-widget.show {
  display: flex;
}

.chat-header {
  background: linear-gradient(135deg, #081f3a, #0b2c52);
  color: #ffffff;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

#chat-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

.chat-body {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #f7f8fa;
}

.chat-msg {
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 85%;
}

.chat-msg.bot {
  background: #e9edf2;
  color: #081f3a;
}

.chat-msg.user {
  background: #c9a24d;
  color: #081f3a;
  margin-left: auto;
}

.chat-footer {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

#chat-input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-family: inherit;
}

#chat-send {
  background: #081f3a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#chat-send:hover {
  background: #c9a24d;
  color: #081f3a;
}

/* ================================
   GOOGLE MAP SECTION
================================ */
.map-section {
  background: #f0f2f7;
  padding: 80px 0;
}

.map-wrapper {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  display: block;
}

/* ================================
   LEGAL CARDS (Securite & Cadre Legal)
================================ */
.legal-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.legal-card {
  padding: 35px 28px;
  border-radius: 16px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.legal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
}

.legal-card--cadastre {
  background: linear-gradient(135deg, #1a3a5c, #1e4a6e);
}

.legal-card--cadastre::before {
  background: linear-gradient(90deg, #c9a24d, #e0c070);
}

.legal-card--contrats {
  background: linear-gradient(135deg, #2d1b4e, #3d2466);
}

.legal-card--contrats::before {
  background: linear-gradient(90deg, #a29bfe, #6c5ce7);
}

.legal-card--conformite {
  background: linear-gradient(135deg, #1a4a3a, #1e5c4a);
}

.legal-card--conformite::before {
  background: linear-gradient(90deg, #55efc4, #00b894);
}

.legal-card--transparence {
  background: linear-gradient(135deg, #4a1a2e, #5c1e3a);
}

.legal-card--transparence::before {
  background: linear-gradient(90deg, #fd79a8, #e84393);
}

.legal-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.legal-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #ffffff;
  text-align: left;
}

.legal-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.legal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ================================
   MODERN SECTION HEADERS
================================ */
.section-header-modern {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201, 162, 77, 0.15), rgba(201, 162, 77, 0.08));
  border: 1px solid rgba(201, 162, 77, 0.3);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c9a24d;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

/* ================================
   MODERN SERVICES SHOWCASE
================================ */
.services-showcase {
  background: linear-gradient(180deg, #f0f2f7 0%, #ffffff 100%);
  padding: 100px 0;
}

.services-modern-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-modern-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #ffffff;
  border-radius: 16px;
  text-decoration: none;
  border: 2px solid #e6ebf2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-modern-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, #c9a24d, #e0c070);
  transition: width 0.35s ease;
  border-radius: 14px 0 0 14px;
}

.service-modern-card:hover::before {
  width: 5px;
}

.service-modern-card:hover {
  border-color: #c9a24d;
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(201, 162, 77, 0.15);
}

.service-modern-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8f4eb, #fdf8ed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.service-modern-card:hover .service-modern-icon {
  background: linear-gradient(135deg, #c9a24d, #e0c070);
  transform: scale(1.05);
}

.service-modern-content {
  flex: 1;
}

.service-modern-content h3 {
  font-size: 1.15rem;
  color: #0b1f3a;
  margin-bottom: 4px;
  text-align: left;
}

.service-modern-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.service-modern-arrow {
  font-size: 1.4rem;
  color: #c9a24d;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.service-modern-card:hover .service-modern-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ================================
   MODERN PROCESS / INTERVENTION
================================ */
.process-modern {
  background: #ffffff;
  padding: 100px 0;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #c9a24d, #e0c070, #c9a24d);
  border-radius: 3px;
}

.process-modern-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.process-modern-step:last-child {
  margin-bottom: 0;
}

.process-modern-number {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.process-modern-number span {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0b1f3a, #0b2c52);
  color: #c9a24d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.3);
  border: 3px solid #c9a24d;
}

.process-modern-card {
  flex: 1;
  background: #f8f9fb;
  border-radius: 16px;
  padding: 28px;
  border: 2px solid transparent;
  transition: all 0.35s ease;
}

.process-modern-card:hover {
  background: #fdf8ed;
  border-color: #c9a24d;
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(201, 162, 77, 0.12);
}

.process-modern-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.process-modern-card h3 {
  font-size: 1.15rem;
  color: #0b1f3a;
  margin-bottom: 8px;
  text-align: left;
}

.process-modern-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ================================
   MODERN TESTIMONIALS CAROUSEL
================================ */
.testimonials-modern {
  background: linear-gradient(180deg, #0b1f3a 0%, #071A33 100%);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.testimonials-modern h2 {
  color: #ffffff;
}

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

.testimonials-modern .section-tag {
  background: rgba(201, 162, 77, 0.15);
  border-color: rgba(201, 162, 77, 0.4);
  color: #e0c070;
}

.testimonials-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonials-carousel {
  flex: 1;
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.testimonial-chat-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.testimonial-chat-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-chat-card.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}

.chat-bubble-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.chat-bubble-testimonial {
  background: linear-gradient(135deg, #ffffff, #f8f9fb);
  padding: 28px 32px;
  border-radius: 20px 20px 20px 4px;
  text-align: left;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

.chat-bubble-testimonial p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.chat-bubble-tail {
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 12px solid #f8f9fb;
  border-right: 12px solid transparent;
  border-top: 12px solid #f8f9fb;
  border-bottom: 12px solid transparent;
}

.testimonial-chat-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 8px;
}

.testimonial-chat-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-chat-info {
  text-align: left;
}

.testimonial-chat-name {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.testimonial-chat-role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}

.testimonial-chat-stars {
  color: #c9a24d;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.15);
  border: 2px solid rgba(201, 162, 77, 0.4);
  color: #c9a24d;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-nav:hover {
  background: #c9a24d;
  color: #0b1f3a;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(201, 162, 77, 0.35);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: #c9a24d;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(201, 162, 77, 0.5);
}

.testimonial-leave-review {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-leave-review p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 16px;
}

/* ================================
   RESPONSIVE - TABLET
================================ */
@media (max-width: 992px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .logo-link {
    height: 40px;
    min-width: 70px;
  }

  .header-logo {
    height: 100px;
    left: -20px;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 16px 0 8px;
    gap: 0;
    background: linear-gradient(135deg, #071A33, #0B1F3A);
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    z-index: 100;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
  }

  nav a::after {
    display: none !important;
  }

  .header-cta {
    margin: 8px 24px 16px;
    text-align: center;
    justify-content: center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .hero {
    min-height: 50vh;
    padding: 80px 0 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 1.8rem;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

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

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

  .services-grid {
    gap: 18px;
  }

  .rich-services-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }

  /* New components responsive */
  .process-timeline-line {
    left: 28px;
  }

  .process-modern-number {
    width: 56px;
    height: 56px;
  }

  .process-modern-number span {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .process-modern-card {
    padding: 20px;
  }

  .testimonials-carousel-wrapper {
    gap: 10px;
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .chat-bubble-testimonial {
    padding: 20px 22px;
  }

  .legal-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero {
    min-height: 45vh;
    padding: 70px 0 30px;
  }

  .logo-link {
    height: 30px;
  }

  .header-logo {
    height: 80px;
    left: -15px;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.6rem;
  }

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

  .error-content h1 {
    font-size: 5rem;
  }
}
