body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
  }
  
  .main-header {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
    height: 120px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
  }
  
  .header-inner {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 24px;
  }
  
  .header-left, .header-center, .header-right {
    display: flex;
    align-items: center;
  }
  
  .header-center {
    flex: 1;
    justify-content: center;
  }
  
  .header-logo {
    height: 60px;
    max-width: 100%;
  }
  
  .menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .menu-btn .close-icon {
    display: none;
  }
  
  .menu-btn.active .hamburger-icon {
    display: none;
  }
  
  .menu-btn.active .close-icon {
    display: block;
  }
  
  .search-container {
    display: flex;
    align-items: center;
    background: #f5f7fa;
    border-radius: 24px;
    padding: 0 12px;
    margin-right: 24px;
    height: 40px;
  }
  
  .search-container input {
    border: none;
    background: transparent;
    outline: none;
    padding: 8px 0;
    font-size: 16px;
    width: 140px;
  }
  
  .search-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left: 8px;
  }
  
  .lang-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #0A4C93;
  }
  
  @media (max-width: 1600px) {
    .header-inner {
      max-width: 98vw;
      padding: 0 12px;
    }
  }
  
  @media (max-width: 900px) {
    .main-header {
      height: 80px;
    }
    .header-inner {
      max-width: 100vw;
      padding: 0 8px;
    }
    .header-logo {
      height: 40px;
    }
    .search-container {
      display: none;
    }
  }
  
  @media (max-width: 600px) {
    .header-logo {
      height: 32px;
    }
    .lang-container span {
      font-size: 16px;
    }
  }
  
  /* Mobile Menu Styles */
  .mobile-menu {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 1000;
  }
  
  .mobile-menu.active {
    height: auto;
    min-height: 300px;
  }
  
  .mobile-nav {
    padding: 24px;
  }
  
  .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-nav-list li {
    margin-bottom: 16px;
  }
  
  .mobile-nav-link {
    color: #0A4C93;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
  }
  
  .mobile-nav-link:hover {
    color: #1870e6;
  }
  
  @media (max-width: 900px) {
    .mobile-menu {
      top: 80px;
    }
  }

  .home-section {
    width: 100%;
    min-height: 600px;
    position: relative;
    background: #222; /* fallback */
  }
  
  .home-bg {
    width: 100%;
    min-height: 600px;
    background: url('../Images/header.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .home-content {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    padding: 0 24px;
  }
  
  .home-content h1 {
    color: #fff;
    font-size: 4vw;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    flex: 1;
  }
  
  
.home-buttons {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    z-index: 2;
  }
  
  .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 24px;
    padding: 14px 32px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  
  .btn-outline:hover {
    background: #fff;
    color: #0A4C93;
  }
  
  .btn-primary {
    background: #0A4C93;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 14px 32px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
  }
  
  .btn-primary:hover {
    background: #08386b;
  }
  
  @media (max-width: 900px) {
    .home-content {
      min-height: 400px;
      padding: 0 8px;
    }
    .home-content h1 {
      font-size: 2.2rem;
      margin-bottom: 32px;
    }
    .home-buttons {
      right: 16px;
      bottom: 16px;
      gap: 12px;
    }
  }
  
  @media (max-width: 600px) {
    .home-content h1 {
      font-size: 1.4rem;
    }
    .home-buttons {
      right: 8px;
      bottom: 8px;
      gap: 8px;
    }
    .btn-outline, .btn-primary {
      padding: 10px 18px;
      font-size: 1rem;
    }
  } 

  .home-section {
    width: 100%;
    min-height: 600px;
    position: relative;
    background: #222; /* fallback */
  }
  
  .home-bg {
    width: 100%;
    min-height: 600px;
    background: url('../Images/header.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .home-content {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 0 24px;
    position: relative;
  }
  
  .home-content h1 {
    color: #fff;
    font-size: 4vw;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
    text-shadow: 0 4px 24px rgba(0,0,0,0.45), 0 1.5px 4px rgba(0,0,0,0.25);
  }
  
  .home-buttons {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    z-index: 2;
  }
  
  .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 24px;
    padding: 14px 32px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  
  .btn-outline:hover {
    background: #fff;
    color: #0A4C93;
  }
  
  .btn-primary {
    background: #0A4C93;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 14px 32px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
  }
  
  .btn-primary:hover {
    background: #08386b;
  }
  
  @media (max-width: 900px) {
    .home-content {
      min-height: 400px;
      padding: 0 8px;
    }
    .home-content h1 {
      font-size: 2.2rem;
      margin-bottom: 32px;
    }
    .home-buttons {
      right: 16px;
      bottom: 16px;
      gap: 12px;
    }
  }
  
  @media (max-width: 600px) {
    .home-content h1 {
      font-size: 1.4rem;
    }
    .home-buttons {
      right: 8px;
      bottom: 8px;
      gap: 8px;
    }
    .btn-outline, .btn-primary {
      padding: 10px 18px;
      font-size: 1rem;
    }
  } 

.quicktour-section {
  background: #fff;
  padding: 64px 0 80px 0;
  width: 100%;
}

.quicktour-header {
  max-width: 1550px;
  margin: 0 auto 48px auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 24px;
}

.quicktour-subtitle {
  color: #004792;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 8px;
}

.quicktour-title {
  color: #004792;
  font-size: 3.2rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}

.quicktour-link {
  color: #004792;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}

.quicktour-link:hover {
  color: #0A4C93;
}

.quicktour-cards {
  max-width: 1550px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}

.quicktour-card {
  background: transparent;
  border-radius: 32px;
  overflow: hidden;
  width: 342px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quicktour-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 18px;
  background: #222;
}

.quicktour-card-title {
  color: rgba(0, 71, 146, 0.5);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}



@media (max-width: 1200px) {
  .quicktour-cards {
    gap: 24px;
  }
  .quicktour-card {
    width: 240px;
  }
  .quicktour-card img {
    height: 180px;
  }
}

@media (max-width: 900px) {
  .quicktour-header {
    max-width: 98vw;
    padding: 0 8px;
  }
  .quicktour-cards {
    max-width: 98vw;
    padding: 0;
  }
  .quicktour-title {
    font-size: 2rem;
  }
  .quicktour-card {
    width: 48vw;
    min-width: 180px;
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .quicktour-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .quicktour-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .quicktour-card {
    width: 90vw;
    min-width: unset;
  }
  .quicktour-card img {
    height: 38vw;
    min-height: 120px;
  }
} 

/* --- Event & Map Section Redesign (with separation, gap, and wider map) --- */
.event-map-wrapper {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: flex-start;
  margin: 80px auto;
  max-width: 1550px;
}

.event-card {
  width: 520px;
  min-width: 300px;
  color: #004792;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.weather-info {
  padding: 28px 32px 12px 32px;
  background: rgba(68, 74, 82, 0.2);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-height: 120px;
  margin-bottom: 18px;
}
.weather-date, .weather-desc, .weather-meta {
  color: #6e7a8a;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.weather-date {
  margin-bottom: 0;
}
.weather-desc {
  margin-bottom: 0;
}
.weather-meta {
  font-size: 0.98rem;
  margin-bottom: 0;
}
.weather-temp {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 4.5rem;
  font-weight: 800;
  color: #004792;
  opacity: 1;
  line-height: 1;
  letter-spacing: -2px;
}

.event-list-header {
  background: #cfd8e6;
  color: #004792;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 32px 32px 0 0;
  padding: 18px 0 12px 32px;
  letter-spacing: 0.01em;
  text-align: left;
}
.event-list {
  background: #444a52;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 12px 0;
  max-height: 230px;
  overflow-y: auto;
  scrollbar-width: none;
  border-radius: 0 0 32px 32px;
}
.event-list::-webkit-scrollbar {
  display: none;
}
.event-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px 14px 32px;
  color: #004792;
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid #cfd8e6;
  transition: background 0.15s;
}
.event-row:nth-child(odd) {
  background: rgba(226, 226, 226, 0.9);
}
.event-row:nth-child(even) {
  background: rgba(236, 236, 236, 0.8);
}
.event-row:last-child {
  border-bottom: none;
}
.event-row span:first-child {
  flex: 2;
  color: #004792;
  font-weight: 700;
}
.event-row span:nth-child(2), .event-row span:nth-child(3) {
  flex: 1;
  text-align: right;
  color: #6e7a8a;
  font-weight: 600;
  font-size: 1.05rem;
  margin-left: 12px;
}
.map-card {
  background: transparent;
  border-radius: 32px;
  overflow: hidden;
  width: 970px;
  height: 440px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 36px rgba(0,0,0,0.16);
}
#vojvodina-map {
  width: 100%;
  height: 100%;
  border-radius: 32px;
}
@media (max-width: 1300px) {
  .map-card {
    width: 98vw;
    height: 54vw;
    min-height: 220px;
  }
}
@media (max-width: 1100px) {
  .event-map-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .map-card {
    width: 90vw;
    height: 50vw;
    min-height: 220px;
  }
  .event-card {
    width: 90vw;
    min-width: unset;
  }
}
@media (max-width: 600px) {
  .event-card, .map-card {
    border-radius: 18px;
  }
  .weather-info, .event-list-header, .event-row {
    padding-left: 14px;
    padding-right: 14px;
  }
  .weather-temp {
    right: 14px;
    font-size: 2.8rem;
  }
  .map-card {
    height: 44vw;
    min-height: 120px;
  }
} 

.food-festival-section {
  position: relative;
  width: 100%;
  min-height: 1400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.food-festival-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../Images/best-food.png') center center/cover no-repeat;
  z-index: 1;
  width: 100%;
  height: 100%;
  filter: brightness(0.7);
}

.food-festival-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 64px;
}

.food-festival-content h2 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.food-festival-btn {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.food-festival-btn:hover {
  background: #fff;
  color: #004792;
} 

.wheretonext-section {
  background: #ffffff;
  padding: 64px 0 80px 0;
  width: 100%;
}

.wheretonext-header {
  max-width: 1550px;
  margin: 0 auto 48px auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 24px;
}

.wheretonext-subtitle {
  color: #2360a5;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 8px;
}

.wheretonext-title {
  color: #1870e6;
  font-size: 3.2rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}

.wheretonext-link {
  color: #1870e6;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
  margin-bottom: 16px;
}

.wheretonext-link:hover {
  color: #004792;
}

.wheretonext-cards {
  max-width: 1550px;
  margin: 0 auto;
  display: flex;
  gap: 70px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}

.wheretonext-card {
  background: transparent;
  border-radius: 32px;
  overflow: hidden;
  width: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wheretonext-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 18px;
  background: #222;
}

.wheretonext-card-title {
  color: #1870e6;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

@media (max-width: 1200px) {
  .wheretonext-cards {
    gap: 24px;
  }
  .wheretonext-card {
    width: 240px;
  }
  .wheretonext-card img {
    height: 180px;
  }
}

@media (max-width: 900px) {
  .wheretonext-header {
    max-width: 98vw;
    padding: 0 8px;
  }
  .wheretonext-cards {
    max-width: 98vw;
    padding: 0;
  }
  .wheretonext-title {
    font-size: 2rem;
  }
  .wheretonext-card {
    width: 48vw;
    min-width: 180px;
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .wheretonext-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .wheretonext-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .wheretonext-card {
    width: 90vw;
    min-width: unset;
  }
  .wheretonext-card img {
    height: 38vw;
    min-height: 120px;
  }
} 

.travelinspiration-section {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.travelinspiration-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../Images/travel.png') center center/cover no-repeat;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  filter: brightness(1.05);
}

.travelinspiration-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 16px 32px 16px;
  text-align: center;
}

.mailbox-icon {
  font-size: 4.5rem;
  color: #0a4c93;
  margin-bottom: 24px;
  border-radius: 24px;
  padding: 0;
  background: none;
  box-shadow: none;
}

.travelinspiration-content h2 {
  color: #0a4c93;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 36px;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.travelinspiration-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 18px auto;
  gap: 12px;
}

.travelinspiration-form input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  border-radius: 32px;
  border: none;
  font-size: 1.2rem;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  outline: none;
}

.travelinspiration-form button {
  background: #1870e6;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 16px 32px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.travelinspiration-form button:hover {
  background: #0a4c93;
}

.travelinspiration-legal {
  color: #222;
  font-size: 1rem;
  margin-top: 12px;
  opacity: 0.85;
}

.travelinspiration-legal a {
  color: #1870e6;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 700px) {
  .travelinspiration-content h2 {
    font-size: 2rem;
  }
  .travelinspiration-form {
    flex-direction: column;
    gap: 10px;
  }
  .travelinspiration-form input[type="email"], .travelinspiration-form button {
    width: 100%;
    font-size: 1rem;
    padding: 12px 16px;
  }
} 

.gallery-section {
  width: 100%;
  background: #1870e6;
  padding: 0;
  margin: 0;
}

.gallery-heading {
  color: #fff;
  font-size: 4vw;
  font-weight: 800;
  text-align: center;
  padding: 48px 0 24px 0;
  letter-spacing: 1px;
}

.gallery-row {
  display: flex;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #1870e6;
  justify-content: center;
  align-items: stretch;
}

.gallery-img-wrap {
  position: relative;
  flex: 1 1 0;
  overflow: hidden;
  transition: flex 0.5s cubic-bezier(.4,2,.6,1), z-index 0.2s;
  display: flex;
  align-items: flex-end;
  min-width: 0;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.4,2,.6,1), filter 0.3s;
  display: block;
}

.gallery-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  z-index: 2;
  pointer-events: none;
}

