:root {
  --navy: #073554;
  --navy-900: #04243b;
  --blue: #0d6297;
  --pale: #f4f9fd;
  --gold: #c79b5c;
  --gold-2: #c79b5c;
  --green: #21a567;
  --ink: #0d2740;
  --muted: #5d7186;
  --line: #d9e6ef;
  --surface: #ffffff;
  --shadow: 0 22px 60px rgba(7, 53, 84, 0.14);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  opacity: 0;
  animation: pageIn 420ms ease forwards;
}

@keyframes pageIn { to { opacity: 1; } }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(4, 36, 59, 0.98);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 190px;
  height: 68px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a {
  padding: 10px 0;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav a:focus-visible {
  color: var(--gold-2);
}

.header-actions,
.hero-actions,
.final-actions,
.center-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-header .header-actions {
  flex-wrap: nowrap;
  gap: 10px;
}

.site-header .btn {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 14px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 13px 22px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-gold {
  color: #11253a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 34px rgba(224,167,61,0.32);
}

.btn-whatsapp {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(33,165,103,0.24);
}

.btn-light {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(7,53,84,0.14);
  box-shadow: 0 12px 28px rgba(7,53,84,0.08);
}

.btn-large { min-height: 56px; padding-inline: 28px; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  padding: 92px 0 104px;
  background:
    linear-gradient(90deg, rgba(4,36,59,0.96) 0%, rgba(4,36,59,0.84) 42%, rgba(7,53,84,0.58) 72%, rgba(7,53,84,0.36) 100%),
    linear-gradient(180deg, rgba(4,36,59,0.18), rgba(4,36,59,0.72)),
    url("assets/visa-counselling.png") center / cover no-repeat;
  color: #fff;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(4,36,59,0.32));
  pointer-events: none;
}

.float-shape {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(245,199,101,0.54);
  border-radius: 38% 62% 70% 30%;
  animation: float 7s ease-in-out infinite;
}

.shape-one { width: 230px; height: 230px; right: 9%; top: 92px; opacity: 0.75; }
.shape-two { width: 120px; height: 120px; left: 6%; bottom: 56px; animation-delay: -2s; opacity: 0.58; }
@keyframes float { 50% { transform: translateY(-14px) rotate(3deg); } }

.hero-float-icon {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 900;
  animation: float 7.5s ease-in-out infinite;
}

.hero-float-icon svg,
.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-passport { left: 50%; top: 15%; }
.icon-visa { right: 4%; top: 30%; animation-delay: -1.4s; }
.icon-student { left: 43%; bottom: 8%; animation-delay: -2.6s; }
.icon-flight { right: 28%; bottom: 12%; animation-delay: -4s; }

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  gap: 56px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(50px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 780px;
  color: #fff;
  text-shadow: 0 16px 42px rgba(0,0,0,0.22);
}

.hero-copy h1 span {
  color: var(--gold-2);
}

.hero-copy p,
.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #31506a;
  font-size: clamp(19px, 2vw, 23px);
}

.hero-copy p {
  color: rgba(255,255,255,0.86);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.badge-list span {
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  backdrop-filter: blur(14px);
}

.call-link {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.hero-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 28px 80px rgba(0,0,0,0.26);
  backdrop-filter: blur(22px);
}

.media-card img,
.band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.media-card:hover img,
.band-image:hover img {
  transform: scale(1.04);
}

.inquiry-form {
  padding: 30px;
  background: rgba(255,255,255,0.84);
}

.inquiry-form h2,
.contact-info h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.12;
}

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

.form-grid .full { grid-column: 1 / -1; }

.inquiry-form label {
  display: grid;
  gap: 7px;
}

.inquiry-form span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  font-size: 16px;
}

.inquiry-form textarea { resize: vertical; }

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(13,98,151,0.12);
}

.inquiry-form .field-error { border-color: #c84545; }
.btn-submit { width: 100%; margin-top: 18px; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--blue); font-weight: 900; }

