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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #ffffff;
  color: #14171a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

section[id] {
  scroll-margin-top: 92px;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.hero {
  position: relative;
  background-color: #3d7de0;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  padding-top: 92px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 48px;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(42, 100, 198, 0.92);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  box-shadow: 0 8px 30px rgba(15, 40, 90, 0.18);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
}

.logo-icon {
  width: 26px;
  height: 26px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.14);
}

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

.btn-book {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 13px 27px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-book:hover {
  background: #ffffff;
  color: #2e6fd8;
}

.btn-book:active {
  transform: scale(0.96);
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.menu-btn svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #2a64c6;
  box-shadow: 0 20px 40px rgba(15, 40, 90, 0.25);
  flex-direction: column;
  padding: 10px 20px 18px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.hero-content {
  text-align: center;
  padding-top: 52px;
}

.hero-title {
  color: #ffffff;
  font-size: 62px;
  font-weight: 500;
  line-height: 1.17;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 400;
  margin-top: 24px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #2e6fd8;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  padding: 16px 26px;
  margin-top: 38px;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.btn-cta:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta:active {
  transform: scale(0.97);
}

.btn-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.btn-cta:hover svg {
  transform: translate(2px, -2px);
}

.laptop {
  width: min(760px, 88vw);
  margin: 44px auto 0;
  position: relative;
  z-index: 2;
}

.laptop-frame {
  background: #0e0e10;
  border-radius: 24px 24px 0 0;
  padding: 11px 11px 0;
  position: relative;
}

.laptop-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 124px;
  height: 20px;
  background: #0e0e10;
  border-radius: 0 0 10px 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2e2e33;
}

.laptop-screen {
  position: relative;
  aspect-ratio: 12 / 7;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  animation: pulse-ring 2.2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.65); opacity: 0; }
}

.play-btn:active {
  transform: translate(-50%, -50%) scale(0.94);
}

.play-btn svg {
  width: 23px;
  height: 23px;
  color: #4a7fdc;
  fill: currentColor;
  margin-left: 4px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.3px;
}

.section-head p {
  color: #9aa3ab;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
}

.about {
  max-width: 1220px;
  margin: 0 auto;
  padding: 96px 40px 60px;
}

.badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.badge-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.badge-bar {
  width: 3px;
  height: 42px;
  background: #2e6fd8;
  border-radius: 2px;
}

.badge-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aao-mark {
  background: #2464c5;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 9px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.aao-text {
  color: #2464c5;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.aao-text em {
  display: block;
  font-style: normal;
  font-size: 9px;
  font-weight: 500;
}

.abo-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px double #4a7fdc;
  border-radius: 50%;
  color: #4a7fdc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
}

.ada {
  flex-direction: column;
  gap: 3px;
}

.ada-mark {
  color: #2464c5;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
}

.ada-text {
  color: #2464c5;
  font-size: 8.5px;
  font-weight: 500;
}

.badge-more {
  color: #9aa3ab;
  font-size: 18px;
  font-weight: 500;
}

.about-main {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-top: 95px;
}

.photo-card {
  flex-shrink: 0;
  width: 590px;
  height: 480px;
  background: #f5f8f9;
  border-radius: 12px;
  padding: 46px 60px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.about-text h2 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.3px;
}

.about-text h3 {
  font-size: 26px;
  font-weight: 500;
  margin-top: 26px;
}

.about-text p {
  color: #9aa3ab;
  font-size: 15px;
  line-height: 1.65;
  margin-top: 22px;
  max-width: 440px;
}

