margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
  background: #f7f7f7;
}

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

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

.topbar {
  background: #111;
  color: #fff;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.navbar {
  background: #fff;
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  gap: 20px;
}

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

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #0d1b2a;
  line-height: 1.1;
}

.logo small {
  display: block;
  font-size: 12px;
  color: #666;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 600;
  color: #333;
}

.nav-links a.active {
  color: #d62828;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)),
    url('assets/images/hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 110px 5%;
  text-align: center;
}

.hero.hero-small {
  padding: 85px 5%;
  background-position: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 860px;
  margin: 0 auto 25px;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-primary {
  background: #d4af37;
  color: #111;
}

.btn-primary:hover {
  background: #b89220;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #111;
}

section {
  padding: 70px 5%;
  background: #fff;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  margin-bottom: 15px;
  font-size: 34px;
  color: #0d1b2a;
}

.section-subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #666;
}

.grid {
  display: grid;
  gap: 25px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.card h3 {
  margin-bottom: 12px;
  color: #0d1b2a;
}

.features-list,
.services-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.services-list li,
.features-list li {
  background: #f4f4f4;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 500;
}

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

.gallery-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-card p {
  padding: 14px 16px 18px;
  font-weight: 600;
  color: #333;
}

.review {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  font-style: italic;
  color: #444;
}

.review span {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-weight: bold;
  color: #111;
}

.cta {
  background: #0d1b2a;
  color: #fff;
  text-align: center;
}

.cta .section-title {
  color: #fff;
}

footer {
  background: #111;
  color: #ddd;
  padding: 40px 5%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

footer h4 {
  color: #fff;
  margin-bottom: 12px;
}

footer p,
footer a {
  color: #ccc;
  font-size: 15px;
  display: block;
  margin-bottom: 8px;
}

.copyright {
  text-align: center;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: #aaa;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }
  .nav-links {
    gap: 12px;
    font-size: 14px;
  }
  .navbar {
    align-items: flex-start;
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #aaa;
  font-family: 'Inter', sans-serif;
}

.footer-bottom p {
  margin: 0;
  letter-spacing: 0.3px;
}

.footer-bottom a {
  color: #00c2ff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover effect */
.footer-bottom a:hover {
  color: #ffffff;
}

/* Animated underline */
.footer-bottom a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -3px;
  background: linear-gradient(90deg, #00c2ff, #0077ff);
  transition: width 0.3s ease;
}

.footer-bottom a:hover::after {
  width: 100%;
}