.home-hero .btn-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
  box-shadow: 0 16px 32px rgba(0,0,0,0.16);
  backdrop-filter: blur(14px);
}

.section { padding: 96px 0; }
.section-soft { background: var(--pale); }

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

.section-heading h2,
.content-panel h2,
.feature-block h2,
.final-cta h2,
.map-placeholder h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
}

.section-heading p,
.content-panel p,
.feature-block p,
.final-cta p,
.map-placeholder p,
.contact-info p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.card-grid,
.trust-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.eight-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.four-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.service-card,
.trust-card,
.feature-card,
.feature-block {
  display: block;
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(7,53,84,0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust-icon,
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 26px rgba(199,155,92,0.26);
}

.trust-icon svg,
.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover,
.trust-card:hover,
.feature-card:hover,
.feature-block:hover {
  transform: translateY(-5px);
  border-color: rgba(224,167,61,0.55);
  box-shadow: 0 24px 55px rgba(7,53,84,0.13);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--navy);
  background: linear-gradient(135deg, #eef7fe, #fff8e7);
  border: 1px solid rgba(224,167,61,0.48);
  color: var(--navy);
}

.service-card h3,
.trust-card h3,
.feature-card h2,
.feature-block h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.service-card p,
.trust-card p,
.feature-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.service-band {
  background:
    linear-gradient(90deg, rgba(4,36,59,0.96), rgba(7,53,84,0.9)),
    url("assets/student-visa-travel.png") center / cover no-repeat;
  color: #fff;
}

.band-grid,
.split-layout,
.contact-grid,
.final-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.band-copy h2,
.band-copy p { color: #fff; }

.band-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
}

.band-copy p {
  margin: 18px 0 28px;
  font-size: 20px;
}

.band-image,
.media-card {
  height: 420px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-block a {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 900;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(13,98,151,0.32));
}

.process-timeline li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.process-timeline span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  border: 4px solid var(--gold);
  font-size: 24px;
  font-weight: 900;
}

.process-timeline strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.stats-strip {
  padding: 46px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--navy));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stat {
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--gold-2);
  font-size: 48px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7,53,84,0.06);
}

.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.faq-list details[open] summary::after { content: "-"; }
.faq-list p { margin: 0; padding: 0 24px 24px; color: var(--muted); font-size: 16px; }
.center-actions { justify-content: center; margin-top: 32px; }

.final-cta {
  padding: 78px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4,36,59,0.98), rgba(7,53,84,0.9)),
    url("assets/visa-counselling.png") center / cover no-repeat;
}

.final-cta h2,
.final-cta p { color: #fff; }
.final-actions { justify-content: flex-end; }

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 86px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4,36,59,0.98), rgba(7,53,84,0.82), rgba(7,53,84,0.2)),
    url("assets/visa-counselling.png") center / cover no-repeat;
}

.image-about { background-image: linear-gradient(90deg, rgba(4,36,59,0.98), rgba(7,53,84,0.82), rgba(7,53,84,0.2)), url("assets/visa-counselling.png"); }
.image-student { background-image: linear-gradient(90deg, rgba(4,36,59,0.98), rgba(7,53,84,0.82), rgba(7,53,84,0.18)), url("assets/student-visa-travel.png"); }
.image-immigration { background-image: linear-gradient(90deg, rgba(4,36,59,0.98), rgba(7,53,84,0.82), rgba(7,53,84,0.18)), url("assets/visa-counselling.png"); }
.image-investor { background-image: linear-gradient(90deg, rgba(4,36,59,0.98), rgba(7,53,84,0.82), rgba(7,53,84,0.18)), url("assets/investor-visa-business.png"); }
.image-mbbs { background-image: linear-gradient(90deg, rgba(4,36,59,0.98), rgba(7,53,84,0.82), rgba(7,53,84,0.18)), url("assets/mbbs-italy-students.png"); }
.image-contact { background-image: linear-gradient(90deg, rgba(4,36,59,0.98), rgba(7,53,84,0.82), rgba(7,53,84,0.18)), url("assets/visa-counselling.png"); }