.gallery-img-wrap:hover,
.gallery-img-wrap:focus-within {
  z-index: 2;
}

.gallery-row:hover .gallery-img-wrap {
  flex: 0.3333 1 0;
  filter: brightness(0.7);
}

.gallery-row .gallery-img-wrap:hover,
.gallery-row .gallery-img-wrap:focus-within {
  flex: 2 1 0;
  filter: brightness(1);
}

.gallery-row .gallery-img-wrap:hover img,
.gallery-row .gallery-img-wrap:focus-within img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .gallery-row {
    height: 220px;
  }
  .gallery-heading {
    font-size: 2rem;
    padding: 32px 0 16px 0;
  }
  .gallery-caption {
    font-size: 1rem;
    left: 8px;
    bottom: 8px;
  }
}

@media (max-width: 600px) {
  .gallery-row {
    flex-direction: column;
    height: auto;
  }
  .gallery-img-wrap {
    flex: 1 1 0;
    height: 200px;
    min-height: 150px;
  }
  .gallery-img-wrap img {
    object-fit: cover;
    transform: scale(1.1);
  }
  .gallery-row:hover .gallery-img-wrap,
  .gallery-row .gallery-img-wrap:hover {
    flex: 1 1 0;
  }
  .gallery-row:hover .gallery-img-wrap img,
  .gallery-row .gallery-img-wrap:hover img {
    transform: scale(1.2);
  }
} 

