:root {
  --bg-dark: #0f0f0f;
  --bg-card: #1a1a1a;
  --accent: #c9a26d; /* change this to match Digital Marketing accent */
  --text-light: #f5f5f5;
  --text-muted: #161263;
}


/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: #0f0f0f;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}

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

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

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

.btn-nav {
  background: #ffb703;
  color: #000 !important;
  padding: 8px 14px;
  border-radius: 5px;
}

.btn-nav:hover {
  background: #ffaa00;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0f0f0f;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

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

  .menu-toggle {
    display: block;
  }
}




/* Contact Section */
.contact-section {
  padding: 120px 20px;
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}


.contact-section h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px;
}


/* Layout */
.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Info */
.contact-info {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  text-align: left;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Form */
.contact-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  background: transparent;
  border: 1px solid #333;
  border-radius: 8px;
  color: var(--text-light);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}


.contact-form button {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  opacity: 0.9;
}


/* Success Message */
#successMessage {
  display: none;
  margin-top: 15px;
  color: green;
  font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }
}

