:root {
  --navy: #071b33;
  --navy-light: #0e2d4f;
  --blue: #155b8f;
  --orange: #f26a1b;
  --gold: #c9983d;
  --charcoal: #2c333a;
  --light: #f5f7fa;
  --white: #ffffff;
  --muted: #6b7280;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--light);
  color: var(--navy);
}

a {
  text-decoration: none;
  color: inherit;
}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

/* Header */

/* ==================================================
   HEADER SECTION START
================================================== */

.site-header {
  height: 82px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 32px;
  position:sticky;
  top:0;
  z-index:1000;
  box-shaddow:0 2px 10px rgba(0,0,0,.15);
  border-bottom:2px solid #c9983d;
  
}

.logo img {
  display: block;
  height: 54px;
  width: auto;
}

nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

nav a{
  Transition:.25s;
}

Nav a:hover{
color:#f26a1b;
}

.contact-btn {
  background: var(--orange);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .site-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  nav {
    flex-wrap: wrap;
    margin-left: 0;
  }
}

/* ==================================================
   HEADER SECTION END
================================================== */

/* Hero */

.contact-hero {
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.contact-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #e4e7ec;
  font-size: 1.1rem;
}

/* Contact Section */

.contact-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 18px;
}

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

.info-card {
  background-color: var(--white);
  border-left: 4px solid var(--gold);
  padding: 22px;
  margin-bottom: 18px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(11, 31, 58, 0.06);
}

.info-card h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.info-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.info-card a:hover {
  color: var(--gold);
}

/* Form */

.contact-form-card {
  background-color: var(--white);
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.12);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.2);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-form button:hover {
  background-color: var(--navy);
  color: var(--white);
}

/* Footer */

.site-footer {
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 26px 0;
  font-size: 0.9rem;
}

/* Responsive */

@media (max-width: 850px) {
  .nav-container {
    flex-direction: column;
  }

  .nav-menu {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px;
  }
}
@media (max-width: 700px) {
  .site-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  nav {
    flex-wrap: wrap;
    margin-left: 0;
  }
}
  

@media (max-width: 1000px) {


*/

.contact-btn,
.primary-btn {
  background: var(--orange);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

}
