:root {
  --primary: #1e4b93;
  --primary-deep: #12336b;
  --accent: #e1a01c;
  --accent-soft: #f3c55f;
  --bg: #f7f8fc;
  --text: #13233d;
  --muted: #5d6980;
  --white: #ffffff;
  --card: rgba(255, 255, 255, 0.9);
  --shadow: 0 20px 45px rgba(18, 51, 107, 0.16);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(30, 75, 147, 0.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.brand-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mini img { width: 42px; }
.brand-mini span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-deep);
}
.lang-toggle {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--primary-deep);
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(18, 51, 107, 0.92), rgba(30, 75, 147, 0.84)),
    url('assets/gallery1.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(225,160,28,0.35), transparent 28%), radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 22%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 72px;
}
.eyebrow, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary-deep);
  background: rgba(255,255,255,0.88);
}
.hero-copy h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin: 18px 0 18px;
  color: var(--white);
}
.hero-copy p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
  max-width: 720px;
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--primary-deep);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.full { width: 100%; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card img {
  border-radius: 20px;
  width: 100%;
}
.section {
  padding: 92px 0;
}
.logos-strip {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid rgba(30, 75, 147, 0.08);
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 24px;
}
.logo {
  max-height: 88px;
  object-fit: contain;
  margin: 0 auto;
}
.logo.rotary { max-height: 78px; }
.two-col,
.highlight-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  align-items: start;
}
.section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 14px 0 18px;
  line-height: 1.1;
}
.section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}
.info-panel,
.form-card,
.cta-box,
.card,
.highlight-image,
.contact-details {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 75, 147, 0.08);
}
.info-panel { padding: 28px; }
.info-item + .info-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 75, 147, 0.08);
}
.info-item h3, .card h3, .form-card h3 {
  margin: 0 0 8px;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-deep);
}
.info-item a { color: var(--primary); word-break: break-all; }
.highlight { background: linear-gradient(135deg, rgba(30,75,147,0.06), rgba(225,160,28,0.12)); padding: 18px; border-radius: 18px; }
.section-head { max-width: 780px; margin-bottom: 28px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card { padding: 28px; }
.price-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}
.price-card h3, .price-card p, .price-card strong { color: var(--white); }
.event-highlight { background: linear-gradient(180deg, #fff 0%, #f7f9ff 100%); }
.highlight-copy .mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.mini-stats div {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.mini-stats strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
  color: var(--primary-deep);
}
.mini-stats span { color: var(--muted); line-height: 1.6; }
.highlight-image { padding: 16px; }
.highlight-image img { border-radius: 18px; width: 100%; height: 100%; object-fit: cover; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.video-card {
  background: #000;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}
.cta-box {
  padding: 34px;
  background: linear-gradient(135deg, rgba(18,51,107,0.98), rgba(30,75,147,0.92));
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 30px;
}
.cta-box h2, .cta-box p { color: var(--white); }
.contact-details,
.form-card { padding: 30px; }
.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.contact-details li {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-details a { color: var(--primary); font-weight: 600; }
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--primary-deep);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(30, 75, 147, 0.14);
  background: #fff;
}
.form-note {
  margin-top: 12px;
  font-size: 0.92rem;
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.36);
  z-index: 60;
}
.floating-whatsapp svg {
  width: 33px;
  fill: #fff;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 28, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 70;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}
.site-footer {
  padding: 26px 0 40px;
  background: #0e2146;
}
.footer-inner {
  text-align: center;
}
.site-footer p,
.site-footer a { color: rgba(255,255,255,0.9); }
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .highlight-grid,
  .contact-grid,
  .cta-box,
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-grid { padding: 34px 0 54px; gap: 28px; }
  .brand-mini span { font-size: .84rem; }
  .logos-grid,
  .videos-grid,
  .gallery-grid,
  .highlight-copy .mini-stats { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .gallery-item img { height: 240px; }
  .cta-box { padding: 28px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 22px, 1180px); }
  .topbar-inner { padding: 10px 0; }
  .brand-mini img { width: 34px; }
  .lang-toggle { padding: 10px 12px; }
  .hero-copy p,
  .section p { font-size: .98rem; }
  .gallery-item img { height: 210px; }
  .floating-whatsapp { width: 58px; height: 58px; }
}
