*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --primary:#1e3a5f;
  --secondary:#2f6fed;
  --dark:#102033;
  --light:#f5f7fb;
  --text:#222;
  --white:#fff;
  --border:#d8e0eb;
  --shadow:0 8px 25px rgba(0,0,0,0.08);
}

body{
  font-family:Arial,sans-serif;
  color:var(--text);
  background:#eef3f9;
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

.container{
  width:min(1100px,90%);
  margin:auto;
}

.site-header{
  background:var(--white);
  box-shadow:var(--shadow);
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:72px;
}

.logo{
  font-size:1.6rem;
  font-weight:bold;
  color:var(--primary);
}

.main-nav{
  display:flex;
  gap:1.2rem;
}

.main-nav a{
  padding:0.6rem 0.9rem;
  border-radius:8px;
  transition:0.3s;
}

.main-nav a:hover,
.main-nav a.active{
  background:var(--secondary);
  color:var(--white);
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:1.8rem;
  cursor:pointer;
  color:var(--primary);
}

.hero{
  position:relative;
  min-height:75vh;
  overflow:hidden;
}

.hero-image{
  width:100%;
  height:75vh;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(16,32,51,0.55);
  display:flex;
  align-items:center;
}

.hero-content{
  color:var(--white);
  max-width:700px;
}

.hero-content h1{
  font-size:clamp(2rem,5vw,3.5rem);
  margin-bottom:1rem;
}

.hero-content p{
  font-size:1.1rem;
  margin-bottom:1.5rem;
}

.hero-buttons{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  background:var(--secondary);
  color:var(--white);
  padding:0.9rem 1.3rem;
  border:none;
  border-radius:10px;
  cursor:pointer;
  transition:0.3s;
}

.btn:hover{
  background:var(--primary);
}

.btn-outline{
  background:transparent;
  border:2px solid var(--white);
}

.btn-outline:hover{
  background:var(--white);
  color:var(--primary);
}

.section{
  padding:4rem 0;
}

.light-section{
  background:var(--light);
}

.section-title{
  text-align:center;
  margin-bottom:2rem;
}

.section-title h1,
.section-title h2{
  color:var(--primary);
  margin-bottom:0.5rem;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1.5rem;
}

.card{
  background:var(--white);
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.card img{
  height:220px;
  width:100%;
  object-fit:cover;
}

.card h3,
.card p{
  padding:0 1rem;
}

.card h3{
  margin:1rem 0 0.5rem;
  color:var(--primary);
}

.card p{
  padding-bottom:1.2rem;
}

.video-wrapper{
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.video-wrapper video{
  width:100%;
  display:block;
}

.testimonials{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1.5rem;
}

.testimonial{
  background:var(--white);
  padding:1.5rem;
  border-left:5px solid var(--secondary);
  border-radius:12px;
  box-shadow:var(--shadow);
}

.testimonial cite{
  display:block;
  margin-top:1rem;
  color:var(--primary);
  font-weight:bold;
}

.about-text{
  max-width:800px;
  margin:0 auto 2rem;
  text-align:center;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1.5rem;
}

.team-card{
  background:var(--white);
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
  text-align:center;
}

.team-card img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.team-card figcaption{
  padding:1rem;
}

.team-card h3{
  color:var(--primary);
}

.details-list{
  display:grid;
  gap:1rem;
}

details{
  background:var(--white);
  border-radius:12px;
  padding:1rem 1.2rem;
  box-shadow:var(--shadow);
}

summary{
  cursor:pointer;
  font-weight:bold;
  color:var(--primary);
}

details p{
  margin-top:0.8rem;
}

.top-space{
  margin-top:3rem;
}

.table-wrapper{
  overflow-x:auto;
}

.pricing-table{
  width:100%;
  border-collapse:collapse;
  background:var(--white);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.pricing-table th,
.pricing-table td{
  border:1px solid var(--border);
  padding:1rem;
  text-align:center;
}

.pricing-table th{
  background:var(--primary);
  color:var(--white);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1rem;
}

.gallery-item{
  display:block;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.gallery-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform 0.3s;
}

.gallery-item img:hover{
  transform:scale(1.05);
}

.contact-layout{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:1.5rem;
}

.contact-form-card,
.contact-info-card{
  background:var(--white);
  padding:1.5rem;
  border-radius:16px;
  box-shadow:var(--shadow);
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}

.form-group{
  margin-bottom:1rem;
}

.form-group label{
  display:block;
  margin-bottom:0.45rem;
  font-weight:bold;
  color:var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:0.85rem;
  border:1px solid var(--border);
  border-radius:10px;
  font-size:1rem;
}

.inline-options{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
}

.inline-options label{
  font-weight:normal;
  color:var(--text);
}

.range-value{
  margin-top:0.5rem;
  color:var(--primary);
  font-weight:bold;
}

.map-wrapper{
  margin-top:1rem;
  border-radius:14px;
  overflow:hidden;
}

.map-wrapper iframe{
  width:100%;
  height:280px;
  border:0;
}

.site-footer{
  margin-top:3rem;
  background:var(--dark);
  color:var(--white);
  padding-top:2.5rem;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:2rem;
}

.site-footer h3{
  margin-bottom:1rem;
}

.site-footer ul li{
  margin-bottom:0.5rem;
}

.site-footer a:hover{
  text-decoration:underline;
}

.footer-bottom{
  text-align:center;
  margin-top:2rem;
  padding:1rem 0;
  border-top:1px solid rgba(255,255,255,0.15);
}

@media (max-width: 900px){
  .contact-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .menu-toggle{
    display:block;
  }

  .main-nav{
    display:none;
    position:absolute;
    top:72px;
    right:5%;
    background:var(--white);
    box-shadow:var(--shadow);
    flex-direction:column;
    width:220px;
    padding:1rem;
    border-radius:12px;
  }

  .main-nav.show{
    display:flex;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
  }

  .hero-image{
    height:60vh;
  }
}