/* Google Fonts Import */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

/* Base Styles */
:root {
  --body-bg: #fff3f04f;
  --primary-color: #00b4d8;
  --secondary-color: #023e8a;
  --tiertiary-color: #00b4d86b;
  --accent-color: #235435;
  --accent-color-sencondary: #32744a;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #f8f9fa;
  --pale-pink: #f8eced;
  --font-primary: "Quicksand", sans-serif;
  --font-secondary: "Source Sans 3", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-secondary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--body-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  /* white at 80% opacity */
  z-index: 1030;
  transition: background-color 1s;
}

.navbar-brand img.logo {
  width: 130px;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .navbar-brand img.logo {
    width: 110px;
  }
}

@media screen and (max-width: 500px) {
  .navbar-brand img.logo {
    width: 85px;
  }
}

.logo-text {
  font-family: var(--font-secondary);
  font-weight: 500;
  color: var(--text-light);
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 500;
  padding: 10px 15px;
  transition: color 2s;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--accent-color);
}

.bg-dark {
  background-color: var(--tiertiary-color) !important;
}

.bg-dark a.nav-link {
  color: white !important;
}

.navbar-toggler {
  border: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.9rem !important;
    padding-left: 0.9rem !important;
  }
}

/** Footer Styling */
.footer-content {
  background-color: var(--tiertiary-color);
}

.site-footer .list-unstyled a {
  color: var(--accent-color);
}

.footer-logo {
  width: 50%;
}

/** Preloader Styling */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out;
}

.logo-container {
  animation: pulse 2s infinite;
}

.preloader-logo {
  max-width: 150px;
  animation: rotate 4s infinite alternate;
}

/** Home Video Banner Styles */
.video-bg {
  height: 100%;
  width: 100%;
}

/**Custom Heading Styles*/
.custom-heading {
  color: var(--text-dark);
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.custom-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 43.8%;
  transform: translateX(44.3%);
  height: 1px;
  width: 7%;
  background-color: black;
}

.custom-heading-2 {
  color: var(--accent-color);
  font-family: var(--font-primary);
  font-size: 2rem;
  font-style: normal;
  font-weight: bolder;
  line-height: normal;
  margin-bottom: 1rem;
}

/** Home Clusters Styles */
.clusters-section {
  padding: 10px 0;
}

.category-label {
  color: #2c88c9;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-weight: 500;
}

.clusters-heading {
  font-family: var(--font-primary);
  font-weight: 400;
  color: #4a4a4a;
  margin-bottom: 6px;
  font-size: 22px;
}

.clusters-text {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 6px;
}

.clusters-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  display: block;
}

.clickable-div {
  margin-bottom: 30px;
}

.clickable-div:nth-child(1),
.clickable-div:nth-child(3) {
  margin-top: 30px;
}

.img-container {
  width: 100%;
  height: 110vh;
  overflow: hidden;
  position: relative;
}

.clickable-div:hover .clusters-img {
  transform: scale(1.1);
}

.animated-divider {
  height: 1px;
  position: relative;
  transition: transform 1s ease;
  background-color: rgb(82, 82, 82);
  width: 100%;
  transform: scaleX(0);
  margin: 15px 0 10px 0;
}

.clickable-div:hover .animated-divider {
  transform: scaleX(1);
}

@media screen and (max-width: 767px) {
  .clusters-row {
    gap: 20px;
    justify-content: center;
  }

  .clickable-div {
    width: 90%;
  }

  .img-container {
    height: 60vh;
  }
}

/** Custom Buttons Stylings */
.simple-button {
  color: var(--text-dark);
  text-decoration: underline !important;
  font-size: 18px;
}

