/* ===== BASE RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #ffffff;
  color: #4b4b4b;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== NAVIGATION ===== */
.stickynav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
  mix-blend-mode: difference;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(0);
}

.stickynav.nav-hidden {
  transform: translateY(-100%);
}

.stickynav.nav-visible {
  transform: translateY(0);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.imgc {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1001;
}

.imgc img {
  width: 50px;
  height: auto;
  filter: brightness(0) invert(1);
}

.logo-text h1 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.logo-text p {
  color: white;
  font-size: 0.85rem;
  font-weight: 400;
  margin: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a.active {
  color: #004aad;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #004aad;
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(./Media/image_17.png);
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  width: 100%;
  padding: 5rem 2rem;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 2rem;
  font-weight: 700;
}

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

.info-item h3 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-item p {
  color: #6b6b6b;
  font-size: 1rem;
  line-height: 1.6;
}

.info-item a {
  color: #004aad;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: inline-block;
  word-break: break-word;
}

.info-item a:hover {
  color: #00307f;
  text-decoration: underline;
}

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

.contact-form h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 2rem;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #004aad;
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label span {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.error {
  color: #b00020;
  font-size: 0.85rem;
  min-height: 1.2em;
  display: block;
}

.form-note {
  margin-top: 1rem;
  color: #6b6b6b;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #004aad;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: inherit;
}

.btn-primary:hover {
  background-color: #00307f;
  transform: translateY(-2px);
}

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

.form-success {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background-color: #074cab;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: white;
  color: #074cab;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background-color: #ffffff;
  color: #222;
  padding: 3rem 2rem;
  border-top: 1px solid #e8e8e8;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-content p {
  margin: 0;
  font-size: 1rem;
  color: #6b6b6b;
}

.footer-content ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.footer-content a {
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #004aad;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .contact-container {
    gap: 2rem;
  }

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

/* Mobile */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    position: relative;
  }

  .imgc {
    position: relative;
    z-index: 1002;
  }

  .hamburger {
    position: relative;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    z-index: 999;
  }

  .stickynav.nav-open {
    mix-blend-mode: normal;
    background-color: white;
    border: 1px solid #e8e8e8;
    transform: translateY(0) !important;
  }

  .stickynav.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    color: #222 !important;
    font-size: 1.5rem;
  }

  .nav-links a::after {
    background-color: #004aad;
  }

  .stickynav.nav-open .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .stickynav.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .stickynav.nav-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .stickynav.nav-open .hamburger span {
    background-color: #222;
  }

  .stickynav.nav-open .imgc img {
    filter: none;
  }

  .stickynav.nav-open .logo-text h1,
  .stickynav.nav-open .logo-text p {
    color: #222;
  }

  body:has(.stickynav.nav-open) {
    overflow: hidden;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    position: static;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-section {
    padding: 3rem 1rem;
  }

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

  .contact-info {
    padding: 2rem;
  }

  .cta-section {
    padding: 3rem 1rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .imgc img {
    width: 45px;
  }

  .logo-text h1 {
    font-size: 1.3rem;
  }

  .logo-text p {
    font-size: 0.75rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

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

  .btn-primary,
  .btn-outline {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }

  .imgc {
    gap: 0.75rem;
  }

  .imgc img {
    width: 40px;
  }

  .logo-text h1 {
    font-size: 1.1rem;
  }

  .logo-text p {
    font-size: 0.7rem;
  }
}
