.credentials {
  margin-top: 30px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.5px;
}

:root {
  --navy: #0b1f3a;
  --blue: #142d52;
  --gold: #c6a95d;
  --light: #f3f4f6;
  --dark: #1c1c1c;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: white;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.navbar .logo {
  font-weight: 600;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.navbar a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color: var(--gold);
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
}

.logo-icon {
  height: 40px;
  width: auto;
}

.hero {
  height: 90vh;
  background: linear-gradient(rgba(11,31,58,0.85), rgba(11,31,58,0.85)),
              url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 10%;
  color: white;
  margin-top: 80px;
}

.hero-content {
  max-width: 700px;
}

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

.hero p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 35px;
}

.btn {
  background: var(--gold);
  color: white;
  padding: 14px 35px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #b89642;
}

section {
  padding: 100px 10%;
}

.section-light {
  background: var(--light);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 6px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

footer {
  background: var(--navy);
  color: white;
  padding: 40px 10%;
  text-align: center;
  font-size: 14px;
}
/* MODAL OVERLAY */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* MODAL BOX */
.modal-content {
  background: white;
  padding: 40px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: fadeIn 0.3s ease;
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 22px;
  cursor: pointer;
  font-weight: bold;
}

/* FORM STYLING */
.modal input,
.modal textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
}

.modal textarea {
  min-height: 100px;
  resize: vertical;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* CONTACT FORM PREMIUM STYLING */

.contact-wrapper {
  max-width: 700px;
  margin: 60px auto;
  padding: 50px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

.contact-wrapper h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.contact-wrapper input,
.contact-wrapper select,
.contact-wrapper textarea {
  width: 100%;
  padding: 14px;
  margin: 12px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all 0.2s ease;
}

.contact-wrapper input:focus,
.contact-wrapper select:focus,
.contact-wrapper textarea:focus {
  border-color: #c5a25d;
  outline: none;
  box-shadow: 0 0 0 2px rgba(197,162,93,0.15);
}

.contact-wrapper textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-wrapper .btn {
  margin-top: 20px;
  width: 100%;
  padding: 16px;
  font-weight: 600;
  font-size: 15px;
}


/* ============================= */
/* MOBILE RESPONSIVE FIX */
/* ============================= */

/* ============================= */
/* MOBILE RESPONSIVE FIX */
/* ============================= */

@media (max-width: 768px) {

  body {
    font-size: 15px;
  }

  .hero {
    height: auto;
    padding: 80px 20px;
    text-align: left;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
    margin-top: 15px;
  }

  .btn {
    width: 100%;
    padding: 16px;
    margin-top: 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  section {
    padding: 60px 20px;
  }

  .service-grid {
    grid-template-columns: 1fr !important;
    gap: 25px;
  }

  .card {
    padding: 25px;
  }

  .profile-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

}



.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.navbar a {
  text-decoration: none;
  font-weight: 500;
  color: #111;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger div {
  width: 25px;
  height: 2px;
  background: #111;
  transition: 0.3s ease;
}

/* MOBILE NAV */
@media (max-width: 768px) {

  .navbar {
    padding: 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
 width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px 0;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  }

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

}
