/* ===== RESETTLE WORLDWIDE - style.css ===== */
:root {
  /* --bs-primary: #0d6efd;
  --bs-primary-rgb: 13, 110, 253; */

  --bs-primary: #00152B;
  --bs-primary-rgb: 0, 21, 43;

  --rw-primary: #00152a;
  --rw-on-primary: #ffffff;
  --rw-primary-container: #0f2a44;
  --rw-on-primary-container: #7992b1;
  --rw-secondary: #006971;
  --rw-on-secondary: #ffffff;
  --rw-secondary-container: #79f1ff;
  --rw-on-secondary-container: #006d76;
  --rw-surface: #f8f9ff;
  --rw-on-surface: #0b1c30;
  --rw-surface-low: #eff4ff;
  --rw-surface-container: #e5eeff;
  --rw-outline: #c3c6ce;
  --rw-font: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--rw-font);
  background: var(--rw-surface);
  color: var(--rw-primary);
  scroll-behavior: smooth;
}

/* ===== MODERN MULTI-LEVEL NAVBAR ===== */
:root {
  --nav-bg: #ffffff;
  --nav-text: #334155;
  --nav-accent: #006971;
  --nav-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --nav-transition: all 0.3s ease;
}

.cl-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: var(--nav-bg);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.cl-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: 80px;
}

.cl-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #00152a;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

/* LOGO SIZING - Adjust max-height here to change logo size globally */
.rw-logo-header {
  max-height: 80px;
  width: auto;
  transition: max-height 0.3s ease, transform 0.3s ease;
  transform: scale(1.4);
  transform-origin: left center;
}

@media (max-width: 1024px) {
  .rw-logo-header {
    max-height: 80px;
    transform: scale(1.3);
  }
}

.rw-logo-footer {
  max-height: 150px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Menu Structure */
.cl-nav {
  display: flex;
  align-items: stretch;
}

.cl-nav-list {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cl-nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.cl-nav-link {
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--nav-transition);
  cursor: pointer;
  white-space: nowrap;
}

.cl-nav-link:hover,
.cl-nav-item:hover>.cl-nav-link {
  color: var(--nav-accent);
}

/* Dropdowns */
.cl-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #ffffff;
  list-style: none;
  padding: 0.75rem 0;
  margin: 0;
  border-radius: 0 0 0.75rem 0.75rem;
  box-shadow: var(--nav-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--nav-transition);
}

.cl-nav-item:hover>.cl-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cl-dropdown-item {
  position: relative;
}

.cl-dropdown-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: var(--nav-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--nav-transition);
}

.cl-dropdown-link:hover,
.cl-dropdown-item:hover>.cl-dropdown-link {
  background: #f8fafc;
  color: var(--nav-accent);
}

/* Sub-submenu (Multi-level) */
.cl-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 200px;
  background: #ffffff;
  list-style: none;
  padding: 0.75rem 0;
  margin: 0;
  border-radius: 0.75rem;
  box-shadow: var(--nav-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--nav-transition);
}

.cl-dropdown-item:hover>.cl-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Carets */
.caret-down::after {
  content: '\e5cf';
  font-family: 'Material Symbols Outlined';
  font-size: 1.2rem;
  margin-left: 4px;
}

.caret-right::after {
  content: '\e5cc';
  font-family: 'Material Symbols Outlined';
  font-size: 1.1rem;
}

/* CTA */
.cl-cta {
  background: #00152a;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--nav-transition);
}

.cl-cta:hover {
  background: var(--nav-accent);
  transform: translateY(-2px);
}

/* Mobile Toggle */
.cl-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.cl-mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #00152a;
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .cl-container {
    height: 70px;
  }

  .cl-mobile-toggle {
    display: block;
  }

  .cl-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    height: auto;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--nav-shadow);
  }

  .cl-nav.is-active {
    display: block;
  }

  .cl-nav-list {
    flex-direction: column;
    height: auto;
    gap: 0;
    padding: 1rem 0;
  }

  .cl-nav-item {
    flex-direction: column;
    align-items: stretch;
  }

  .cl-nav-link {
    height: auto;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f8fafc;
  }

  .cl-dropdown,
  .cl-submenu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    background: #f8fafc;
    padding-left: 1rem;
  }

  .cl-dropdown.is-active,
  .cl-submenu.is-active {
    display: block;
  }

  .cl-cta-wrap {
    display: none !important;
  }
}

.cl-cta-wrap {
  display: flex;
  align-items: center;
}


/* ===== TOP BAR STYLES ===== */
.cl-top-bar {
  background: #00152a;
  color: #e2e8f0;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cl-top-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cl-top-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cl-top-item {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.cl-top-item:hover {
  color: var(--nav-accent);
}

.cl-top-item .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--nav-accent);
}

.cl-top-divider {
  opacity: 0.3;
  font-weight: 300;
}

.cl-top-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cl-branch-list {
  color: #94a3b8;
  font-weight: 400;
}

@media (max-width: 768px) {
  .cl-top-bar {
    display: none;
  }
}



/* BUTTONS */
.rw-btn-primary {
  background: var(--rw-primary);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .05em;
  transition: transform .2s, box-shadow .2s;
}

.rw-btn-primary:hover {
  background: var(--rw-primary);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 8px 25px rgba(0, 21, 42, 0.3);
}

.rw-btn-cyan {
  background: var(--rw-secondary-container);
  color: var(--rw-on-secondary-container);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  transition: transform .2s, box-shadow .2s;
}

.rw-btn-cyan:hover {
  background: var(--rw-secondary-container);
  color: var(--rw-on-secondary-container);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 105, 113, .3);
}

