/****************************************************
  RESET & BASE
*****************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fafafa;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 90%);
  margin: auto;
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: #111;
}

p.muted {
  color: #666;
}

/****************************************************
  GLOBAL ELEMENTS
*****************************************************/
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn.primary {
  background: #0056d6;
  color: #fff;
}

.btn.primary:hover {
  background: #0046b2;
}

.btn.ghost {
  border: 2px solid #0056d6;
  color: #0056d6;
}

.btn.ghost:hover {
  background: #0056d6;
  color: #fff;
}

.btn.small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn.large {
  padding: 15px 32px;
  font-size: 18px;
}

.btn.block {
  width: 100%;
  text-align: center;
}

/****************************************************
  HEADER
*****************************************************/
.site-header {
  background: #fff;
  border-bottom: 1px solid #e7e7e7;
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.brand {
  font-size: 26px;
  font-weight: 800;
  color: #0056d6;
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #0056d6;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #0056d6;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 35px;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.hamb,
.hamb::before,
.hamb::after {
  content: "";
  height: 3px;
  width: 100%;
  background: #333;
  position: absolute;
  left: 0;
  transition: 0.3s ease;
}

.hamb {
  top: 50%;
  transform: translateY(-50%);
}

.hamb::before {
  top: -10px;
}

.hamb::after {
  top: 10px;
}

/****************************************************
  MOBILE MENU
*****************************************************/
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: 0.35s ease;
  padding: 40px 20px;
  z-index: 999;
}

.mobile-menu.open {
  right: 0;
}

.mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-link {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

/* Mobile Dropdown */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 15px;
}

.mobile-dropdown-menu.show {
  max-height: 200px;
}

.mobile-dropdown-menu .sub-link {
  font-size: 16px;
  margin: 10px 0;
}

/****************************************************
  CONTACT HERO
*****************************************************/
.contact-hero {
  padding: 100px 0;
  background: #f4f8ff;
  text-align: center;
}

.hero-content h1 {
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f4f8ff;
}

.lead {
  color: #ababab;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/****************************************************
  CONTACT INFO & FORM
*****************************************************/
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 30px;
}

.contact-info {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  height: fit-content;
}

.contact-info h2 {
  margin-bottom: 30px;
  color: #0056d6;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 24px;
  color: #0056d6;
  margin-right: 15px;
  margin-top: 3px;
}

.info-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.info-item p {
  color: #666;
}

.social-links {
  margin-top: 40px;
}

.social-links h3 {
  margin-bottom: 15px;
}

.social-icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #0056d6;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
  margin-right: 10px;
}

.social-icon:hover {
  background: #0056d6;
  color: #fff;
  transform: translateY(-4px);
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
  margin-bottom: 30px;
  color: #0056d6;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0056d6;
  box-shadow: 0 0 0 3px rgba(0, 86, 214, 0.1);
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success i {
  font-size: 60px;
  color: #0056d6;
  margin-bottom: 20px;
}

.form-success h2 {
  margin-bottom: 15px;
  color: #0056d6;
}

/****************************************************
  MAP SECTION
*****************************************************/
.map-container {
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.map-container iframe {
  width: 100%;
  border: 0;
}

/****************************************************
  FOOTER
*****************************************************/
.site-footer {
  background: #111;
  color: #ccc;
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.footer-col h3,
.footer-col h4,
.footer-brand {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-col p {
  margin-bottom: 20px;
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social .social-icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  font-size: 17px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-social .social-icon:hover {
  background: #0056d6;
  color: #fff;
  transform: translateY(-4px);
}

.copyright {
  margin-top: 45px;
  text-align: center;
  color: #888;
  font-size: 14px;
}

/****************************************************
  RESPONSIVE MEDIA QUERIES
*****************************************************/

/* Tablets */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }
}

/* Responsive adjustments for navigation */
@media (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }
}