/* ===============================
   HEADER BASE STYLES
=============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, transform 0.3s ease-in-out;
  /* Shadow overlay from top, covering the header section */
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 40%,
      rgba(0, 0, 0, 0.35) 80%,
      rgba(0, 0, 0, 0.0) 100%);
  box-shadow: none;
  /* Remove bottom shadow, use only top overlay */
}

.header .container {
  display: flex;
  flex-direction: column;
  padding: 6px 24px 10px;
  row-gap: 12px;
  /* Add space between the two lines (location and navbar) */
}

/* Location strip */
.location-info {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 6px;
  opacity: 0.85;
  letter-spacing: 0.2px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.location-info i {
  margin-right: 8px;
  /* color: #C08A00; */
}

/* ===============================
   NAVIGATION
  =============================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Links (Desktop default) */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 auto;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease, font-weight 0.15s ease;
  padding: 14px 0;
  opacity: 0.95;
  font-family: 'Reem Kufi', sans-serif;
}

.nav-link:hover {
  /* color: #ffd700; */
  font-weight: 700;
}

.nav-link.active {
  font-weight: 700;
  /* color: #ffd700; */
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 6px 12px;
  font-family: 'Reem Kufi', sans-serif;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    margin-right: auto;
    /* forces it to left */
  }

  .navbar {
    justify-content: flex-start;
    /* align items to left */
    width: 100%;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-align: center;
  }

  .nav-links.mobile-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
  }
}


/* ===============================
     Hero Section
  =============================== */
.contact-hero {
  position: relative;
  height: 60vh;
  background: url("../images/home/hero-banner.webp") top center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 120px;
  opacity: 0;
  transition: opacity 1s ease-in;
}

