*{
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
}

body{
    background-color: #f8f9fa;
}


/* =========================
   Navigation Bar
========================= */
.navigation {
    display: flex;
    align-items: center;
    height: 120px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative; /* needed for absolute mobile menu */
}

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 30px;
}
.nav-left img {
    height: 40px;
}

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.nav-right {
    flex: 1;
}

/* Navigation links */
.navigation a {
    text-decoration: none;
    font-size: 1.3rem;
    color: black;
    margin: 0 20px;
    padding: 30px;
    border-radius: 20px;
    transition: 0.15s;
}

.navigation a:hover {
    border-radius: 20px;
    font-weight: 600;
    scale: 1.1;
    background-color: rgba(200, 200, 200, 0.4);
}

/* =========================
   Hamburger Button (Mobile)
========================= */
.hamburger {
    display: none; /* hidden by default */
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* =========================
   Responsive Mobile Styles
========================= */
@media (max-width: 768px) {
    /* Hide nav links initially */
    .nav-center {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 120px; /* navbar height */
        left: 0;
        width: 100%;
        background-color: white;
        padding: 15px 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 100;
    }

    /* Show nav links when active */
    .nav-center.active {
        display: flex;
    }

    /* Show hamburger button */
    .hamburger {
        display: block;
        flex: 0;
        margin-right: 20px;
    }

    /* Reduce padding of links for mobile */
    .navigation a {
        margin: 5px 0;
        padding: 10px 15px;
        font-size: 1.2rem;
    }
}



/* =========================
   Footer
========================= */
.site-footer {
    background-color: rgb(34, 34, 34, 0.94);
    color: #eee;
    padding: 60px 10% 20px;
    font-size: 1rem;
    margin-top: 4rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

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

.footer-brand img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-brand p {
    line-height: 1.6;
    color: #ccc;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-socials h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-socials p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 1rem;
    color: #aaa;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: opacity 0.25s ease;
}

.instagram-link img {
    width: 30px;
    height: 30px;
}

.instagram-link:hover {
    opacity: 0.7;
}











/* =========================
   Main
========================= */
/* HERO SECTION WITH BACKGROUND IMAGE */
.contact-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(20%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact-hero h1 {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    z-index: 2;
    margin: 0;
    letter-spacing: -1px;
    width: 90%;
}

.contact-hero p {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    text-align: center;
    z-index: 2;
    margin: 0;
    max-width: 600px;
    opacity: 0.95;
    width: 90%;
}

/* CONTACT CONTAINER */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* CONTACT INFO SECTION */
.contact-info {
  position: sticky;
  top: 2rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-info > p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-item .icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-item h3 {
  font-size: 1.1rem;
  color: #111;
  margin: 0 0 0.25rem 0;
}

.info-item p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}
.info-item a{
  text-decoration: none;
}

/* FORM WRAPPER */
.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* FORM STYLING */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* SUBMIT BUTTON */
.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* FORM MESSAGE */
.form-message {
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 350px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
    top: 42%;
  }

  .contact-hero p {
    font-size: 1rem;
    top: 62%;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .contact-container {
    padding: 0 1rem 2rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    height: 250px;
  }

  .contact-hero h1 {
    font-size: 1.8rem;
    top: 40%;
  }

  .contact-hero p {
    font-size: 0.9rem;
    top: 65%;
  }
}