.site-footer {
  background: #fff;
  color: #1870e6;
  padding: 48px 0 0 0;
  min-height: 100px;
  width: 100%;
}

.footer-content {
  max-width: 480px;
  margin-left: 10vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 320px;
  max-width: 90vw;
  margin-bottom: 8px;
}

.footer-tagline {
  color: #222c3a;
  font-size: 1.2rem;
  margin-bottom: 32px;
  margin-left: 6px;
  font-weight: 500;
  opacity: 0.5;
}

.footer-follow-label {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1870e6;
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
}

.footer-socials a {
  color: #ffffff;
  background: #1870e6;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.footer-socials a:hover {
  background: #1c1c1c;
  color: #1870e6;
}

.footer-subscribe-label {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #1870e6;
}

.footer-subscribe-offer {
  color: #1870e6;
  font-size: 1.1rem;
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-subscribe-form {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  width: 100%;
}

.footer-subscribe-form input[type="email"] {
  flex: 1;
  padding: 8px 18px;
  border-radius: 24px;
  border: none;
  font-size: 1.1rem;
  background: #fff;
  color: #222;
  outline: none;
  border:1px solid #9c9c9c;
}

.footer-subscribe-form button {
  background: #1870e6;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-subscribe-form button:hover {
  background: #0a4c93;
}

.footer-legal {
  color: #222c3a;
  font-size: 0.95rem;
  margin-top: 8px;
  opacity: 0.5;
}

.footer-legal a {
  color: #1870e6;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 700px) {
  .footer-content {
    margin-left: 4vw;
    max-width: 98vw;
  }
  .footer-logo {
    width: 200px;
  }
  .footer-socials a {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
  .footer-subscribe-form input[type="email"], .footer-subscribe-form button {
    font-size: 1rem;
    padding: 10px 10px;
  }
}

.footer-content.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1550px;
  margin-left: 10vw;
  margin-right: auto;
  align-items: flex-start;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-links-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 12px;
  margin-top: 8px;
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.footer-links-list li {
  margin-bottom: 8px;
}
.footer-links-list a {
  color: #1c1c1c;
  text-decoration: none;
  font-size: 1.05rem;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}
.footer-links-list a:hover {
  color: #1c1c1c;
  opacity: 1;
}
@media (max-width: 900px) {
  .footer-content.footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-left: 4vw;
    max-width: 98vw;
  }
  .footer-col {
    margin-bottom: 24px;
  }
}

/* Floating Chat Button */
.floating-chat-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: #0A4C93;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(10, 76, 147, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.floating-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(10, 76, 147, 0.4);
}

