* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  overflow-x: hidden;
}

body {
  font-family: "Figtree", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

/* Global Responsive Typography */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 13px;
  }
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav-container {
  max-width: 1440px;
  padding: 0 3rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navbar {
  padding: 0.75rem 0;
}

.navbar-toggler {
  border: 1px solid #000;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: #02419e;
}

.navbar.scrolled .navbar-toggler {
  border-color: #02419e;
}
.logo {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.5px;
}
.language-selector {
  position: relative;
  display: inline-block;
  z-index: 9998;
}

.language-selector-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #000;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  color: #000;
  transition: all 0.3s ease;
}

.language-selector-button:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .language-selector-button {
  border-color: #000;
  color: #000;
}

.navbar.scrolled .language-selector-button:hover {
  border-color: #02419e;
  color: #02419e;
  background: rgba(2, 65, 158, 0.05);
}

.flag-icon {
  width: 24px;
  height: 16px;
  border-radius: 2px;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 9999;
  pointer-events: none;
  max-height: 350px;
  overflow-y: auto;
}

.language-selector.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  color: #1e293b;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f1f5f9;
}

.language-option:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.language-option:first-child {
  border-radius: 8px 8px 0 0;
}

.language-option:hover {
  background: #f8fafc;
}

.language-option.active {
  background: #eff6ff;
  color: #02419e;
  font-weight: 600;
}

.language-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.language-name {
  font-size: 0.875rem;
  font-weight: 500;
}

.language-code {
  font-size: 0.75rem;
  color: #64748b;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.language-selector.active .dropdown-arrow {
  transform: rotate(180deg);
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.hero-section .hero-content {
  padding-left: 1rem;
  padding-right: 1rem;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .hero-background img {
    object-position: center center;
    transform: scale(1.1);
  }
}

@media (max-width: 576px) {
  .hero-background img {
    object-position: 60% center;
    transform: scale(1.15);
  }
}
.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

@media (max-width: 768px) {
  .hero-background::after {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.5) 100%
    );
  }
}

@media (max-width: 576px) {
  .hero-background::after {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.55) 100%
    );
  }
}
.hero-title {
  font-size: 5.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -2px;
}
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  padding: 1.25rem 2rem;
  display: block;
  margin-bottom: 3rem;
  border-radius: 8px;
  text-shadow: 0px 4px 12px #000000cc;
  line-height: 1.6;
  width: fit-content;
}
.cta-button {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: #dd7500;
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(221, 117, 0, 0.4);
  border: none;
  cursor: pointer;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(221, 117, 0, 0.5);
  background: #c26600;
}
.cta-button:active {
  transform: translateY(0);
}

/* Hero Section Responsive */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-subtitle {
    font-size: 1.35rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
    letter-spacing: -1px;
  }
  .hero-subtitle {
    font-size: 1.25rem;
    padding: 1rem 1.5rem;
  }
  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 80px;
  }
  .hero-section .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0.875rem 1.25rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
  }
  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .nav-container {
    padding: 0 1.5rem;
  }
  .navbar-brand {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 70px;
  }
  .hero-section .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    line-height: 1.5;
  }
  .cta-button {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
  }
  .nav-container {
    padding: 0 1rem;
  }
  .navbar-toggler {
    padding: 0.4rem 0.6rem;
    font-size: 1.1rem;
  }
}
.discover-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #02419e;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.discover-description {
  color: #64748b;
  max-width: 900px;
  margin: 0 auto;
}

/* Discover Section Responsive */
@media (max-width: 992px) {
  .discover-title {
    font-size: 2.2rem;
  }
  .discover-section {
    padding: 3rem 0 !important;
  }
}

@media (max-width: 768px) {
  .discover-title {
    font-size: 1.9rem;
  }
  .discover-description {
    font-size: 0.95rem;
  }
  .discover-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 576px) {
  .discover-title {
    font-size: 1.6rem;
  }
  .discover-description {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
}
.history-title {
  font-size: 3rem;
  font-weight: 700;
  color: #02419e;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.history-intro {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.8;
}
.history-right {
  background: #f8fafc;
  padding: 3rem;
  border-radius: 16px;
}
.history-content {
  margin-bottom: 2rem;
}
.history-content-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}
.history-content-text {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.8;
}
.history-navigation {
  display: flex;
  gap: 1rem;
  padding-top: 2rem;
}
.history-nav-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #02419e;
  background: white;
  color: #02419e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.history-nav-button:hover {
  background: #02419e;
  color: white;
}
.history-nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.history-nav-button svg {
  width: 20px;
  height: 20px;
}