.contact-hero.loaded {
  opacity: 1;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* ===============================
     Breadcrumbs
  =============================== */
.contact-breadcrumbs {
  position: absolute;
  left: 10%;
  /* Reduced from 30px for better alignment */
  top: 83%;
  /* Slightly adjusted to reduce vertical margin */
  transform: translateX(0);
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  padding: 4px 10px;
  /* Reduced padding */
  border-radius: 8px;

}

.contact-breadcrumbs a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.contact-breadcrumbs a:hover {
  opacity: 1;
  color: #c08a00;
}

.contact-breadcrumbs .current {
  font-weight: 700;
}

/* ===============================
     Hero Form Section
  =============================== */
.contact-form-section {
  position: absolute;
  bottom: -70px;
  left: 10%;
  transform: translateX(-50%);
  background: #fff;
  max-width: 1200px;
  /* Reduced from 1400px */
  width: 90%;
  padding: 30px 0;
  /* Slightly smaller padding */
  border-radius: 10px;
  border: 2px solid #c08a00;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  margin: 0 auto;
  overflow: hidden;
}

.contact-form {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: center;
}

.contact-form-group {
  flex: 1;
  min-width: 200px;
  /* Reduced */
  max-width: 200px;
  /* Further limit max width for smaller fields */
  border: 1.5px solid #780000;
  border-radius: 7px;
  padding: 8px 10px;
  /* Reduced padding */
  /* background: #fafafa; */
  display: flex;
  flex-direction: column;
}

.contact-form-group label {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 8px;
  margin-left: 45px;
  /* Added margin left */
  color: #515151;
  /* text-transform: uppercase; */
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-form-group input,
.contact-form-group select {
  border: none;
  font-size: 13px;
  padding: 6px 16px;
  /* Increased left and right padding */
  border-radius: 5px;
  width: 100%;
  color: #6f6f6f;
  /* match screenshot text color */
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'League Spartan', Arial, sans-serif;
  background-color: rgba(120, 0, 0, 0.11);
  /* #780000 with 11% opacity */
  outline: none;
  text-align: left;
}

.contact-form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 6px 46px 6px 16px;
  background-image: url("./assets/dropdonw.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) 50%;
  background-size: 20px;
  cursor: pointer;
  transition: background-image 0.25s, filter 0.25s;
}

.contact-form-group select:focus,
.contact-form-group select:active {
  background-image: url("./assets/updown.png");
  animation: dropdownArrowAnim 0.25s linear;
  /* Optionally, add a little bounce or fade using filter/transform if desired */
}

@keyframes dropdownArrowAnim {
  0% {
    filter: opacity(0.6) blur(1px);
    /* Optional: transform: translateY(-4px) scale(0.9); */
  }

  100% {
    filter: opacity(1) blur(0);
    /* Optional: transform: translateY(0) scale(1); */
  }
}

.contact-form-group select:focus {
  background-image: url("./assets/dropdonw.png");
}

.contact-form-group select::-ms-expand {
  display: none;
}


.contact-form-group select#facilities,
.contact-form-group select#facilities option {
  font-family: 'LEMON MILK', 'Lemon Milk', Arial, sans-serif !important;
  font-weight: 300 !important;
  color: #6f6f6f !important;
  font-size: 13px;
}

.contact-submit button {
  background: linear-gradient(135deg, #8b0000, #780000);
  border: none;
  color: #fff;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 7px;
  font-weight: 300;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
}

.contact-submit {
  display: flex;
  align-items: center;
  /* vertically center with the input blocks */
}

.contact-submit button:hover {
  background: linear-gradient(135deg, #a52a2a, #8b0000);
  transform: translateY(-2px);
}

/* =====================================================
     RESPONSIVE FIXES — Mobile & Tablet (2025-10)
     Preserve desktop layout exactly as-is
  ===================================================== */

/* ===== Tablet View (max-width: 1024px) ===== */
@media (max-width: 1424px) {
  .contact-hero {
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  /* Breadcrumbs above the form */
  .contact-breadcrumbs {
    position: relative;
    bottom: -190px;
    left: -345px;
    margin-top: 250px;
    margin-bottom: 30px;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.45); */
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  /* Use the desktop design but at a slightly smaller scale */
  .contact-form-section {
    position: absolute;
    /* left: 50%; */
    bottom: -70px;
    transform: translateX(-50%);
    background: #fff;
    max-width: 980px;
    width: 90%;
    padding: 22px 0;
    border-radius: 10px;
    border: 2px solid #c08a00;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 10px;
    margin: 0 auto;
    overflow: hidden;
  }

  .contact-form {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
    /* width: 100%; */
  }

  .contact-form-group {
    flex: 1;
    min-width: 160px;
    max-width: 180px;
    border: 1.5px solid #780000;
    border-radius: 7px;
    padding: 6px 7px;
    background: transparent;
    display: flex;
    flex-direction: column;
    margin: 0 2px;
  }

  .contact-form-group label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
    margin-left: 45px;
    color: #515151;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .contact-form-group input,
  .contact-form-group select {
    border: none;
    font-size: 12px;
    padding: 0px 12px;
    border-radius: 5px;
    width: 100%;
    color: #939393;
    text-transform: uppercase;
    font-weight: 600;
    background-color: rgba(120, 0, 0, 0.11);
    outline: none;
    text-align: left;
    margin-bottom: 0;
    height: 30px;
  }

  .contact-form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 5px 34px 5px 12px;
    background-image: url("./assets/dropdonw.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
    background-size: 16px;
    cursor: pointer;
    transition: background-image 0.25s, filter 0.25s;
  }

  .contact-form-group select:focus,
  .contact-form-group select:active {
    background-image: url("./assets/updown.png");
    animation: dropdownArrowAnim 0.25s linear;
  }

  .contact-form-group select::-ms-expand {
    display: none;
  }

  .contact-submit {
    display: flex;
    align-items: center;
    margin-left: 4px;
    margin-top: 0;
    grid-column: unset;
    text-align: unset;
  }

  .contact-submit button {
    width: 74px;
    min-width: 64px;
    font-size: 13px;
    padding: 8px 0;
    background: linear-gradient(135deg, #8b0000, #780000);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(200, 120, 0, 0.08);
    transition: background 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .contact-submit button:hover {
    background: linear-gradient(135deg, #a52a2a, #8b0000);
    box-shadow: 0 4px 16px rgba(200, 120, 0, 0.12);
    transform: translateY(-1px);
  }
}

@media (max-width: 1024px) {
  .contact-hero {
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  /* Breadcrumbs above the form - aligned to left of form */
  .contact-breadcrumbs {
    position: relative;
    bottom: -190px;
    left: 0;
    margin-top: 250px;
    margin-bottom: 30px;
    margin-left: 5%;
    margin-right: auto;
    text-align: left;
    /* background: rgba(0, 0, 0, 0.45); */
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    max-width: calc(90% - 20px);
  }

  /* Form container centered below banner */
  .contact-form-section {
    position: relative;
    bottom: -170px;
    left: unset;
    transform: none;
    margin: 0 auto 60px;
    width: 90%;
    max-width: 800px;
    padding: 24px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    width: 100%;
  }

  .contact-form-group {
    min-width: auto;
    max-width: 100%;
  }

  .contact-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 12px;
  }

  .contact-submit button {
    width: 60%;
    min-width: 180px;
    max-width: 320px;
    padding: 14px 0;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

}

/* ===== Mobile View (max-width: 768px) ===== */
@media (max-width: 768px) {
  .contact-hero {
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  /* Breadcrumbs above the form - aligned to left of form */
  .contact-breadcrumbs {
    position: relative;
    bottom: -190px;
    left: 0;
    margin-top: 150px;
    margin-bottom: 30px;
    margin-left: -320px;
    margin-right: auto;
    text-align: left;
    padding: 1px 1px;
    border-radius: 8px;
    font-size: 13px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    max-width: calc(90% - 20px);
  }

  /* Form container centered below banner */
  .contact-form-section {
    position: relative;
    bottom: -170px;
    left: unset;
    transform: none;
    margin: 0 auto -180px auto;
    top: unset;
    bottom: -170px;
    left: unset;
    right: unset;
    width: 90%;
    max-width: 600px;
    padding: 24px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    width: 100%;
  }

  .contact-form-group {
    min-width: auto;
    max-width: 100%;
  }

  .contact-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 12px;
  }

  .contact-submit button {
    width: 60%;
    min-width: 180px;
    max-width: 320px;
    padding: 14px 0;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

@media (max-width: 650px) and (min-width: 481px) {
  .contact-hero {
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  /* Breadcrumbs above the form - aligned to left of form */
  .contact-breadcrumbs {
    position: relative;
    bottom: -190px;
    left: 0;
    margin-top: 250px;
    margin-bottom: 30px;
    margin-left: 5%;
    margin-right: auto;
    text-align: left;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    max-width: calc(90% - 20px);
  }

  /* Form container centered below banner */
  .contact-form-section {
    position: absolute;
    bottom: -70px;
    /* left: 1%; */
    transform: translateX(-50%);
    margin: 0 auto;
    width: 80%;
    max-width: 1200px;
    padding: 32px 24px;
    /* Added uniform padding: 32px top/bottom, 24px left/right */
    display: flex;
    justify-content: center;
    align-items: stretch;
  }

  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 28px;
    width: 100%;
  }

  .contact-form-group {
    min-width: auto;
    max-width: 100%;
  }

  .contact-submit {
    grid-column: 1 / -1;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .contact-submit button {
    width: 60%;
    min-width: 180px;
    max-width: 320px;
    padding: 14px 0;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

/* ===== Hide breadcrumbs from 300px to 380px ===== */
@media (max-width: 380px) and (min-width: 300px) {
  .contact-breadcrumbs {
    display: none !important;
  }
}

/* ===== Mobile & Small Device Responsive (300px - 480px) ===== */
@media (max-width: 480px) and (min-width: 300px) {
  .contact-hero {
    height: auto;
    min-height: 50vh;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form-section {
    position: relative;
    margin: 20px auto 40px;
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
    padding: 20px 16px;
    background: #fff;
    border: 2px solid #c08a00;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: stretch;
    box-sizing: border-box;
    overflow: hidden;
  }

  .contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
    width: 100%;
  }

  .contact-form-group {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    border: 1.5px solid #780000;
    border-radius: 8px;
    padding: 10px 12px;
    background: transparent;
    display: flex;
    flex-direction: column;
    margin: 0;
    transition: border-color 0.2s ease, border-width 0.2s ease;
    box-sizing: border-box;
    overflow: hidden;
  }

  .contact-form-group label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    margin-left: 0;
    color: #515151;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .contact-form-group>div {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .contact-form-group img {
    width: 20px !important;
    height: 20px !important;
    margin-right: 8px !important;
    flex-shrink: 0;
  }

  .contact-form-group input,
  .contact-form-group select {
    border: none;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 5px;
    width: 100% !important;
    flex: 1;
    min-width: 0;
    color: #6f6f6f;
    background-color: rgba(120, 0, 0, 0.11);
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'League Spartan', Arial, sans-serif;
    outline: none;
    text-align: left;
    box-sizing: border-box;
  }

  .contact-form-group input[type="date"] {
    color: #6f6f6f;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
  }

  .contact-form-group:focus-within {
    border: 2px solid #780000 !important;
    box-shadow: 0 0 0 1px rgba(120, 0, 0, 0.2);
  }

  .contact-form-group input:focus,
  .contact-form-group select:focus {
    outline: none;
    color: #6f6f6f;
  }

  .contact-form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 8px 40px 8px 12px;
    background-image: url("./assets/dropdonw.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) 50%;
    background-size: 18px;
    cursor: pointer;
  }

  .contact-form-group select:focus,
  .contact-form-group select:active {
    background-image: url("./assets/updown.png");
  }

  .contact-form-group select::-ms-expand {
    display: none;
  }

  .contact-form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    cursor: pointer;
  }

  .contact-submit {
    width: 100%;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-submit button {
    width: 100%;
    min-width: unset;
    max-width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    background: linear-gradient(135deg, #8b0000, #780000);
    border-radius: 8px;
  }

  .contact-submit button:hover {
    background: linear-gradient(135deg, #a52a2a, #8b0000);
    transform: translateY(-1px);
  }

  .contact-submit button i {
    font-size: 16px;
  }
}

/* Show breadcrumbs for visible range */
@media (max-width: 480px) and (min-width: 381px) {
  .contact-breadcrumbs {
    display: inline-flex !important;
    position: relative;
    bottom: auto;
    left: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 5%;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 8px;
    font-size: 12px;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    max-width: calc(90% - 20px);
    z-index: 20;
  }
}


@media (max-width: 365px) {
  .contact-hero {
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  /* Breadcrumbs above the form - aligned to left of form */
  .contact-breadcrumbs {
    position: relative;
    bottom: -190px;
    left: 0;
    margin-top: 250px;
    margin-bottom: 30px;
    margin-left: 5%;
    margin-right: auto;
    text-align: left;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    max-width: calc(90% - 20px);
  }

  /* Form container centered below banner */
  .contact-form-section {
    position: relative;
    bottom: -170px;
    left: unset;
    transform: none;
    margin: 0 auto 60px;
    width: 90%;
    max-width: 250px;
    padding: 24px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    width: 100%;
  }

  .contact-form-group {
    min-width: auto;
    max-width: 100%;
  }

  .contact-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 12px;
  }

  .contact-submit button {
    width: 50%;
    min-width: 200px;
    padding: 12px 0;
    font-size: 13px;
  }
}

/* ===============================
     Contact Info Section
  =============================== */
.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 80px 20px;
  max-width: 1700px;
  margin: 0 auto;
  margin-top: 150px;
  position: relative;
  overflow: hidden;
}

.info-box {
  background: #7c0a02;
  color: white;
  text-align: center;
  padding: 30px 35px;
  width: 220px;
  border-radius: 70px 0px 70px 70px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.info-box .icon {
  background: #fff;
  color: #b8860b;
  font-size: 22px;
  width: 50px;
  height: 50px;
  line-height: 75px;
  border-radius: 50%;
  margin: 0 auto 15px auto;
}

.info-box hr {
  border: none;
  border-top: 2px solid #b8860b;
  width: 80px;
  margin: 0 auto 10px auto;
}

.info-box h3 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 1px;
}

.info-box p {
  margin: 5px 0;
  font-size: 14px;
}

/* ===== Responsive Contact Info Section ===== */

/* Tablet */
@media (max-width: 1024px) {
  .contact-info {
    flex-direction: column;
    gap: 40px;
    padding: 50px 10px;
    margin-top: 70px;
    align-items: stretch;
  }

  .info-box {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    border-radius: 46px 0px 46px 46px;
    padding: 28px 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 24px;
    padding: 30px 5vw;
    margin-top: 100px;
    align-items: stretch;
  }

  .info-box {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    border-radius: 30px 0px 30px 30px;
    padding: 24px 12px;
  }

  .info-box .icon {
    width: 44px;
    height: 44px;
    font-size: 19px;
    line-height: 44px;
    margin-bottom: 8px;
  }

  .info-box h3 {
    font-size: 16px;
    margin-bottom: 7px;
  }

  .info-box p {
    font-size: 13px;
    margin: 4px 0;
    word-break: break-word;
  }

  .info-box hr {
    width: 55px;
    margin-bottom: 8px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contact-info {
    gap: 14px;
    padding: 18px 2vw 5vw 2vw;
    max-width: 80vw;
    margin-top: 130px;
  }

  .info-box {
    padding: 14px 7px;
    max-width: 75vw;
    width: 99vw;
    border-radius: 18px 0 18px 18px;
  }

  .info-box .icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
    line-height: 36px;
    margin-bottom: 6px;
  }

  .info-box h3 {
    font-size: 14px;
    margin-bottom: 3px;
  }

  .info-box p {
    font-size: 12px;
    margin: 2px 0;
  }

  .info-box hr {
    width: 34px;
    margin-bottom: 4px;
  }
}