.rw-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .05em;
  backdrop-filter: blur(8px);
  transition: background .2s;
}

.rw-btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.rw-btn-text {
  color: var(--rw-secondary);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .05em;
  text-decoration: none;
  transition: gap .2s;
}

.rw-btn-text:hover {
  color: var(--rw-secondary);
  gap: 8px !important;
}

.rw-btn-teal {
  background: var(--rw-secondary);
  color: #fff;
}

.rw-btn-teal:hover {
  background: #005058;
  color: #fff;
}

/* HERO */
.rw-hero {
  min-height: 100vh;
  padding-top: 80px;
  position: relative;
}

.rw-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rw-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 21, 42, .92) 0%, rgba(0, 21, 42, .5) 60%, transparent 100%);
}

.rw-display {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.rw-headline-lg {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.rw-headline-md {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.rw-headline-sm {
  font-size: 1.4rem;
  font-weight: 600;
}

.rw-body-lg {
  font-size: 1.125rem;
  line-height: 1.6;
}

.rw-stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rw-stat-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  opacity: .6;
  text-transform: uppercase;
}

/* GLASS CARD */
.rw-glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .4);
}

.rw-input {
  background: var(--rw-surface-low) !important;
  border: none !important;
  border-radius: .5rem !important;
  padding: 1rem !important;
  font-size: .95rem;
}

.rw-input:focus {
  box-shadow: 0 0 0 2px var(--rw-secondary) !important;
}

/* SECTIONS */
.py-section {
  padding: 100px 0;
}

.rw-bg-light {
  background: var(--rw-surface-low);
}

.rw-label-tag {
  color: var(--rw-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* SERVICES */
.rw-service-card {
  border-color: var(--rw-outline) !important;
  cursor: pointer;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.rw-service-card:hover {
  transform: translateY(-8px);
  border-color: var(--rw-secondary) !important;
  box-shadow: 0 20px 50px rgba(0, 105, 113, .12);
}

.rw-icon-circle {
  width: 52px;
  height: 52px;
  background: #dce9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rw-secondary);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}

/* COUNTRIES */
.rw-country-card {
  cursor: pointer;
}

.rw-country-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}

.rw-country-card:hover .rw-country-img {
  transform: scale(1.1);
}

.rw-country-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 21, 42, .92) 0%, transparent 60%);
}

.rw-country-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* WHY US */
.rw-blob-bg {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(0, 105, 113, .1);
  border-radius: 50%;
  filter: blur(50px);
}

.rw-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .4);
}

.rw-icon-circle-teal {
  width: 44px;
  height: 44px;
  background: var(--rw-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rw-icon-sq {
  padding: 10px;
  background: #dce9ff;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.rw-icon-teal {
  color: var(--rw-secondary);
}

/* PROCESS */
.rw-bg-dark {
  background: var(--rw-primary);
}

.rw-timeline-line {
  position: absolute;
  top: 48px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: rgba(255, 255, 255, .1);
  z-index: 0;
}

.rw-step-card {
  position: relative;
  z-index: 1;
}

.rw-step-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--rw-primary-container);
  border: 4px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rw-secondary-container);
  transition: transform .3s;
}

.rw-step-circle:hover {
  transform: scale(1.1);
}

.rw-step-circle--active {
  background: var(--rw-secondary);
  border-color: var(--rw-secondary);
  box-shadow: 0 0 40px rgba(0, 105, 113, .5);
}

.rw-step-icon {
  font-size: 2rem !important;
}

/* TESTIMONIALS */
.rw-testimonial-card {
  transition: box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.rw-testimonial-card:hover {
  box-shadow: 0 20px 50px rgba(0, 21, 42, .1) !important;
}

.rw-star-filled {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  color: #f59e0b;
}

/* BLOG */
.rw-blog-card {
  display: flex;
  flex-direction: column;
}

.rw-blog-img-wrap {
  height: 230px;
}

.rw-blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.rw-blog-img-wrap:hover .rw-blog-img {
  transform: scale(1.06);
}

.rw-blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.rw-blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color .2s;
}

.rw-blog-card:hover .rw-blog-title {
  color: var(--rw-secondary) !important;
}

/* CTA */
.rw-cta-box {
  background: var(--rw-primary-container);
  padding: 80px !important;
}

.rw-cta-blob {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 384px;
  height: 384px;
  background: rgba(0, 105, 113, .1);
  border-radius: 50%;
  filter: blur(120px);
}

/* FOOTER */
.rw-footer {
  background: #020a14;
}

.rw-footer-heading {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #64748b;
  margin-bottom: 1.2rem;
}

.rw-footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rw-footer-links a {
  color: #475569;
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s, transform .2s;
  display: inline-block;
}

.rw-footer-links a:hover {
  color: #22d3ee;
  transform: translateX(4px);
}

.rw-footer-input {
  background: #0f1d2d !important;
  border-color: #1e3a5f !important;
  color: #fff !important;
}

.rw-footer-input::placeholder {
  color: #4a6077;
}

.rw-social-icon {
  width: 40px;
  height: 40px;
  background: #0f1d2d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  transition: color .2s, background .2s;
}

.rw-social-icon:hover {
  background: var(--rw-secondary);
  color: #fff;
}

/* Form Placeholder Opacity */
input::placeholder,
textarea::placeholder {
  opacity: 0.5 !important;
}

::-webkit-input-placeholder {
  opacity: 0.5 !important;
}

::-moz-placeholder {
  opacity: 0.5 !important;
}

:-ms-input-placeholder {
  opacity: 0.5 !important;
}