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

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #11144a;
  background: #fff;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo span { color: #263ee8; }

nav {
  display: flex;
  gap: 28px;
  font-weight: 700;
}

nav a:hover { color: #263ee8; }

.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
}

.hero {
  background: linear-gradient(135deg, #f7f8ff 0%, #e9ecff 100%);
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  align-items: center;
}

.eyebrow {
  color: #263ee8;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 22px;
}

h1 span { color: #263ee8; }

.lead {
  font-size: 19px;
  max-width: 650px;
  color: #44476a;
  margin-bottom: 28px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
}

.primary {
  background: #263ee8;
  color: white;
}

.primary:hover { background: #172bb8; }

.outline {
  border: 2px solid #263ee8;
  color: #263ee8;
  background: white;
}

.location { font-size: 14px; color: #555; }

.hero-card {
  background: white;
  padding: 10px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(24,39,150,.18);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 17px;
}

.section { padding: 85px 0; }

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

.section-heading h2, .about-grid h2, .contact-grid h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 12px;
}

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

.service-card {
  padding: 25px;
  border-radius: 16px;
  background: white;
  border: 1px solid #e5e7f7;
  box-shadow: 0 8px 25px rgba(20,25,80,.07);
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(20,25,80,.13);
}

.icon { font-size: 32px; margin-bottom: 12px; }

.service-card h3 { margin-bottom: 8px; }
.service-card p { color: #666; font-size: 14px; }

.dark {
  background: #11144a;
  color: white;
}

.dark .eyebrow { color: #9da9ff; }
.dark p { color: #d9dcf2; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.about-box {
  border: 1px solid #454b91;
  border-radius: 22px;
  padding: 45px 30px;
  text-align: center;
  background: #191d5c;
}

.about-box strong {
  display: block;
  font-size: 40px;
}

.about-box span {
  color: #9da9ff;
  font-size: 28px;
  font-weight: 800;
}

.about-box p { margin-top: 20px; }

.gallery {
  max-width: 600px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.gallery img { width: 100%; display: block; }


.gallery-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.add-photo-btn,
.clear-gallery-btn {
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: .2s;
}

.add-photo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #263ee8;
  color: white;
}

.add-photo-btn:hover { background: #172bb8; transform: translateY(-2px); }

.camera-icon {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 7px;
  font-size: 20px;
  line-height: 1;
}

.clear-gallery-btn {
  background: white;
  border: 1px solid #d8daf0;
  color: #333;
}

.clear-gallery-btn:hover {
  border-color: #263ee8;
  color: #263ee8;
}

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

.gallery-item {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #eef0ff;
  box-shadow: 0 8px 25px rgba(20,25,80,.10);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-note {
  text-align: center;
  color: #777;
  font-size: 13px;
  margin-top: 16px;
}

@media (max-width: 650px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 430px) {
  .gallery-grid { grid-template-columns: 1fr; }
}


.official-section { background: #f6f7ff; }

.official-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: auto;
}

.official-card {
  display: grid;
  grid-template-columns: 50px 1fr 25px;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  background: white;
  border: 1px solid #e0e2f2;
  box-shadow: 0 8px 25px rgba(20,25,80,.07);
  transition: .2s;
}

.official-card:hover {
  transform: translateY(-4px);
  border-color: #263ee8;
}

.official-icon { font-size: 28px; }

.official-card strong, .official-card small { display: block; }
.official-card small { color: #777; margin-top: 3px; }
.official-card > span:last-child { color: #263ee8; font-size: 20px; }

.official-note {
  max-width: 850px;
  margin: 25px auto 0;
  text-align: center;
  color: #777;
  font-size: 13px;
}

.account-section { background: #fff; }

.account-shell {
  width: min(560px, 100%);
  margin: auto;
  background: #f7f8ff;
  border: 1px solid #e1e3f3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(20,25,80,.08);
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #eceeff;
}

.account-tab {
  border: 0;
  padding: 14px 8px;
  font-weight: 800;
  cursor: pointer;
  color: #444;
  background: transparent;
}

.account-tab.active {
  color: white;
  background: #263ee8;
}

.account-panel { display: none; padding: 30px; }
.account-panel.active { display: block; }
.account-panel h3 { margin-bottom: 18px; font-size: 24px; }

.account-panel form {
  display: grid;
  gap: 12px;
}

.account-panel input {
  width: 100%;
  border: 1px solid #d5d8ed;
  border-radius: 9px;
  padding: 13px;
  font: inherit;
}

.account-message {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 700;
}

.small-note { color: #777; font-size: 13px; margin-bottom: 15px; }

.dashboard-panel .profile-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.admin-note {
  max-width: 760px;
  margin: 25px auto 0;
  padding: 16px 18px;
  background: #fff8df;
  border: 1px solid #f1df8c;
  border-radius: 10px;
  color: #5d4e00;
  font-size: 13px;
}

@media (max-width: 650px) {
  .official-grid { grid-template-columns: 1fr; }
  .account-tabs { grid-template-columns: 1fr; }
  .account-tab { border-bottom: 1px solid #d8daf0; }
}

.contact-section { background: #f6f7ff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: start;
}

.contact-list { margin-top: 25px; }
.contact-list p { margin-bottom: 14px; }
.contact-list a { color: #263ee8; font-weight: 700; }

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(20,25,80,.1);
}

.contact-form h3 { margin-bottom: 18px; font-size: 24px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8daf0;
  border-radius: 9px;
  padding: 13px;
  margin-bottom: 13px;
  font: inherit;
}

.contact-form textarea { resize: vertical; }

.contact-form button { width: 100%; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #19b85a;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
  z-index: 99;
}

footer {
  background: #090b35;
  color: #d9dcf2;
  padding: 22px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 55px 0; }
}

@media (max-width: 650px) {
  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 5%;
    flex-direction: column;
    gap: 15px;
  }

  nav.open { display: flex; }
  .menu-btn { display: block; }
  .service-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .footer-content { flex-direction: column; }
}