.btn-story {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #14171a;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #e3e7ea;
  border-radius: 8px;
  padding: 14px 22px;
  margin-top: 34px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.btn-story:hover {
  border-color: #c9d1d8;
}

.btn-story:active {
  transform: scale(0.97);
}

.btn-story svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.btn-story:hover svg {
  transform: translateX(3px);
}

.services {
  padding: 100px 0;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bento-card {
  display: flex;
  flex-direction: column;
  background: #f7fafc;
  border-radius: 18px;
  padding: 34px 30px;
  min-height: 300px;
}

.bento-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #ffffff;
  color: #2e6fd8;
}

.bento-icon svg {
  width: 25px;
  height: 25px;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 22px;
}

.bento-card p {
  color: #9aa3ab;
  font-size: 15px;
  line-height: 1.65;
  margin-top: 10px;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2e6fd8;
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
  padding-top: 22px;
  transition: color 0.2s ease;
}

.bento-link:hover {
  color: #1d4fa3;
}

.bento-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.bento-link:hover svg {
  transform: translateX(4px);
}

.bento-featured {
  grid-column: span 2;
  background-color: #2e6fd8;
  background-image: linear-gradient(135deg, rgba(46, 111, 216, 0.92), rgba(29, 79, 163, 0.94)), url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
}

.bento-featured h3 {
  color: #ffffff;
  font-size: 24px;
}

.bento-featured p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 420px;
}

.bento-featured .bento-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.bento-featured .bento-link {
  color: #ffffff;
}

.bento-featured .bento-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.bento-image {
  grid-column: span 2;
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #0f1d33;
}

.bento-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-overlay {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
  padding: 80px 30px 30px;
  background: linear-gradient(transparent, rgba(8, 18, 38, 0.82));
}

.bento-overlay h3 {
  color: #ffffff;
  margin-top: 0;
}

.bento-overlay p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 420px;
}

.bento-overlay .bento-link {
  color: #ffffff;
  padding-top: 16px;
}

.bento-overlay .bento-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.stats {
  background-color: #3d7de0;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  padding: 78px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat strong {
  display: block;
  color: #ffffff;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -1px;
}

.stat span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-top: 8px;
}

.why {
  padding: 110px 0;
}

.why-main {
  display: flex;
  align-items: center;
  gap: 100px;
}

.why-text {
  flex: 1;
}

.why-text h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.3px;
}

.why-list {
  list-style: none;
  margin-top: 34px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #3c454d;
  padding: 11px 0;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eaf1fd;
  color: #2e6fd8;
}

.check svg {
  width: 14px;
  height: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #2e6fd8;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 16px 26px;
  margin-top: 36px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: #2560bd;
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-primary svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.btn-primary:hover svg {
  transform: translate(2px, -2px);
}

.btn-primary.sent {
  background: #1eb56b;
}

.why-photo {
  flex: 1;
}

.why-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.gallery {
  padding: 0 0 110px;
}

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

.g-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.g-large {
  grid-column: span 2;
  grid-row: span 2;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.g-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 20px 16px;
  background: linear-gradient(transparent, rgba(8, 18, 38, 0.75));
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.team {
  background: #f7fafc;
  padding: 100px 0;
}

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

.team-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 14px 24px;
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  display: block;
}

.team-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 18px;
}

.team-card span {
  display: block;
  color: #9aa3ab;
  font-size: 14px;
  margin-top: 5px;
}

.testimonials {
  padding: 110px 0;
}

.testimonial-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  padding: 34px 30px;
  background: #ffffff;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #e3e7ea;
  border-radius: 50%;
  background: #ffffff;
  color: #14171a;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.slider-btn:hover {
  background: #2e6fd8;
  border-color: #2e6fd8;
  color: #ffffff;
}

.slider-btn:active {
  transform: scale(0.92);
}

.slider-btn svg {
  width: 19px;
  height: 19px;
}

.stars {
  display: flex;
  gap: 4px;
  color: #f5b301;
}

.stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.testimonial-card > p {
  color: #3c454d;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 20px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.t-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.t-author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.t-author span {
  display: block;
  color: #9aa3ab;
  font-size: 13px;
}

.blog {
  padding: 0 0 110px;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.blog-card > img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.blog-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 28px 30px;
}

.blog-meta {
  color: #2e6fd8;
  font-size: 13px;
  font-weight: 600;
}

.blog-body h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 12px;
}

.blog-body p {
  color: #9aa3ab;
  font-size: 14.5px;
  line-height: 1.65;
  margin-top: 10px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  color: #14171a;
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
  padding-top: 18px;
  transition: color 0.2s ease;
}

.blog-link:hover {
  color: #2e6fd8;
}

.blog-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.blog-link:hover svg {
  transform: translateX(4px);
}

