/* =========================
   RESET & VARIABLES
========================= */
:root {
  --primary: #0b3c5d;
  --accent: #ff7a00;
  --light: #f4f7fb;
  --dark: #1f2d3d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

/* =========================
   TOP BAR
========================= */
.topbar {
  background: #111;
  color: #fff;
  font-size: 13px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

/* =========================
   HEADER (DESKTOP FIRST)
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 3px solid var(--primary);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

/* LOGO */
.logo img {
  height: 80px;
}

/* =========================
   DESKTOP NAVIGATION
========================= */
.mobile-nav {
  display: block;
}

.menu {
  list-style: none;
  display: flex;
  gap: 24px;
}

.menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

/* DROPDOWN (DESKTOP) */
.dropdown {
  position: relative;
}

.dropdown ul {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 250px;
  background: #fff;
  list-style: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  display: none;
}

.dropdown ul a {
  display: block;
  padding: 10px 14px;
}

.dropdown:hover ul {
  display: block;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 15px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #000;
  margin: 5px 0;
  transition: .3s;
}

/* Hamburger → X */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: var(--light);
  padding: 40px 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.hero-box {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  height: 100%;
}

.hero-box h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.hero-list {
  list-style: none;
}

.hero-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #ccc;
  font-size: 14px;
}

/* SLIDER */
/* HERO SLIDER CONTAINER */
.hero-slider {
  position: relative;
  width: 100%;
  height: 380px;              /* IMPORTANT */
  overflow: hidden;
  border-radius: 12px;
}

/* ALL SLIDES */
.hero-slider .slide {
  position: absolute;        /* STACK IMAGES */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         /* FIT IMAGE PROPERLY */
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* ACTIVE SLIDE */
.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-slider {
    height: 220px;
  }
}

/* FORM */
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form input,
.form select,
.form button {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.form button {
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
}

/* =========================
   ANNOUNCEMENT BAR
========================= */
/* ANNOUNCEMENT BAR */
.announcement-bar {
  display: flex;
  align-items: center;
  background: #0b3c5d;
  color: #fff;
  height: 30px;
  overflow: hidden;
  font-size: 14px;
}

/* FIXED LABEL */
.announcement-label {
  white-space: nowrap;
  padding: 0 16px;
  font-weight: 600;
  flex-shrink: 0;
}

/* SLIDING AREA */
.announcement-track {
  position: relative;
  overflow: hidden;
  flex: 1;
}

/* MOVING TEXT */
.announcement-text {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: slideText 18s linear infinite;
}

/* ANIMATION */
@keyframes slideText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* =========================
   SERVICE SECTION
========================= */
.service-section {
  padding: 30px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: linear-gradient(to bottom, #f8fcff, #eaf4ff);
  padding: 32px 22px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
  background: #fff;
}

.service-card h4 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card a {
  font-size: 16px;
  text-decoration: none;
  color: var(--primary);
}

.service-card a::before {
  content: "▶ ";
  font-size: 10px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid > :last-child {
    grid-column: 1 / -1;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE (CLEAN & FIXED)
========================= */
@media (max-width: 768px) {

  .topbar .wrap {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* HEADER */
  .hamburger {
    display: block;
  }

  .mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid #ddd;
  }

  .mobile-nav.active {
    display: block;
  }

  .menu {
    flex-direction: column;
  }

  .menu li {
    border-bottom: 1px solid #eee;
  }

  .menu a {
    padding: 14px 18px;
    display: block;
  }

  .dropdown ul {
    position: static;
    display: none;
    box-shadow: none;
    background: #f4f7fb;
  }

  .dropdown.open ul {
    display: block;
  }

  /* HERO */
  .hero-grid {
    grid-template-columns: 1fr;
  }

  /* SERVICES */
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .icon-circle {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}
/* ================= MOBILE MENU FIX ================= */
@media (max-width: 768px) {

/* MOBILE NAV PANEL – NO GAP */
  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
  }

  .mobile-nav.active {
    display: block;
  }

  /* REMOVE ALL DEFAULT GAPS */
  .menu {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
  }

  .menu a {
    margin: 0;
    padding: 12px 16px;   /* compact height */
    line-height: 1.2;
    display: block;
  }

  /* SERVICES SUBMENU – NO GAP */
  .dropdown ul {
    margin: 0;
    padding: 0;
    background: #f4f7fb;
    display: none;
  }

  .dropdown ul li {
    border-bottom: 1px solid #e2e6ea;
  }

  .dropdown ul a {
    padding: 10px 24px;  /* slightly indented, still compact */
    font-size: 14px;
  }

  .dropdown.open ul {
    display: block;
  }
}
/* ===== DESKTOP DROPDOWN FIX ===== */
@media (min-width: 769px) {

  .menu {
    display: flex;
    align-items: center;
  }

  .menu li {
    position: relative;
  }

  /* HOVER TARGET MUST BE li */
  .menu li.dropdown:hover > ul {
    display: block;
  }

  /* SUBMENU */
  .menu li ul {
    display: none;
    position: absolute;
    top: 100%;           /* exactly below parent */
    left: 0;
    min-width: 200px;
    background: #ffffff;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 999;
  }

  /* REMOVE GAP */
  .menu li ul li {
    white-space: nowrap;
  }

  .menu li ul a {
    padding: 12px 16px;
    display: block;
  }

  /* KEEP HOVER ACTIVE */
  .menu li.dropdown > a {
    padding-bottom: 16px;
  }
}
/* WHY APPLY THROUGH US */
.why-us {
  padding: 60px 20px;
  background: #ffffff;
}

.why-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #2f3542;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  text-align: center;
}

/* ITEM */
.why-item {
  padding: 10px 20px;
}

.why-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.why-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.why-item strong {
  font-size: 20px;
  color: #0b3c5d;
}

/* HIGHLIGHT NUMBER */
.why-icon.highlight {
  font-size: 44px;
  font-weight: 700;
  color: #5a67d8;
}

/* TABLET */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .why-title {
    font-size: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-icon {
    font-size: 42px;
  }
}
/* =========================
   FOOTER BASE
========================= */
.site-footer {
  background: #d7e2e4;
  color: #1f2d3d;
  border-top: 1px solid #e5e9f0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* =========================
   FOOTER CONTAINER
========================= */
.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 50px 20px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* =========================
   LOGO + TEXT
========================= */
.footer-logo {
  max-width: 200px;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #44566c;
  max-width: 360px;
  margin-bottom: 18px;
}

/* =========================
   SOCIAL ICONS
========================= */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 8px;
  border-radius: 6px;
  background: #f1f5f9;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: #e2e8f0;
}

/* =========================
   COLUMN HEADINGS
========================= */
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0b3c5d;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 32px;
  height: 3px;
  background: #0b3c5d;
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 2px;
}

/* =========================
   FOOTER TEXT BLOCKS
========================= */
.footer-col p {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 10px;
}

/* ICON ALIGNMENT INSIDE TEXT */
.footer-col p span {
  display: inline-block;
  width: 20px;
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom {
  background: #0b3c5d;
  color: #ffffff;
  font-size: 13px;
  padding: 14px 10px;
  text-align: center;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 8px;
  white-space: nowrap;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-text {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

}
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b3c5d;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: #0b3c5d;
  color: #ffffff;
}
/* HERO HEADLINE */
.hero-headline {
  text-align: center;
  padding: 18px 18px 20px;
}

.hero-headline h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #0b3c5d;
  line-height: 1.3;
  margin: 0;
}

.hero-headline h1 span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #475569;
  margin-top: 6px;
}

/* TABLET */
@media (max-width: 992px) {
  .hero-headline h1 {
    font-size: 28px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .hero-headline h1 {
    font-size: 22px;
  }

  .hero-headline h1 span {
    font-size: 15px;
  }
}
/* WELCOME SECTION */
.welcome-section {
  background: #ffffff;
  padding: 50px 20px;
}

.welcome-container {
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.welcome-container h2 {
  font-size: 35px;
  font-weight: 700;
  color: #0b3c5d;
  margin-bottom: 14px;
}

/* MAIN TEXT */
.welcome-text {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 10px;
}

/* SUB TEXT */
.welcome-subtext {
  font-size: 14.5px;
  color: #475569;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .welcome-container h2 {
    font-size: 24px;
  }

  .welcome-text {
    font-size: 14.5px;
  }
}
.welcome-container h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #0b3c5d;
  margin: 10px auto 0;
  border-radius: 2px;
}
/* MODERN SERVICES BOX */
.services-box h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #0b3c5d;
  border-bottom: 2px solid #e5e9f0;
  padding-bottom: 8px;
}

/* SERVICES LIST */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  margin-bottom: 10px;
}

