:root {
  --navy: #1B2B41;
  --gold: #C19A6B;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.85);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--slate-900);
  background-color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Ensure sections land below the fixed header */
section[id] {
  scroll-margin-top: 100px;
}

.app-container {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-decoration {
  position: fixed;
  inset: 0;
  z-index: -10;
  background: white;
  pointer-events: none;
}

.bg-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 45%;
  height: 45%;
  background: rgba(27, 43, 65, 0.05);
  border-radius: 50%;
  filter: blur(140px);
}

.bg-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 40%;
  height: 40%;
  background: rgba(193, 154, 107, 0.1);
  border-radius: 50%;
  filter: blur(140px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--slate-100);
  box-shadow: var(--shadow-md);
}

.nav-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-600);
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-btn {
  background: var(--navy);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(27, 43, 65, 0.1);
  transition: background 0.3s;
  text-decoration: none;
}

.nav-btn:hover {
  background: var(--gold);
}

.mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  display: block;
  z-index: 100;
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--slate-100);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 1rem 0;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--slate-50);
}

/* Hero */
.hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(193, 154, 107, 0.1);
  border: 1px solid rgba(193, 154, 107, 0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 5.5rem;
  }
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.125rem;
  color: var(--slate-600);
  max-width: 40rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}

.btn-primary {
  background: var(--navy);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 0.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-size: 0.875rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 20px 25px -5px rgba(27, 43, 65, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 30px -5px rgba(27, 43, 65, 0.25);
}

.btn-secondary {
  border: 2px solid var(--slate-200);
  color: var(--slate-700);
  padding: 1.25rem 3rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s;
  cursor: pointer;
  background: white;
}

.btn-secondary:hover {
  background: var(--slate-50);
  border-color: var(--gold);
}

/* Services */
.services-section {
  padding: 8rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.5rem;
  }
}

.title-line {
  height: 6px;
  width: 8rem;
  background: var(--gold);
  margin-top: 1.5rem;
  border-radius: 9999px;
  margin-bottom: 5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 2.5rem;
  background: white;
  border: 1px solid var(--slate-100);
  border-radius: 1.5rem;
  transition: all 0.5s ease;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-0.75rem);
  border-color: rgba(193, 154, 107, 0.3);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--slate-50);
  width: fit-content;
  border-radius: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.service-card p {
  color: var(--slate-600);
  font-weight: 300;
}

/* About Section */
.about-section {
  padding: 8rem 1.5rem;
  border-top: 1px solid var(--slate-100);
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text p {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
}

.about-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-section {
  padding: 8rem 1.5rem;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
}

.form-container {
  max-width: 48rem;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
  position: relative;
}

@media (min-width: 768px) {
  .form-container {
    padding: 3.5rem;
  }
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.form-header p {
  color: var(--slate-500);
  font-weight: 300;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.extra-margin {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-500);
  letter-spacing: 0.1em;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(193, 154, 107, 0.1);
}

.form-submit {
  width: 100%;
  padding: 1.25rem;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit:hover {
  background: var(--gold);
}

.form-success {
  text-align: center;
  padding: 2rem 0;
}

.success-circle {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.form-success h3 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--slate-600);
  font-weight: 300;
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

/* Footer */
footer {
  background: var(--slate-50);
  padding: 5rem 1.5rem 3rem;
  border-top: 1px solid var(--slate-100);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  max-width: 400px;
}

.footer-brand a {
  text-decoration: none;
}

.footer-brand p {
  color: var(--slate-500);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

.footer-contact {
  text-align: left;
}

@media (min-width: 768px) {
  .footer-contact {
    text-align: right;
  }
}

.footer-label {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: block;
}

.footer-email {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
  display: block;
  margin: 0.5rem 0;
}

.footer-address {
  color: var(--slate-400);
  font-size: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid var(--slate-200);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--slate-400);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.logo-container {
  max-width: 300px;
  /* Limits the maximum width */
  width: 50%;
  /* Makes the container take up 50% of its parent's width */
  height: auto;
  /* Maintains the aspect ratio */
  display: flex;
  align-items: center;
}

.logo-img {
  height: 110px;
  width: auto;
}