.page-hero h1,
.page-hero p { color: #fff; }
.breadcrumb { display: block; margin-bottom: 16px; color: var(--gold-2); font-size: 15px; font-weight: 900; }
.content-panel { padding: 12px 0; }

.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card { min-height: 260px; }

.check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.check-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7,53,84,0.06);
}

.check-grid span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.disclaimer {
  margin: 34px auto 0;
  max-width: 980px;
  padding: 22px 26px;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: var(--pale);
  color: var(--muted);
  font-size: 17px;
}

.investor-intro .content-panel {
  border-left: 5px solid var(--gold);
  padding-left: 28px;
}

.contact-grid { align-items: start; }
.contact-info {
  padding: 36px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--navy));
  box-shadow: var(--shadow);
}

.contact-info h2 { color: #fff; }
.contact-info a {
  display: block;
  margin: 14px 0;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.contact-info p { color: rgba(255,255,255,0.78); }
.contact-form { border-radius: 22px; box-shadow: var(--shadow); }

.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.86)),
    repeating-linear-gradient(0deg, #dfeaf2 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, #dfeaf2 0 1px, transparent 1px 42px);
  text-align: center;
}

.site-footer {
  padding: 58px 0 26px;
  color: rgba(255,255,255,0.78);
  background: var(--navy-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 50px;
}

.site-footer img {
  width: 172px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 20px;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
}

.site-footer a:hover { color: var(--gold-2); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
}

.reveal,
.reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-hero { animation: heroReveal 700ms ease forwards; }
.reveal-hero:nth-child(2) { animation-delay: 120ms; }
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body, .float-shape, .reveal, .reveal-hero { animation: none; opacity: 1; transform: none; transition: none; }
  .btn, .service-card, .trust-card, .feature-card, .feature-block, img { transition: none; }
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle { display: block; justify-self: end; }
  .site-nav,
  .header-actions { grid-column: 1 / -1; display: none; }
  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions { display: flex; }
  .site-nav { flex-wrap: wrap; justify-content: flex-start; }
  .hero-layout,
  .band-grid,
  .split-layout,
  .contact-grid,
  .final-layout { grid-template-columns: 1fr; }
  .hero-card { max-width: 720px; }
  .eight-grid,
  .four-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); row-gap: 28px; }
  .process-timeline::before { display: none; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--max)); }
  .site-header { padding: 14px; min-height: 90px; }
  .brand img { width: 168px; height: 62px; }
  .home-hero { padding: 48px 0 62px; }
  .hero-float-icon { display: none; }
  .hero-copy h1,
  .page-hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-copy p,
  .page-hero p { font-size: 18px; }
  .hero-copy {
    display: flex;
    flex-direction: column;
  }
  .hero-copy .hero-actions { order: 3; }
  .hero-copy .badge-list { order: 4; }
  .badge-list span { width: 100%; }
  .hero-actions,
  .final-actions,
  .site-header.is-open .header-actions,
  .site-header.is-open .site-nav { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .final-actions .btn,
  .hero-actions .call-link { width: 100%; text-align: center; }
  .form-grid,
  .card-grid,
  .trust-grid,
  .feature-grid,
  .three-column,
  .stats-grid,
  .faq-list,
  .check-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero-photo { height: 190px; }
  .band-image,
  .media-card { height: 310px; }
  .process-timeline { grid-template-columns: 1fr; }
  .process-timeline li { grid-template-columns: 72px 1fr; align-items: center; justify-items: start; text-align: left; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .page-hero { min-height: 340px; padding: 62px 0; }
  .inquiry-form { padding: 22px; }
  .service-card,
  .trust-card,
  .feature-card,
  .feature-block { min-height: auto; padding: 24px; }
  .contact-info { padding: 26px; }
}