.blog-more {
  text-align: center;
  margin-top: 18px;
}

.blog-more .btn-story {
  margin-top: 0;
}

.faq {
  padding: 0 0 110px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list details {
  border-bottom: 1px solid #edf0f2;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 17px;
  font-weight: 600;
  padding: 24px 4px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #2e6fd8;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  color: #9aa3ab;
  font-size: 15px;
  line-height: 1.7;
  padding: 0 4px 24px;
  max-width: 680px;
}

.contact {
  background: #f7fafc;
  padding: 100px 0;
}

.contact-main {
  display: flex;
  gap: 90px;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.3px;
}

.contact-lead {
  color: #9aa3ab;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  color: inherit;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eaf1fd;
  color: #2e6fd8;
  transition: background 0.2s ease, color 0.2s ease;
}

a.info-item:hover .info-icon {
  background: #2e6fd8;
  color: #ffffff;
}

.info-icon svg {
  width: 22px;
  height: 22px;
}

.info-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.info-item div span {
  display: block;
  color: #9aa3ab;
  font-size: 14px;
  margin-top: 3px;
}

.contact-form {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(20, 40, 80, 0.06);
  align-self: flex-start;
}

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

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #14171a;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 15px 17px;
  margin-bottom: 16px;
  outline: none;
  background: #f4f7fa;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #e3e7ea;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #ffffff;
  border-color: #2e6fd8;
  box-shadow: 0 0 0 4px rgba(46, 111, 216, 0.1);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232e6fd8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 46px;
  cursor: pointer;
}

.contact-form select:invalid {
  color: #9aa3ab;
}

#dateInput {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='%232e6fd8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 17px;
  padding-right: 46px;
}

.contact-form ::placeholder {
  color: #9aa3ab;
}

.field {
  margin-bottom: 16px;
}

.field input,
.contact-form .field input[type="date"] {
  margin-bottom: 0;
}

.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #3c454d;
  margin-bottom: 9px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  margin: 4px 0 18px;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox .box {
  position: relative;
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  border: 1.5px solid #d4dade;
  border-radius: 6px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.checkbox .box::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 4.5px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) scale(0);
  transition: transform 0.18s ease;
}

.checkbox input:checked + .box {
  background: #2e6fd8;
  border-color: #2e6fd8;
}

.checkbox input:checked + .box::after {
  transform: rotate(-45deg) scale(1);
}

.checkbox input:focus-visible + .box {
  box-shadow: 0 0 0 3px rgba(46, 111, 216, 0.25);
}

.checkbox-text {
  font-size: 13.5px;
  color: #6b757d;
  line-height: 1.5;
}

.checkbox-text a {
  color: #2e6fd8;
  font-weight: 600;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

.btn-block {
  width: 100%;
  margin-top: 0;
}

.flatpickr-calendar {
  font-family: 'DM Sans', sans-serif;
  border-radius: 16px;
  border: 1px solid #edf0f2;
  box-shadow: 0 18px 50px rgba(20, 40, 80, 0.14);
  padding: 8px 6px 10px;
  width: 326px;
}

.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after {
  display: none;
}

.flatpickr-months {
  padding: 6px 0 4px;
  align-items: center;
}

.flatpickr-months .flatpickr-month {
  color: #14171a;
  height: 36px;
}

.flatpickr-current-month {
  font-size: 15.5px;
  font-weight: 600;
  padding-top: 4px;
}

.flatpickr-current-month .numInputWrapper {
  width: 62px;
}

.flatpickr-current-month input.cur-year {
  font-weight: 600;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  top: 10px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background: #eaf1fd;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 12px;
  height: 12px;
  fill: #2e6fd8;
}

span.flatpickr-weekday {
  color: #9aa3ab;
  font-size: 12px;
  font-weight: 600;
}

.flatpickr-day {
  border-radius: 10px;
  color: #3c454d;
  font-size: 14px;
  border: none;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
  background: #eaf1fd;
  color: #2e6fd8;
}

.flatpickr-day.today {
  border: 1.5px solid #2e6fd8;
  color: #2e6fd8;
}

.flatpickr-day.today:hover {
  background: #eaf1fd;
  color: #2e6fd8;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: #2e6fd8;
  border-color: #2e6fd8;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(46, 111, 216, 0.35);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #c6ced4;
}

.cta-band {
  background-color: #3d7de0;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 96px 40px;
}

.cta-band h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.4px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-top: 16px;
}