/* History Section Responsive */
@media (max-width: 992px) {
  .history-title {
    font-size: 2.5rem;
  }
  .history-intro {
    font-size: 1rem;
  }
  .history-content-title {
    font-size: 1.5rem;
  }
  .history-content-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .history-section {
    padding: 3rem 0;
  }
  .history-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .history-intro {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .history-right {
    padding: 2rem;
  }
  .history-content-title {
    font-size: 1.35rem;
  }
  .history-content-text {
    font-size: 0.95rem;
  }
  .history-nav-button {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .history-title {
    font-size: 1.75rem;
  }
  .history-intro {
    font-size: 0.9rem;
  }
  .history-right {
    padding: 1.5rem;
  }
  .history-content-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .history-content-text {
    font-size: 0.9rem;
  }
}
.split-image-section {
  position: relative;
  width: 100%;
  overflow: visible;
}
.split-image-left img,
.split-image-right img {
  width: 100%;
  height: 100%;
  display: block;
}
/* Government section - full bleed container with centered content */
.government-section {
  position: relative;
  width: 100%;
  padding: 5rem 0;
  overflow: hidden;
  display: block;
  background: #ffffff;
}
.government-section .gov-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 3rem;
}
.gov-header {
  text-align: center;
  margin-bottom: 2rem;
}
.gov-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #02419e;
  margin-bottom: 0.5rem;
}
.gov-header p {
  color: #64748b;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.7;
}
.gov-cards {
  margin-top: 2.5rem;
}
.gov-card {
  background: #fff;
  border: 1px solid #e6eef9;
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 2px 0 rgba(2, 65, 158, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.gov-card .icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f7ff;
  border-radius: 8px;
  color: #0663d6;
  flex-shrink: 0;
}
.gov-card h5 {
  font-weight: 700;
  margin: 0;
  color: #0f1724;
}
.gov-card p {
  color: #475569;
  line-height: 1.8;
  margin: 0;
}
@media (min-width: 1400px) {
  .gov-header h2 {
    font-size: 3.4rem;
  }
}

/* Government Section Responsive */
@media (max-width: 992px) {
  .government-section {
    padding: 3.5rem 0;
  }
  .government-section .gov-inner {
    padding: 0 2rem;
  }
  .gov-header h2 {
    font-size: 2.5rem;
  }
  .gov-header p {
    font-size: 1rem;
  }
  .gov-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .government-section {
    padding: 3rem 0;
  }
  .government-section .gov-inner {
    padding: 0 1.5rem;
  }
  .gov-header h2 {
    font-size: 2rem;
  }
  .gov-header p {
    font-size: 0.95rem;
  }
  .gov-card {
    padding: 1.25rem;
  }
  .gov-card h5 {
    font-size: 1rem;
  }
  .gov-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .government-section {
    padding: 2.5rem 0;
  }
  .government-section .gov-inner {
    padding: 0 1rem;
  }
  .gov-header h2 {
    font-size: 1.75rem;
  }
  .gov-header p {
    font-size: 0.9rem;
  }
  .gov-card .icon {
    width: 36px;
    height: 36px;
  }
}
/* Geography & Natural Environment section */
.geography-section {
  background: transparent;
  margin-bottom: 9rem;
}
.geo-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 3rem;
}
.geo-row {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  flex-wrap: nowrap;
}
.geo-left {
  flex: 0 0 360px;
  max-width: 40%;
}
.geo-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #02419e;
  margin-bottom: 1rem;
  line-height: 1.05;
}
.geo-desc {
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 340px;
}
.geo-cards {
  flex: 1 1 auto;
  display: flex;
  gap: 1rem;
  min-width: 0;
}
.geo-card {
  position: relative;
  flex: 1 1 0;
  min-width: 180px;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(2, 65, 158, 0.08);
}
.geo-card {
  min-width: 0;
}
.geo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 70%
  );
}
.geo-card .overlay {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  right: 1.5rem;
  color: white;
  z-index: 2;
}
.geo-card h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.75rem;
  font-weight: 800;
}
.geo-card p,
.geo-card ul {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}
.geo-card ul {
  padding-left: 1.2rem;
}
/* Photo gallery grid layout */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  /* Two equal rows so middle column (bungalow/fishermen) is 50%/50% */
  grid-template-rows: 50% 50%;
  gap: 18px;
  align-items: stretch;
  height: 720px; /* fixed visual height so percentage rows behave predictably */
  grid-template-areas:
    "col1 bungalow col3"
    "col1 fishermen col3";
}
.photo-gallery-grid .item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(2, 65, 158, 0.06);
  background: #fff;
  display: block;
}
.photo-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* assign grid areas to items for precise placement */
.photo-gallery-grid .item--col1 {
  grid-column: 1;
  grid-row: 1 / span 2;
  padding: 0;
}
.photo-gallery-grid .item--bungalow {
  grid-area: bungalow;
}
/* Column 3 is a single grid cell that contains a nested stacked grid */
.photo-gallery-grid .item--col3 {
  grid-area: col3;
  padding: 0;
}
.photo-gallery-grid .item--fishermen {
  grid-area: fishermen;
}

