/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.3;
  color: #1a1a2e;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header / Navigation ===== */
.header {
  background: #1a1a2e;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header__logo img {
  height: 30px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav__link:hover {
  opacity: 0.8;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav__dropdown-toggle::after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  display: inline-block;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 6px;
  padding: 23px 0 8px; 
  margin-top: 0;       
}

.nav__dropdown:hover .nav__dropdown-menu {
  display: block;
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.nav__dropdown-menu a:hover {
  background: #f5f5f5;
}

.nav__btn {
  background: #fff;
  color: #1a1a2e;
  padding: 8px 22px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}

.nav__btn:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

/* Mobile Nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #1a1a2e;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .nav.nav--open {
    display: flex;
  }

  .nav__dropdown-menu {
    position: static;
    box-shadow: none;
    background: #252545;
    margin-top: 8px;
    border-radius: 4px;
  }

  .nav__dropdown-menu a {
    color: #fff;
  }

  .nav__dropdown-menu a:hover {
    background: #333360;
  }

  .nav__dropdown:hover .nav__dropdown-menu {
    display: block;
  }
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-city.webp') center/cover no-repeat;
  opacity: 0.12;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero__content {
  flex: 1;
}

.hero__title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.hero__text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 550px;
  line-height: 1.8;
}

.hero__image {
  flex: 0 0 400px;
}

.hero__image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__image {
    flex: none;
    max-width: 350px;
  }

  .hero__title {
    font-size: 2rem;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn--primary {
  background: #e94560;
  color: #fff;
}

.btn--primary:hover {
  background: #d63851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--dark {
  background: #1a1a2e;
  color: #fff;
}

.btn--dark:hover {
  background: #16213e;
  transform: translateY(-2px);
}

/* ===== Feature Cards ===== */
.features {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.feature-card__title {
  margin-bottom: 15px;
  color: #1a1a2e;
}

.feature-card__text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== Content Sections ===== */
.section {
  padding: 70px 0;
}

.section--gray {
  background: #f8f9fa;
}

.section--dark {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section__header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section__header h2 {
  margin-bottom: 15px;
}

.section__header p {
  color: #666;
  font-size: 1.05rem;
}

.section--dark .section__header p {
  color: rgba(255,255,255,0.8);
}

/* Two-column layout */
.two-col {
  display: flex;
  align-items: center;
  gap: 60px;
}

.two-col--reverse {
  flex-direction: row-reverse;
}

.two-col__content {
  flex: 1;
}

.two-col__image {
  flex: 0 0 420px;
}

.two-col__image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .two-col,
  .two-col--reverse {
    flex-direction: column;
    gap: 30px;
  }

  .two-col__image {
    flex: none;
    max-width: 100%;
  }
}

/* ===== Benefits / Values List ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
}

.value-item__icon {
  width: 50px;
  height: 50px;
  background: rgba(233, 69, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.4rem;
}

.value-item h3 {
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.95rem;
  color: #666;
}

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

/* ===== Promise / Highlight Box ===== */
.highlight-box {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  color: #fff;
  padding: 50px;
  border-radius: 16px;
  margin-top: 40px;
}

.highlight-box h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.highlight-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.highlight-box ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
}

.highlight-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e94560;
  font-weight: 700;
}

/* ===== Contact Section ===== */
.contact {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact__wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact__info {
  flex: 1;
}

.contact__info h2 {
  margin-bottom: 20px;
}

.contact__form {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a2e;
  background: #fff;
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.contact__form .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .contact__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

/* ===== Footer ===== */
.footer {
  background: #1a1a2e;
  color: #fff;
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand img {
  height: 28px;
  margin-bottom: 15px;
}

.footer__tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.footer__col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer__col ul li {
  margin-bottom: 8px;
}

.footer__col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__col ul li a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

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

/* ===== Legal Pages ===== */
.legal {
  padding: 60px 0 80px;
}

.legal h1 {
  margin-bottom: 30px;
}

.legal h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.legal h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.legal p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.8;
}

.legal ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

.legal ul li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.7;
}

.legal strong {
  color: #333;
}

/* ===== Subpage Hero (smaller) ===== */
.hero--sub {
  padding: 50px 0 60px;
}

.hero--sub .hero__title {
  font-size: 2.2rem;
}

/* ===== Benefits List (Subpages) ===== */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.benefit-item {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  border-left: 4px solid #e94560;
}

.benefit-item h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.benefit-item p {
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 768px) {
  .benefits-list {
    grid-template-columns: 1fr;
  }
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