.services-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #f8fafc;
  text-decoration: none;
  color: #1f2d3d;
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.25s ease;
  box-shadow: inset 0 0 0 1px #e5e9f0;
}

/* ICON */
.svc-icon {
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

/* HOVER EFFECT */
.services-list a:hover {
  background: #0b3c5d;
  color: #ffffff;
  transform: translateX(4px);
}

.services-list a:hover .svc-icon {
  background: #ffffff;
}
/* ENQUIRY BOX */
.enquiry-box h3 {
  font-size: 18px;
  color: #0b3c5d;
  margin-bottom: 4px;
}

.enquiry-sub {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 16px;
}

/* FORM */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* INPUT GROUP */
.input-group {
  position: relative;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border-radius: 8px;
  border: 1px solid #dbe3ec;
  font-size: 14px;
  outline: none;
  background: #f8fafc;
  transition: border 0.2s ease, background 0.2s ease;
}

/* ICON */
.input-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.7;
}

/* FOCUS */
.input-group input:focus,
.input-group select:focus {
  border-color: #0b3c5d;
  background: #ffffff;
}

/* BUTTON */
.enquiry-btn {
  margin-top: 6px;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b3c5d, #145374);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* BUTTON HOVER */
.enquiry-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(11,60,93,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .enquiry-sub {
    text-align: center;
  }
}
/* PAY NOW – DESKTOP */
@media (min-width: 769px) {
  .pay-menu-item {
    margin-left: 12px;
  }

  .pay-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff7a00, #ff9a3c);
    color: #fff !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255,122,0,.35);
  }

  .pay-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255,122,0,.45);
  }
}
/* PAY NOW – MOBILE MENU */
@media (max-width: 768px) {
  .pay-menu-item {
    padding: 12px 16px;
  }

  .pay-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, #ff7a00, #ff9a3c);
    color: #fff !important;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
  }
}
/* FOOTER SERVICE LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links a::before {
  content: "›";
  margin-right: 6px;
  color: #0b3c5d;
}

.footer-links a:hover {
  color: #0b3c5d;
  padding-left: 6px;
}
/* WHATSAPP FLOAT BUTTON */
.wa-float {
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 56px;
  height: 56px;
  background: #25D366; /* WhatsApp official green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  z-index: 9999;
}