/* tweak object-position for better crops */
.item--aerial img {
  object-position: 20% 20%;
}
.item--bungalow img {
  object-position: 50% 18%;
}
.item--reef img {
  object-position: 50% 30%;
}
.item--sunset img {
  object-position: 50% 60%;
}
.item--fishermen img {
  object-position: 50% 50%;
}
.item--dancers img {
  object-position: 50% 50%;
}
/* column-3 stacked items inside the right column */
.col3-stack {
  height: 100%;
  display: grid;
  grid-template-rows: 33.33% 33.33% 33.34%;
  gap: 18px;
}
.col3-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
/* left column stacked items inside the first column */
.col1-stack {
  height: 100%;
  display: grid;
  grid-template-rows: 60% 40%;
  gap: 18px;
}
.col1-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .photo-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    grid-template-areas:
      "aerial aerial"
      "bungalow fishermen"
      "sunset dancers"
      "col3 col3";
    height: auto;
  }
  .photo-gallery-grid .item--aerial {
    grid-column: 1 / -1;
    height: 320px;
  }
  .col3-stack {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-rows: repeat(3, 180px);
    gap: 12px;
  }
}
/* Geography Section Responsive */
@media (max-width: 1200px) {
  .geography-section {
    margin-bottom: 6rem;
  }
  .geo-inner {
    padding: 0 2rem;
  }
}

