:root {
  --charcoal: #181a1b;
  --navy: #232a34;
  --gold: #b89d5a;
  --white: #f5f5f5;
  --slate: #4a5568;
  --radius: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --outline: 2px solid var(--gold);
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: linear-gradient(120deg, var(--charcoal) 60%, var(--navy) 100%);
  color: var(--white);
  min-height: 100vh;
  scroll-behavior: smooth;
  line-height: 1.7;
}

nav {
  background: var(--navy);
  padding: 1rem 0;
  text-align: center;
  box-shadow: var(--shadow);
}

nav a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s;
}

nav a.active,
nav a:hover {
  color: var(--white);
}

nav a.active::after,
nav a:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -4px;
  border-radius: 2px;
}

header {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 3rem 2rem 2rem 2rem;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  box-shadow: var(--shadow);
  border-bottom: var(--outline);
}

header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--gold) 40%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header p {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

.hero {
  background: linear-gradient(100deg, var(--navy) 70%, var(--charcoal) 100%);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: -2rem;
  border: var(--outline);
  padding-bottom: 2rem;
}

.hero-img {
  width: 100%;
  max-width: 700px;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  box-shadow: 0 4px 32px rgba(184,157,90,0.18);
  border: 3px solid var(--gold);
  object-fit: cover;
  height: 300px;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--gold) 40%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.95;
}

.btn {
  background: var(--gold);
  color: var(--charcoal);
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(184,157,90,0.18);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, color 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.btn:hover, button:hover {
  background: var(--white);
  color: var(--gold);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 24px 8px #b89d5a88;
}

.services {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--outline);
  text-align: center;
  padding-bottom: 2rem;
}

.service-img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  box-shadow: 0 4px 32px rgba(184,157,90,0.18);
  border: 3px solid var(--gold);
  object-fit: cover;
  height: 250px;
}

.services h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.services ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: auto;
}

.services li {
  background: rgba(255,255,255,0.01);
  margin-bottom: 1rem;
  padding: 1.2rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--gold);
  box-shadow: 0 2px 8px rgba(184,157,90,0.08);
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}

.services li:hover {
  background: rgba(184,157,90,0.08);
  border-color: var(--white);
}

.why-us {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--outline);
  padding-bottom: 2rem;
}

.why-us h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold);
}

.why-us ul {
  list-style: none;
  max-width: 600px;
  margin: auto;
  padding: 0;
}

.why-us li {
  background: rgba(255,255,255,0.01);
  margin-bottom: 0.7rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--gold);
  transition: background 0.3s, border-color 0.3s;
}

.why-us li:hover {
  background: rgba(184,157,90,0.08);
  border-color: var(--white);
}

.contact {
  background: var(--white);
  color: var(--charcoal);
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--outline);
  padding-bottom: 2rem;
}

.contact h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 400px;
  margin: auto;
  background: rgba(184,157,90,0.04);
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(184,157,90,0.08);
  border: 1px solid var(--gold);
}

input,
textarea {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--gold);
  font-size: 1.1rem;
  background: #fff;
  transition: border 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 4px rgba(184,157,90,0.08);
}

input:focus,
textarea:focus {
  border: 2px solid var(--gold);
  outline: none;
  box-shadow: 0 0 24px 8px #b89d5a88;
}

button {
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(184,157,90,0.18);
  transition: background 0.3s, transform 0.2s, color 0.3s, box-shadow 0.3s;
}

footer {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1rem;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 3rem;
  border-top: var(--outline);
}

a {
  color: var(--gold);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

a:hover {
  color: var(--white);
}

@media (max-width: 700px) {
  nav {
    padding: 1rem 0.5rem;
  }
  section, header, .hero, .services, .why-us, .contact, footer {
    padding: 2rem 1rem;
    max-width: 98vw;
    margin: 1rem auto;
  }
  header h1, .hero h2, .services h2, .why-us h2, .contact h2 {
    font-size: 2rem;
  }
  .btn, button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  form {
    padding: 1rem;
  }
  .hero-img, .service-img {
    height: 180px;
  }
}