.custom-button {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 15px 32px;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.custom-button:hover {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.custom-button-2 {
  color: var(--accent-color);
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-color: var(--accent-color);
  text-decoration-style: wavy;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.custom-button-transparent-green {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  font-weight: bolder;
  padding: 7px 30px;
  border-radius: 15px;
  color: var(--accent-color);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-button-transparent-green:hover {
  background-color: var(--accent-color);
  font-weight: bolder;
  color: white;
}

/** Home Outlets Styles */
.outlets-section {
  padding: 10px 0;
}

.outlets-nav-menu {
  justify-content: center;
  gap: 20px;
}

.outlets-nav-menu .nav-item {
  font-size: 1rem;
}

.outlets-nav-menu .nav-item:nth-child(1),
.outlets-nav-menu .nav-item:nth-child(3) {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {

  .outlets-nav-menu .nav-item:nth-child(1),
  .outlets-nav-menu .nav-item:nth-child(3) {
    margin-top: 0;
  }
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: var(--primary-color);
}

.outlets-nav-menu .nav-link {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 20px;
}

.outlets-home-section .single-outlet {
  cursor: pointer;
}

.outlets-home-section .outlet-logo {
  width: 100%;
}

.outlets-home-section .outlets-row {
  align-items: center;
  row-gap: 15px;
  justify-content: space-evenly;
}

/** About Home Section Styling */
@media screen and (max-width: 767px) {
  .about-home-section .row {
    gap: 50px;
  }
}

@media screen and (max-width: 576px) {
  .about-content * {
    text-align: center;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-images-container {
  display: flex;
  align-items: center;
}

.about-images {
  width: 100%;
}

.about-button-container {
  margin-top: 1rem;
}

/** Testimonial Styling */
.testimonial-container {
  text-align: center;
}

.testimonial-heading {
  color: #1a2b5f;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}

.testimonial-quote {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.nav-button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.nav-button:hover {
  background-color: var(--accent-color-sencondary);
}

.nav-button:focus {
  outline: none;
}

/** Cluster Banner Styling */
.cluster-banner-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.cluster-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.cluster-banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: white;
  z-index: 5;
  display: flex;
}

@media screen and (max-width: 575.98px) {
  .cluster-banner-content {
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }

  .outlet-banner-logo-container {
    width: 230px !important;
  }
}

.cluster-banner-title {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: var(--font-secondary);
}

.cluster-banner-subtitle {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: var(--font-secondary);
}

.cluster-banner-scroll-indicator {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  z-index: 5;
}

.cluster-banner-scroll-text {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: bolder;
}

.cluster-banner-scroll-icon {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  border-radius: 50%;
  padding: 7px 14px 5px 14px;
  background-color: white;
}

.cluster-banner-scroll-icon i {
  color: black;
  font-weight: bolder !important;
}

.cluster-banner-scroll-icon i.bi-chevron-down::before {
  color: black;
  font-weight: bolder !important;
}

@media (max-width: 768px) {
  .cluster-banner-title {
    font-size: 2.5rem;
  }

  .cluster-banner-subtitle {
    font-size: 2rem;
  }
}

/** Contact Button Styling */
.custom-primary-btn {
  position: absolute;
  left: 50%;
  bottom: 25%;
  transform: translateX(-50%);
  background-color: #00b8e6;
  color: white;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s;
  z-index: 5;
}

.custom-primary-btn:hover {
  background-color: #0099cc;
}

.custom-primary-btn i {
  margin-right: 8px;
}

/** Outlets Per Cluster Styling */
.tab-content-all-outlets {
  width: 100% !important;
}

.cluster-outlets-container {
  gap: 20px;
  justify-content: center;
}

.single-cluster-outlet {
  position: relative;
  border-radius: 30px;
  padding: 0;
  background-color: #ffffff8b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.2s ease;
}

.single-cluster-outlet:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.single-cluster-outlet:hover .cluster-outlet-img {
  transform: scale(1.1);
}

.cluster-outlet-img-container {
  overflow: hidden;
}

.cluster-outlet-img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 30px 30px 0 0;
  transform: scale(1);
  transition: transform 0.9s ease;
  z-index: 1;
}

.cluster-outlet-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cluster-outlet-name {
  font-weight: bolder;
  color: var(--accent-color);
  margin: 0;
}

.cluster-outlet-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary-color);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
}

/** About Cluster Section Styling */
.about-cluster-section .about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-cluster-section .content-row {
  align-items: center;
}

@media screen and (max-width: 767px) {
  .content-row {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.about-cluster-section .about-images {
  width: 100%;
}

/** Gallery Styling */
.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.row-reversed {
  flex-direction: row-reverse;
}

.gallery-content-row {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.gallery-lg-col,
.gallery-sm-col {
  overflow: hidden;
  height: auto;
}

.gallery-sm-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-sm-col-justified {
  justify-content: space-between;
}

.gallery-single-col {
  display: flex;
  justify-content: center;
}

.gallery-single-col .img-container {
  max-width: 800px;
  width: 100%;
}

.gallery-sm-col .img-container {
  flex: 1;
  height: calc(50% - 10px);
  overflow: hidden;
}

.gallery-lg-col .img-container {
  height: 100%;
  overflow: hidden;
}

.gallery-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.9s ease;
}

.gallery-container img.gallery-secondary-img {
  object-fit: contain;
}

.gallery-container img:hover {
  transform: scale(1.1);
}

/* Video styling */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-container video {
  object-fit: contain;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.9s ease;
}

.gallery-container video:hover {
  transform: scale(1.1);
}

/* Custom video controls */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-play-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
}

/** Outlets Per Cluster Styling */
.cluster-outlets-container .category-outlet-label {
  color: #2c88c9;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-weight: 500;
}

.cluster-outlets-container .outlet-heading {
  font-family: var(--font-primary);
  font-weight: 400;
  color: #4a4a4a;
  margin-bottom: 6px;
  font-size: 22px;
}

.cluster-outlets-container .outlet-text {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 6px;
}

.cluster-outlets-container .outlet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  display: block;
}

.cluster-outlets-container .clickable-div-outlet {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.cluster-outlets-container .outlet-img-container {
  width: 100%;
  height: 220px;
  /* Fixed height for all image containers */
  overflow: hidden;
  position: relative;
}

.cluster-outlets-container .clickable-div-outlet:hover .outlet-img {
  transform: scale(1.1);
}

.cluster-outlets-container .animated-divider {
  height: 1px;
  position: relative;
  transition: transform 1s ease;
  background-color: rgb(82, 82, 82);
  width: 100%;
  transform: scaleX(0);
  margin: 15px 0 10px 0;
}

.cluster-outlets-container .clickable-div-outlet:hover .animated-divider {
  transform: scaleX(1);
}

.outlets-btn-container {
  display: flex;
  justify-content: space-between;
}

/** Outlet Banner Styling */
.outlet-banner-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.outlet-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.outlet-banner-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  z-index: 5;
}

@media screen and (max-width: 575.98px) {
  .outlet-banner-content {
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }

  .outlet-banner-logo-container {
    width: 230px !important;
  }
}

.outlet-banner-title {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: var(--font-secondary);
}

.outlet-banner-logo-container {
  width: 30%;
}

.outlet-banner-logo-container .outlet-banner-logo {
  width: 100%;
}

.outlet-banner-subtitle {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: var(--font-secondary);
}

.outlet-banner-scroll-indicator {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  z-index: 5;
}

.outlet-banner-scroll-text {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: bolder;
}

.outlet-banner-scroll-icon {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  border-radius: 50%;
  padding: 7px 14px 5px 14px;
  background-color: white;
}

.outlet-banner-scroll-icon i {
  color: black;
  font-weight: bolder !important;
}

.outlet-banner-scroll-icon i.bi-chevron-down::before {
  color: black;
  font-weight: bolder !important;
}

@media (max-width: 768px) {
  .outlet-banner-title {
    font-size: 2.5rem;
  }

  .outlet-banner-subtitle {
    font-size: 2rem;
  }
}

/** About Home Section Styling */
.about-outlet-section .about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-outlet-section .about-images-container {
  overflow: hidden;
  padding: 0;
}

.about-outlet-section .about-images {
  width: 100%;
  transition: transform 0.5s ease;
  transform: scale(1);
}

.about-outlet-section .about-images.zoomed {
  transform: scale(1.1);
}

.about-outlet-section .about-button-container {
  margin-top: 1rem;
}

/** Favorite Section Styling*/
.outlet-favorite {
  justify-content: center;
}

.favorite-image-container {
  height: 60vh;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.favorite-image {
  height: 100%;
  transition: transform 0.9s ease;
  transform: scale(1);
  width: 100%;
}

.single-favorite:hover .favorite-image {
  transform: scale(1.1);
}

/** Image Banner Styling */
.image-banner-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.image-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

/**Custom Tabs */
.custom-tabs {
  border-bottom: 1px solid #dee2e6;
  width: 100% !important;
}

.custom-tabs .nav-item {
  position: relative;
  margin-bottom: -1px;
}

.custom-tabs .nav-link {
  border: none;
  color: #6c757d;
  padding: 0.75rem 1.25rem;
  transition: all 0.2s ease;
}

.custom-tabs .nav-link:hover {
  color: #495057;
}

.custom-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: transparent;
  border-bottom: 2px solid var(--accent-color);
}

.tab-separator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background-color: #dee2e6;
}

.custom-tabs .nav-item:last-child .tab-separator {
  display: none;
}

.tab-content {
  padding: 1.5rem 0.5rem;
}

.tabs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-tabs {
  width: 50%;
  justify-content: center;
}

/** Parallax Section Styling */
.parallax-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* Extra height for parallax effect */
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  will-change: transform;
}

.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 10;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.section-description {
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: white;
  color: #333;
  border: none;
  padding: 10px 30px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 5;
}

/** Contact Box Section Styling */
.contact-full-section {
  background-color: var(--pale-pink);
}

@media screen and (max-width: 767px) {
  .contact-info-row {
    gap: 30px;
  }
}

.contact-box {
  text-align: center;
  display: flex;
  justify-content: center;
}

.contact-box-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-box-title {
  font-size: 20px;
}

.contact-box-value {
  text-decoration: underline;
  color: black;
}

/** Contact Form Section */
@media screen and (max-width: 767px) {
  .contact-form-container {
    text-align: center;
  }
}

.custom-heading {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 600;
}

/* Form Styling */
.contact-form-container {
  padding-right: 30px;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color: var(--text-dark);
  text-align: start;
}

.contact-form .form-control {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background-color: #fff;
  transition: all 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgb(0 180 216 / 25%);
}

.contact-form textarea {
  resize: none;
}

/* Map Styling */
.contact-map-container {
  padding-left: 30px;
}

.map-wrapper {
  height: 100%;
  min-height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .contact-form-container {
    padding-right: 15px;
    margin-bottom: 30px;
  }

  .contact-map-container {
    padding-left: 15px;
  }
}