.cta-band .btn-cta {
  margin-top: 36px;
}

.footer {
  background: #ffffff;
  padding: 0;
}

.footer-inner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0e1f3c 0%, #0a1628 100%);
  padding-top: 68px;
}

.footer-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  top: -220px;
  right: -140px;
  background: radial-gradient(circle, rgba(61, 125, 224, 0.38), transparent 65%);
  pointer-events: none;
}

.footer-glow-2 {
  top: auto;
  right: auto;
  bottom: -280px;
  left: -180px;
  background: radial-gradient(circle, rgba(46, 111, 216, 0.22), transparent 65%);
}

.footer-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 52px;
}

.footer-top h2 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.4px;
}

.footer-top .btn-cta {
  margin-top: 0;
  flex-shrink: 0;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-top: 54px;
  padding-bottom: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: #a7b6ca;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 300px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 13px;
  color: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.socials a:hover {
  background: #2e6fd8;
  border-color: #2e6fd8;
}

.socials a:active {
  transform: scale(0.92);
}

.socials svg {
  width: 17px;
  height: 17px;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a7b6ca;
  font-size: 14px;
  padding: 7px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-col svg {
  width: 15px;
  height: 15px;
  color: #ffffff;
}

.footer-mark {
  position: relative;
  text-align: center;
  font-size: clamp(90px, 13vw, 176px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  height: 0.62em;
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
  margin-top: 22px;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8fa1b8;
  font-size: 13px;
}

.footer-bottom-inner a {
  color: #8fa1b8;
  margin-left: 24px;
  transition: color 0.2s ease;
}

.footer-bottom-inner a:hover {
  color: #ffffff;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 38, 0.72);
  backdrop-filter: blur(6px);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  max-width: min(880px, 94vw);
  width: 100%;
  animation: modal-in 0.3s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.modal-box img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #14171a;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(8, 18, 38, 0.3);
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: #2e6fd8;
  color: #ffffff;
}

.modal-close svg {
  width: 19px;
  height: 19px;
}

.modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6px 4px;
}

.modal-info {
  text-align: center;
}

.modal-info strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.modal-info span {
  display: block;
  color: #9aa3ab;
  font-size: 13px;
  margin-top: 2px;
}

#toTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #2e6fd8;
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

#toTop.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

#toTop:hover {
  background: #2560bd;
}

#toTop svg {
  width: 20px;
  height: 20px;
}

.page-hero {
  background-color: #3d7de0;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 168px 40px 76px;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -0.4px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-top: 14px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #ffffff;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-content {
  padding: 84px 0 100px;
}

.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}

.article-meta {
  color: #2e6fd8;
  font-size: 14px;
  font-weight: 600;
}

.article > img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-top: 20px;
}

.article h2 {
  font-size: 26px;
  font-weight: 600;
  margin-top: 44px;
}

.article p {
  color: #3c454d;
  font-size: 16px;
  line-height: 1.85;
  margin-top: 18px;
}

.article ul {
  margin: 18px 0 0 22px;
  color: #3c454d;
  font-size: 16px;
  line-height: 1.85;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2e6fd8;
  font-size: 15px;
  font-weight: 600;
  margin-top: 44px;
  transition: color 0.2s ease;
}

.article-back:hover {
  color: #1d4fa3;
}

.article-back svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.article-back:hover svg {
  transform: translateX(-4px);
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 38px;
}

.legal-content p {
  color: #3c454d;
  font-size: 15.5px;
  line-height: 1.8;
  margin-top: 14px;
}