.floating-chat-btn a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  gap: 10px;
}

.floating-chat-btn i {
  font-size: 20px;
}

.floating-chat-btn span {
  white-space: nowrap;
}

/* Responsive adjustments for floating chat button */
@media (max-width: 768px) {
  .floating-chat-btn {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-chat-btn a {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .floating-chat-btn i {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .floating-chat-btn {
    bottom: 15px;
    right: 15px;
  }
  
  .floating-chat-btn a {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .floating-chat-btn span {
    display: none; /* Hide text on very small screens, show only icon */
  }
}

/* Contact Page Specific Styles */
.container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 20px;
    background:#fff;
}

.hero-section {
    width: 100%;
    padding: 120px 0 120px 0;	
    min-height: 400px;
    background-image: url('../Images/header.png');
    background-size: cover;
    background-position: center;
}

/* Info Section */
.info-section {
    margin: 60px 0;
    text-align: left;
}

.info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-section p {
    line-height: 1.6;
    max-width: 800px;
}

.info-section a {
    color: #0050A0;
    text-decoration: none;
}

/* Help Section */
.help-section {
    text-align: center;
    margin: 80px 0;
}

.help-section h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.divider {
    width: 50px;
    height: 3px;
    background: #cc0000;
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

/* Help options */
.help-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 830px;
    margin: 0 auto;
    margin-top: 40px;
}

.help-item {
    text-align: center;
    flex: 0 0 250px;
}

.help-item i {
    font-size: 2rem;
    color: #0050A0;
    margin-bottom: 20px;
}

.help-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.help-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0 auto;
}

/* Responsive styles for contact page */
@media (max-width: 768px) {
    .info-section p {
        max-width: 100%;
    }

    .help-options {
        max-width: 100%;
    }

    .help-item {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}