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

:root {
  --navy: #082c66;
  --navy-dark: #061f49;
  --gold: #c99d45;
  --soft-blue: #f4f8ff;
  --text: #16233f;
  --muted: #667085;
  --white: #ffffff;
  --border: #e6edf7;
  --shadow: 0 24px 60px rgba(8, 44, 102, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  width: 100%;
  padding: 18px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(8, 44, 102, 0.06);
}

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

/* NEW */
.brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo{
    width:65px;
    height:65px;

    object-fit:contain;

    background:transparent;
}

.brand-text{
    display:flex;
    flex-direction:column;
}

.brand-text strong{
    font-size:30px;
    font-weight:800;

    color:#082c66;

    line-height:1;
}

.brand-text span{
    font-size:20px;

    font-weight:700;

    color:#082c66;

    line-height:1;
}

/* .brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
} */

.brand strong {
  display: block;
  font-size: 20px;
  color: var(--navy);
  line-height: 1;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  color: var(--text);
}

.nav a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 12px;
}

.language-switch {
  display: flex;
  align-items: center;
  background: var(--soft-blue);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  color: var(--navy);
}

/* NEW */
.lang-btn{
    display:flex;
    align-items:center;
    gap:6px;

    padding:8px 14px;

    font-size:14px;
    font-weight:600;

    cursor:pointer;
}  

.lang-btn.active {
  background: var(--navy);
  color: var(--white);
}

/* NEW */
.language-switch{
    display:flex;
    gap:8px;

    background:#f5f7fb;

    padding:4px;

    border-radius:50px;
}

/* NEW */
.flag-icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 18px;
}

/* NEW */
.lang-btn img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--navy);
  color: var(--white);
  font-size: 24px;
  padding: 8px 13px;
  border-radius: 10px;
}

.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.88) 48%, rgba(255,255,255,0.2) 100%),
    url("https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(8,44,102,0.08), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 7%;
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 60px;
  align-items: center;
}

.eyebrow,
.section-heading span,
.process-left span,
.about-card span,
.testimonial-box span,
.faq-box span,
.contact-section span {
  color: var(--gold);
  font-weight: 800;
  display: inline-block;
  margin-bottom: 12px;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -2px;
}

.hero p {
  margin: 24px 0;
  max-width: 600px;
  font-size: 18px;
  color: #344054;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn.primary {
  background: var(--navy);
  color: var(--white);
}

.btn.secondary {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: var(--white);
}

.btn.gold {
  background: var(--gold);
  color: var(--white);
}

.btn.small {
  border-radius: 10px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.trust-row {
  margin-top: 44px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-row div {
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

.trust-row strong {
  display: block;
  color: var(--navy);
}

.trust-row span {
  color: var(--muted);
  font-size: 14px;
}

.consult-card {
  background: var(--navy);
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  color: var(--white);
}

.consult-card h2 {
  font-size: 28px;
}

.consult-card p {
  color: rgba(255,255,255,0.85);
  margin: 8px 0 20px;
}

.consult-card form {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: 10px;
  font: inherit;
  outline: none;
  color: var(--text);
}

textarea {
  min-height: 105px;
  resize: vertical;
}

.consult-card button {
  border: none;
  background: var(--gold);
  color: var(--white);
  padding: 14px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.section {
  padding: 88px 7%;
}

.services-section {
  background: var(--soft-blue);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.section-heading h2,
.process-left h2,
.about-card h2,
.testimonial-box h2,
.faq-box h2,
.contact-section h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--navy);
  line-height: 1.15;
}

.section-heading p,
.process-left p,
.about-card p {
  color: var(--muted);
  margin-top: 12px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(8, 44, 102, 0.08);
  border: 1px solid var(--border);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card .icon {
  font-size: 34px;
  margin-bottom: 18px;
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.service-card a {
  color: var(--navy);
  font-weight: 800;
}

/* NEW */
.service-link{
    text-decoration:none;
    color:inherit;
}

.service-card{
    cursor:pointer;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
    transition:0.3s;
}

.process-section {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  background: var(--white);
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(8, 44, 102, 0.08);
}

.step strong {
  background: var(--navy);
  color: var(--white);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 18px;
}

.step h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

.about-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.about-card {
  max-width: 1050px;
  margin: auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 48px;
  border-radius: 30px;
  color: var(--white);
}

.about-card h2 {
  color: var(--white);
}

.about-card p {
  color: rgba(255,255,255,0.8);
}

.about-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-list div {
  background: rgba(255,255,255,0.1);
  padding: 22px;
  border-radius: 18px;
}

.about-list strong {
  display: block;
  font-size: 34px;
  color: var(--gold);
}

.about-list span {
  color: var(--white);
}

.testimonial-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.testimonial-box,
.faq-box {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 14px 34px rgba(8, 44, 102, 0.06);
}

.testimonial {
  margin-top: 28px;
  background: var(--soft-blue);
  padding: 26px;
  border-radius: 18px;
}

.testimonial p {
  color: #344054;
  margin-bottom: 20px;
}

.testimonial span {
  color: var(--muted);
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item button {
  width: 100%;
  border: none;
  background: transparent;
  padding: 20px 0;
  text-align: left;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-item button::after {
  content: "+";
  color: var(--gold);
  font-size: 24px;
}

.faq-item.active button::after {
  content: "-";
}

.faq-item p {
  display: none;
  color: var(--muted);
  padding-bottom: 18px;
}

.faq-item.active p {
  display: block;
}

.contact-section {
  padding: 70px 7%;
  background:
    linear-gradient(90deg, rgba(8,44,102,0.96), rgba(8,44,102,0.84)),
    url("https://images.unsplash.com/photo-1555400038-63f5ba517a47?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.contact-section h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-info div {
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 20px;
}

.contact-info strong {
  display: block;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info p {
  color: rgba(255,255,255,0.84);
}

.footer {
  padding: 34px 7%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer strong {
  color: var(--navy);
}

.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  font-size: 26px;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
  z-index: 900;
}

@media (max-width: 1080px) {
  .cards-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content,
  .process-section,
  .testimonial-faq,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 84px;
    left: 7%;
    right: 7%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero-content {
    padding-top: 60px;
  }

  .consult-card {
    padding: 24px;
  }

  .trust-row {
    gap: 16px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .header {
    padding: 14px 5%;
  }

  .section,
  .hero-content,
  .contact-section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .cards-grid,
  .process-steps,
  .about-list,
  .contact-info {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .testimonial-box,
  .faq-box,
  .about-card {
    padding: 26px;
  }
}