@media (max-width: 1100px) {
  .hero-title {
    font-size: 48px;
  }

  .about-main {
    flex-direction: column;
    gap: 52px;
    margin-top: 70px;
  }

  .photo-card {
    width: 100%;
    height: auto;
    aspect-ratio: 590 / 480;
    padding: 36px 44px;
  }

  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-main {
    flex-direction: column;
    gap: 52px;
  }

  .why-photo {
    width: 100%;
  }

  .why-photo img {
    height: 400px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main {
    flex-direction: column;
    gap: 52px;
  }

  .contact-form {
    width: 100%;
    align-self: stretch;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .header.scrolled,
  .header:has(.mobile-menu.open) {
    background: rgba(42, 100, 198, 0.95);
    backdrop-filter: blur(12px);
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .testimonial-card {
    flex: 0 0 min(400px, 82vw);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 20px;
  }

  .page-hero {
    padding: 140px 24px 60px;
  }

  .page-hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .header {
    padding: 16px 20px;
  }

  .header.scrolled {
    padding: 12px 20px;
  }

  .btn-book {
    padding: 11px 18px;
    font-size: 14px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-content {
    padding: 36px 20px 0;
  }

  .hero-title {
    font-size: 34px;
    letter-spacing: -0.3px;
  }

  .hero-title br {
    display: none;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-top: 18px;
  }

  .scroll-indicator {
    margin-top: 28px;
    width: 38px;
    height: 38px;
  }

  .laptop {
    width: 94vw;
    margin-top: 34px;
  }

  .laptop-frame {
    border-radius: 16px 16px 0 0;
    padding: 8px 8px 0;
  }

  .laptop-notch {
    top: 8px;
    width: 92px;
    height: 15px;
  }

  .laptop-screen {
    border-radius: 9px 9px 0 0;
  }

  .play-btn {
    width: 50px;
    height: 50px;
  }

  .play-btn svg {
    width: 19px;
    height: 19px;
  }

  .about {
    padding: 64px 20px 40px;
  }

  .badges {
    justify-content: center;
    gap: 24px;
  }

  .about-text h2 {
    font-size: 30px;
  }

  .about-text h3 {
    font-size: 21px;
  }

  .photo-card {
    padding: 22px 26px;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .section-head p {
    font-size: 15px;
  }

  .services {
    padding: 70px 0;
  }

  .services-bento {
    grid-template-columns: 1fr;
  }

  .bento-featured,
  .bento-image {
    grid-column: auto;
  }

  .bento-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .bento-image {
    min-height: 300px;
  }

  .stats {
    padding: 56px 0;
  }

  .stat strong {
    font-size: 36px;
  }

  .stat span {
    font-size: 14px;
  }

  .why {
    padding: 70px 0;
  }

  .why-text h2 {
    font-size: 30px;
  }

  .why-list li {
    font-size: 15px;
    align-items: flex-start;
  }

  .why-photo img {
    height: 280px;
  }

  .gallery {
    padding-bottom: 70px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .g-large {
    grid-column: auto;
    grid-row: auto;
  }

  .team {
    padding: 70px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .testimonials {
    padding: 70px 0;
  }

  .slider-controls {
    margin-top: 28px;
  }

  .blog {
    padding-bottom: 70px;
  }

  .blog-more {
    margin-top: 34px;
  }

  .faq {
    padding-bottom: 70px;
  }

  .faq-list summary {
    font-size: 15px;
    padding: 20px 2px;
  }

  .contact {
    padding: 70px 0;
  }

  .contact-info h2 {
    font-size: 30px;
  }

  .contact-form {
    padding: 26px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row .field {
    margin-bottom: 16px;
  }

  .cta-band {
    padding: 64px 24px;
  }

  .cta-band h2 {
    font-size: 30px;
  }

  .footer {
    padding: 0;
  }

  .footer-inner {
    padding-top: 48px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    padding-bottom: 40px;
  }

  .footer-top h2 {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 40px;
    padding-bottom: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-inner a:first-child {
    margin-left: 0;
  }

  #toTop {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .modal-close {
    top: -12px;
    right: -6px;
  }

  .page-content {
    padding: 56px 0 70px;
  }

  .article,
  .legal-content {
    padding: 0 20px;
  }

  .article > img {
    height: 220px;
  }

  .article h2 {
    font-size: 21px;
    margin-top: 32px;
  }

  .article p,
  .article ul {
    font-size: 15px;
  }
}
