* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a202c;
  background: #fff;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: #1a365d;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav a {
  margin-left: 1.6rem;
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: #1a365d;
}

.phone-btn {
  background: #1a365d;
  color: white;
  padding: 0.55rem 1.15rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.phone-btn:hover {
  background: #2c5282;
}

/* Hero with slider */
.hero {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,54,93,0.85), rgba(26,54,93,0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: #ed8936;
  color: white;
}

.btn-primary:hover {
  background: #dd6b20;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.85);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.bg-light {
  background: #f7fafc;
}

.section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 2.8rem;
  color: #1a365d;
  letter-spacing: -0.3px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
}

.card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.card h3 {
  color: #1a365d;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
}

.why-grid h3 {
  color: #1a365d;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.cta-section {
  background: #1a365d;
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, #1a365d, #2b6cb0);
  color: white;
  padding: 3.5rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* Content pages */
.content {
  max-width: 780px;
}

.service-block {
  margin-bottom: 2.2rem;
}

.service-block h2 {
  color: #1a365d;
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.rate-list {
  margin: 1.5rem 0;
  padding-left: 1.3rem;
}

.rate-list li {
  margin-bottom: 0.55rem;
}

.highlight-box {
  background: #ebf8ff;
  border-left: 5px solid #3182ce;
  padding: 1.6rem 1.8rem;
  margin: 2.2rem 0;
  border-radius: 0 10px 10px 0;
}

.highlight-box h3 {
  color: #1a365d;
  margin-bottom: 0.5rem;
}

/* Deposit / Payment box */
.deposit-box {
  background: #fffaf0;
  border: 1px solid #fbd38d;
  border-radius: 12px;
  padding: 1.8rem;
  margin: 2.5rem 0;
}

.deposit-box h3 {
  color: #c05621;
  margin-bottom: 0.6rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.big-phone {
  font-size: 1.9rem;
  font-weight: 800;
  margin: 0.4rem 0 0.8rem;
}

.big-phone a {
  color: #1a365d;
  text-decoration: none;
}

.contact-form label {
  display: block;
  margin-top: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form button {
  margin-top: 1.4rem;
}

/* Footer */
.footer {
  background: #1a202c;
  color: #a0aec0;
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.95rem;
}

.footer strong {
  color: #e2e8f0;
}

.small {
  font-size: 0.85rem;
  margin-top: 0.7rem;
  opacity: 0.8;
}

.text-center {
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .header .container {
    flex-wrap: wrap;
    height: auto;
    padding: 1rem 20px;
  }
  .nav {
    width: 100%;
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
  }
  .nav a {
    margin-left: 0;
  }
  .phone-btn {
    margin-top: 0.6rem;
  }
  .hero {
    height: 480px;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}