@media (max-width: 992px) {
  .geography-section {
    margin-bottom: 4rem;
  }
  .geo-title {
    font-size: 2.3rem;
  }
  .geo-desc {
    font-size: 1rem;
  }
  .geo-card {
    height: 360px;
  }
  .geo-card h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .geography-section {
    margin-bottom: 3rem;
  }
  .geo-inner {
    padding: 0 1.5rem;
  }
  .geo-row {
    flex-direction: column;
    gap: 2rem;
  }
  .geo-left {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .geo-title {
    font-size: 2rem;
  }
  .geo-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .geo-cards {
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .geo-card {
    flex: 0 0 280px;
    height: 340px;
  }
}

/* Only stack on very narrow screens; keep images beside text on tablets/desktop */
@media (max-width: 575px) {
  .geo-inner {
    padding: 0 1rem;
  }
  .geo-row {
    flex-direction: column;
    gap: 1.25rem;
  }
  .geo-left {
    flex: none;
    width: 100%;
  }
  .geo-title {
    font-size: 1.75rem;
  }
  .geo-desc {
    font-size: 0.9rem;
  }
  .geo-cards {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .geo-card {
    flex: 0 0 260px;
    height: 320px;
  }
  .geo-card h4 {
    font-size: 1.4rem;
  }
}

.discover-header {
  text-align: center;
  margin-bottom: 2rem;
}
.discover-title {
  font-size: 2.4rem;
  color: #0b57a4;
  font-weight: 800;
}
.discover-description {
  color: #6b7280;
  max-width: 920px;
  margin: 0 auto;
}

.discover-grid .discover-card {
  background: #f3f9ff; /* soft blue */
  border: 1px solid rgba(11, 87, 164, 0.08);
  border-radius: 14px;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.discover-grid .discover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(2, 30, 66, 0.06);
}

.discover-card .discover-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: 6px;
  display: block;
  margin-bottom: 14px;
}
.discover-card .discover-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(2, 30, 66, 0.06);
}

.discover-card h5 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.discover-card .card-body {
  padding: 0;
}
.discover-card p,
.discover-card li {
  color: #374151;
  font-size: 0.95rem;
}
.discover-card ul {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .discover-card .discover-img {
    height: 140px;
  }
}

.footer-section {
  background: #f2f2f2;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo-section {
  flex-shrink: 0;
}

.footer-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.footer-text-section {
  text-align: left;
  max-width: 600px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.footer-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.footer-powered {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.footer-copyright {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-text-section {
    text-align: center;
  }

  .footer-logo {
    width: 100px;
    height: 100px;
  }

  .footer-title {
    font-size: 1.25rem;
  }

  .footer-subtitle {
    font-size: 0.9rem;
  }

  .footer-powered {
    font-size: 0.85rem;
  }
}
/* Culture Section Responsive */
@media (max-width: 992px) {
  .culture-section {
    min-height: 500px !important;
  }
  .culture-card {
    max-width: 100% !important;
  }
  .culture-card h2 {
    font-size: 1.9rem !important;
  }
  .culture-card p {
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .culture-section {
    min-height: auto !important;
    padding: 3rem 0 !important;
  }
  .culture-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .culture-card {
    padding: 2rem !important;
    max-width: 100% !important;
  }
  .culture-card h2 {
    font-size: 1.7rem !important;
  }
  .culture-card p {
    font-size: 0.95rem !important;
  }
  .culture-nav-card {
    padding: 1.5rem !important;
  }
  .culture-nav-card h4 {
    font-size: 1.1rem !important;
  }
  .culture-nav-card p {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 576px) {
  .culture-section {
    padding: 2.5rem 0 !important;
  }
  .culture-card {
    padding: 1.5rem !important;
  }
  .culture-card h2 {
    font-size: 1.5rem !important;
  }
  .culture-card p {
    font-size: 0.9rem !important;
  }
  .culture-nav-card {
    padding: 1.25rem !important;
  }
  .culture-nav-card h4 {
    font-size: 1rem !important;
  }
}

/* Geography Feature Section Responsive */
@media (max-width: 992px) {
  .geography-feature-section {
    padding: 3rem 0 !important;
  }
}

@media (max-width: 768px) {
  .geography-feature-section {
    padding: 2.5rem 0 !important;
  }
  .geography-feature-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Photo Gallery Section Responsive */
@media (max-width: 992px) {
  .photo-gallery-section {
    padding: 3rem 0 !important;
  }
  .photo-gallery-grid {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px;
  }
  .photo-gallery-grid .item {
    width: 100% !important;
    height: auto !important;
    grid-column: unset !important;
    grid-row: unset !important;
    grid-area: unset !important;
  }
  .col1-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    height: auto;
  }
  .col1-stack img {
    height: 220px;
    width: 100%;
    object-fit: cover;
  }
  .photo-gallery-grid .item--bungalow {
    height: auto !important;
  }
  .photo-gallery-grid .item--bungalow img {
    height: 220px;
    width: 100%;
  }
  .col3-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    height: auto;
  }
  .col3-stack img {
    height: 180px;
    width: 100%;
    object-fit: cover;
  }
  .photo-gallery-grid .item--fishermen {
    height: auto !important;
  }
  .photo-gallery-grid .item--fishermen img {
    height: 220px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .photo-gallery-section {
    padding: 2.5rem 0 !important;
  }
  .photo-gallery-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .photo-gallery-grid {
    gap: 12px;
  }
  .col1-stack {
    gap: 12px;
  }
  .col1-stack img {
    height: 200px;
  }
  .photo-gallery-grid .item--bungalow img {
    height: 200px;
  }
  .col3-stack {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .col3-stack img {
    height: 160px;
  }
  .photo-gallery-grid .item--fishermen img {
    height: 200px;
  }
}
@media (max-width: 576px) {
  .photo-gallery-section {
    padding: 2rem 0 !important;
  }
  .photo-gallery-grid {
    gap: 16px;
  }
  .col1-stack {
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
  .col1-stack img {
    height: 220px;
  }
  .photo-gallery-grid .item--bungalow img {
    height: 220px;
  }
  .col3-stack {
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
  .col3-stack img {
    height: 220px;
  }
  .photo-gallery-grid .item--fishermen img {
    height: 220px;
  }
}

/* Split Image Section Responsive */
@media (max-width: 768px) {
  .split-image-section {
    margin: 2rem 0;
  }
  .split-image-wrapper {
    flex-direction: column;
  }
  .split-image-half {
    width: 100%;
  }
  .split-image-left {
    margin-top: 0 !important;
  }
}

/* Navbar Responsive */
@media (max-width: 992px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: visible;
  }
  .nav-menu {
    gap: 0.5rem !important;
  }
  .language-selector {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
  }
  .language-dropdown {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }
  .language-selector.active .language-dropdown {
    transform: translateX(-50%) translateY(0);
  }
  .language-selector-button {
    border-color: #02419e;
    color: #02419e;
  }
  .language-selector-button:hover {
    background: rgba(2, 65, 158, 0.05);
  }
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.1rem;
  }
  .logo-icon {
    width: 75px;
    height: 75px;
  }
  .navbar {
    padding: 0.5rem 0;
  }
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 1rem;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  .navbar {
    padding: 0.4rem 0;
  }
  .nav-container {
    padding: 0 1rem;
  }
}

/* Fix for navbar toggler alignment */
@media (max-width: 991px) {
  .navbar-collapse {
    width: 100%;
  }
  .container.nav-container {
    position: relative;
  }
  .navbar-toggler {
    margin-left: auto;
    z-index: 1001;
  }
}

/* Global Section Spacing Responsive */
@media (max-width: 992px) {
  section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 2.5rem 0;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 2rem 0;
  }
}

/* Utility Classes for Responsive */
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .text-center-mobile {
    text-align: center !important;
  }
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .visible-mobile-only {
    display: none !important;
  }
}

/* Custom button hover styles for culture nav buttons */
.btn-outline-primary:hover {
  color: white !important;
}

.btn-outline-primary:hover svg {
  stroke: white !important;
}

/* Split Image Mobile */
.split-image-mobile {
  display: none;
  width: 100%;
}

.split-image-mobile img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Split Image Section Responsive */
@media (max-width: 768px) {
  .split-image-section {
    margin: 2rem 0;
    padding: 0 1rem;
  }

  .split-image-wrapper {
    flex-direction: column;
  }

  /* Hide desktop images on mobile */
  .split-image-half {
    display: none !important;
  }

  /* Show mobile image only on mobile */
  .split-image-mobile {
    display: block;
  }

  .split-image-left {
    margin-top: 0 !important;
  }
}

/* Ensure desktop images show on larger screens */
@media (min-width: 769px) {
  .split-image-mobile {
    display: none !important;
  }

  .split-image-half {
    display: block !important;
  }
}

/* Floating Contact Button */
.floating-contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #02419e 0%, #1a76d2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
  cursor: pointer;
  padding: 0;
  gap: 0;
  box-shadow: 0 8px 24px rgba(2, 65, 158, 0.35);
  border: none;
  font-family: "Figtree", sans-serif;
}

.floating-contact-btn:hover {
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 12px 32px rgba(2, 65, 158, 0.45);
}

.floating-contact-btn:active {
  transform: translateY(-2px) scale(1.08);
}

.floating-contact-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.floating-contact-btn svg path {
  stroke: white !important;
}

.floating-contact-btn span {
  display: none;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: -0.3px;
}

/* Show text on larger screens */
@media (min-width: 768px) {
  .floating-contact-btn {
    width: auto;
    height: 50px;
    padding: 0 24px;
    border-radius: 50px;
    gap: 10px;
    bottom: 40px;
    right: 40px;
    font-size: 1rem;
  }

  .floating-contact-btn span {
    display: inline;
  }

  .floating-contact-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* Mobile responsive */
@media (max-width: 576px) {
  .floating-contact-btn {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    box-shadow: 0 6px 20px rgba(2, 65, 158, 0.3);
  }

  .floating-contact-btn:hover {
    transform: translateY(-4px) scale(1.1);
  }
}