/* ICON */
.wa-icon {
  width: 28px;
  height: 28px;
}

/* PULSE EFFECT (SAME AS EARLIER CHAT, CLEAN) */
.wa-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* HOVER */
.wa-float:hover {
  transform: scale(1.06);
}

/* MOBILE SAFE */
@media (max-width: 768px) {
  .wa-float {
    width: 54px;
    height: 54px;
  }

  .wa-icon {
    width: 26px;
    height: 26px;
  }
}
/* =========================
   CONTACT PAGE
========================= */

.service-hero {
  background: linear-gradient(135deg, #0b3c5d, #0e567d);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.service-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.service-hero p {
  font-size: 16px;
  opacity: 0.9;
}

.contact-section {
  padding: 60px 20px;
  background: #f6f9fc;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2,
.contact-form-box h2 {
  color: #0b3c5d;
  margin-bottom: 15px;
}

.contact-info p {
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 15px;
  font-size: 15px;
  color: #1f2d3d;
}

.contact-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form button {
  background: #0b3c5d;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #08324d;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .service-hero h1 {
    font-size: 26px;
  }
}
/* =========================
   CONTACT SOCIAL ICONS
========================= */

.contact-social {
  margin-top: 25px;
  display: flex;
  gap: 14px;
}

.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0b3c5d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: #ff7a00;
  transform: translateY(-4px);
}

/* MOBILE CENTER */
@media (max-width: 768px) {
  .contact-social {
    justify-content: center;
  }
}
/* =========================
   THANK YOU PAGE
========================= */
.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f7fb;
  padding: 40px 20px;
}

.thanks-box {
  background: #fff;
  max-width: 480px;
  width: 100%;
  padding: 35px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.success-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: #16a34a;
  color: #fff;
  font-size: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-box h2 {
  color: #0b3c5d;
  margin-bottom: 8px;
}

.thanks-details {
  margin: 18px 0;
  font-size: 15px;
  color: #334155;
}

.thanks-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.thanks-actions a {
  flex: 1;
  padding: 12px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.btn-pay {
  background: #0b3c5d;
  color: #fff;
}

.btn-home {
  background: #e2e8f0;
  color: #0b3c5d;
}

/* MOBILE */
@media (max-width: 480px) {
  .thanks-actions {
    flex-direction: column;
  }
}
