/* ===== Global Layout and Background ===== */
body {
  margin: 0 auto;
  padding: 4rem 2rem;
  min-height: 100vh;
  background: linear-gradient(135deg, #000d19 0%, #000d19 30%, #0a1622 55%, #152636 85%);
  color: #e3e3e3;
  font-family: 'Cormorant Garamond', Georgia, serif;
  max-width: 720px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Header ===== */
header {
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  color: #fed976;
  margin-bottom: 3rem;
  box-sizing: border-box;
}

.logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.01rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  flex-grow: 1;
}

.brand h1 {
  font-size: 2.0rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fed976;
}

/* ===== Navigation ===== */
nav {
  position: relative;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.4px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fed976;
}

.nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0.3rem 0.4rem;
}

/* ===== Responsive Navigation ===== */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
  }

  .brand {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    flex-grow: 1;
    margin: 0;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
    padding: 0.3rem 0.4rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(10, 22, 34, 0.95);
    position: absolute;
    top: 100%;
    right: 0;
    padding: 1rem;
    border: 1px solid #fed976;
    border-radius: 8px;
    z-index: 1000;
    animation: fadeSlideDown 0.3s ease-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    width: 180px;
    text-align: right;
  }

  .nav-links a {
    font-size: 1.3rem;
    padding: 0.4rem 0;
  }

  .nav-links.show {
    display: flex;
  }
}

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

  .nav-links {
    display: flex !important;
    position: static;
    padding: 0;
    border: none;
    background: none;
    flex-direction: row;
    box-shadow: none;
  }
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Main Content ===== */
main {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

/* Hero heading */
h2 {
  font-size: 3.4rem;
  font-weight: 200;
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0;
  max-width: 620px;
}

/* Tagline */
.tagline {
  color: #fed976;
  font-weight: 500;
  font-size: 1.4rem;
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* Section Headings */
h3 {
  color: #fed976;
  font-size: 1.9rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Paragraphs and lists */
p, li {
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 0.6rem 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}

ul li {
  margin-bottom: 0.3rem;
}

/* ===== Button ===== */
button {
  background: transparent;
  border: 1px solid #fed976;
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  margin-top: 1.25rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  border-radius: 4px;
}

button:hover {
  background: #fed976;
  color: #000d19;
}

/* ===== Animation ===== */
html {
  scroll-behavior: smooth;
}

section {
  animation: fadeIn 1.2s ease-in both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Footer ===== */
footer {
  margin-top: 5rem;
  padding-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  position: relative;
}

footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5px;
  background-color: #fed976;
  position: absolute;
  top: 0;
  left: 0;
}

/* ===== Contact Form ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.contact-form label {
  color: #fed976;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  background-color: #0a1622;
  border: 1px solid #fed976;
  padding: 0.8rem 1rem;
  color: #e3e3e3;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffffff;
  background-color: #152636;
}

/* ===== Contact Info Styling ===== */
.contact-info {
  border: 1px solid #fed976;
  padding: 2rem;
  border-radius: 6px;
  background-color: #0a1622;
  margin-top: 2.5rem;
  animation: fadeIn 1.2s ease-in both;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.contact-label {
  font-weight: 600;
  color: #fed976;
  min-width: 70px;
}

.contact-info a {
  color: #e3e3e3;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #fed976;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  row-gap: 0.6rem;
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 100%;
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

.services-grid div {
  position: relative;
  padding-left: 1.2rem;
  color: #e3e3e3;
}

.services-grid div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background-color: #fed976;
  border-radius: 50%;
}


