/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Playfair Display", serif;
  --nav-font: "Gravesend-Sans-Medium";
}

/* Global Colors - Dark Premium Theme */
:root {
  --background-color: #0a0a0a; /* Dark background */
  --surface-color: #1a1a1a; /* Slightly lighter surface */
  --card-color: #252525; /* Card backgrounds */
  --default-color: #e0e0e0; /* Light text */
  --heading-color: #ffffff; /* White headings */
  --accent-color: #00d4ff; /* Bright blue accent */
  --accent-hover: #00b8e6; /* Darker blue on hover */
  --contrast-color: #ffffff; /* White contrast text */
  --border-color: #333333; /* Subtle borders */
  --text-muted: #888888; /* Muted text */
}

/* Nav Menu Colors */
:root {
  --nav-color: rgba(255, 255, 255, 1);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #1a1a1a;
  --nav-dropdown-background-color: #252525;
  --nav-dropdown-color: #e0e0e0;
  --nav-dropdown-hover-color: #00d4ff;
}

/* Color Presets */
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
  --card-color: #ffffff;
  --default-color: #333333;
  --heading-color: #000000;
  --border-color: #e0e0e0;
  --text-muted: #666666;
}

.dark-background {
  --background-color: #0a0a0a;
  --surface-color: #1a1a1a;
  --card-color: #252525;
  --default-color: #e0e0e0;
  --heading-color: #ffffff;
  --border-color: #333333;
  --text-muted: #888888;
}

.transparent-background {
  --background-color: rgba(10, 10, 10, 0.8);
  --surface-color: rgba(26, 26, 26, 0.9);
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

@font-face {
  font-family: Gravesend-Sans-Light;
  src: url(../fonts/Gravesend-Sans-Light.otf) format("opentype");
}
@font-face {
  font-family: Gravesend-Sans-Medium;
  src: url(../fonts/Gravesend-Sans-Medium.otf) format("opentype");
}
@font-face {
  font-family: Gravesend-Sans-Bold;
  src: url(../fonts/Gravesend-Sans-Bold.otf) format("opentype");
}
@font-face {
  font-family: source-sans-pro-regular;
  src: url(../fonts/source-sans-pro-regular.ttf) format("truetype");
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: #000000;
  font-family: var(--default-font);
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.btn {
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  border: none;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
  color: var(--contrast-color);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--contrast-color);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background: transparent;
  padding: 20px 0;
  transition: all 0.3s ease;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 40px;
  margin-right: 12px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Mobile Navigation Base Styles */
.mobile-nav-toggle {
  display: none;
}

/*--------------------------------------------------------------
# Image Slider Section (Gallery)
--------------------------------------------------------------*/
.image-slider-section {
  background: var(--surface-color);
  padding: 0;
  position: relative;
  /* height: 100vh; */
}

.gallery-swiper {
  width: 100%;
}

.gallery-slide {
  position: relative;
  width: 100%;
}

.gallery-image {
  width: 100%;
  /* height: 100vh; */
  transition: transform 0.3s ease;
}

/*--------------------------------------------------------------
# Fourth Section - Content and Distance
--------------------------------------------------------------*/
.fourth-section {
  background: #ebebeb;
  padding: 100px 0;
  position: relative;
}

.content-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: #000;
  font-family: "Gravesend-Sans-Medium";
  letter-spacing: 1px;
}

.content-section p {
  font-size: 18px;
  color: #0f0f0f;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: source-sans-pro-regular;
}

.content-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--card-color);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--accent-color);
  transform: translateX(10px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.2rem;
  color: var(--contrast-color);
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.distance-grid {
  display: grid;
  gap: 2rem;
  width: 60%;
  margin: 0 auto;
}

.distance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.distance-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.distance-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.distance-icon i {
  font-size: 1rem;
  color: var(--contrast-color);
}

.distance-details h4 {
  font-size: 15px;
  font-weight: 500;
  color: #0f0f0f;
  text-align: right;
  font-family: "Gravesend-Sans-Medium";
  letter-spacing: 1px;
  margin-bottom: 0;
}

.distance-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.distance-value {
  font-size: 15px;
  font-weight: 500;
  color: #0f0f0f;
  text-align: right;
  font-family: "Gravesend-Sans-Medium";
  letter-spacing: 1px;
}

.distance-section-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.distance-section-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.distance-section-footer .btn {
  width: 100%;
}

/*--------------------------------------------------------------
# Hero Banner Section with Swiper Slider
--------------------------------------------------------------*/
.hero-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  margin-top: -94px;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--contrast-color);
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-color);
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

/* Swiper Pagination Styles */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Black Background Section
--------------------------------------------------------------*/
.black-section {
  background: #000000;
  color: var(--contrast-color);
  padding: 120px 0 80px;
  position: relative;
  min-height: 100vh;
}

.black-section-content {
  position: absolute;
  width: 45%;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}

.black-section-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 0;
  /* background: linear-gradient(
    89.82deg,
    rgba(255, 255, 255, 0) -16.82%,
    rgba(255, 255, 255, 0.835574) 17.36%,
    #ffffff 48.05%,
    rgba(242, 242, 242, 0.775574) 78.93%,
    rgba(255, 255, 255, 0) 117.58%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  /* background-clip: text; */
  color: #fff;
  line-height: 1.5;
  text-align: center;
  font-family: "Gravesend-Sans-Medium", sans-serif;
}

/* Text Reveal Animation Styles */
.text-reveal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.text-reveal-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.text-reveal-text {
  display: inline-block;
  opacity: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Center-to-Sides Reveal Effect with Glow */
.text-reveal-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  /* background: #000; */
  transform: translateX(-50%);
  z-index: 1;
}

/* Corner text specific styles */
.corner-text .text-reveal-text {
  position: relative;
  overflow: hidden;
}

.corner-text .text-reveal-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.corner-text .text-reveal-text.animate::before {
  width: 100%;
}

/* Corner Text Elements */
.corner-text {
  position: relative;
  bottom: 80px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* width: 86%; */
  font-family: "Gravesend-Sans-Medium";
}

.corner-text-left {
  left: 40px;
}

.corner-text-right {
  right: 40px;
  font-size: 12px;
  font-family: source-sans-pro-regular;
  font-weight: 300;
  text-transform: none;
  width: 45%;
  text-align: right;
  right: 0;
  float: right;
}

/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location {
  background: var(--surface-color);
}

.location-card {
  background: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.location-card:hover::before {
  transform: scaleX(1);
}

.location-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.location-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.location-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.location-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Amenities Section
--------------------------------------------------------------*/
.amenities {
  background: var(--background-color);
}

.amenity-card {
  background: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.amenity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-icon {
  width: 40px;
  height: auto;
  /* background: linear-gradient(135deg, var(--accent-color), var(--accent-hover)); */
  /* border-radius: 12px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0 auto 1.5rem; */
}

.amenity-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.amenity-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.amenity-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: var(--surface-color);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--default-color);
  line-height: 1.6;
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

.about-image {
  position: relative;
  height: 400px;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 100%;
}

.grid-item {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.grid-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.item-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.item-3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.item-4 {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
  display: none;
}

/*--------------------------------------------------------------
# Services Section (keeping for compatibility)
--------------------------------------------------------------*/
.services {
  background: var(--background-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.service-card {
  background: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--accent-hover);
  gap: 0.75rem;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Contact Section - New Minimalist Design
--------------------------------------------------------------*/
.contact {
  background-color: #f5f5f5 !important;
  padding: 100px 0;
}

.contact-header {
  margin-bottom: 50px;
  text-align: left;
}

.contact-title {
  font-size: 30px;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  margin: 0;
  font-family: "Gravesend-Sans-Medium";
  letter-spacing: 1px;
}

.form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  padding: 12px 0;
  font-size: 1rem;
  color: #000;
  font-family: var(--default-font);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #000000cc;
  font-family: source-sans-pro-regular;
  font-size: 15px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  text-align: center;
  margin-top: 50px;
}

.download-brochure-btn {
  border: 1px solid transparent;
  border-image-source: linear-gradient(
    167deg,
    #000000 0%,
    rgba(0, 0, 0, 0) 47.02%,
    rgba(0, 0, 0, 0) 52.45%,
    #000000 100%
  );
  border-image-slice: 1;
  color: #000;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Gravesend-Sans-Medium", sans-serif;
  background: transparent;
}

.download-brochure-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.download-brochure-btn:hover i {
  transform: translateY(2px);
}

/*--------------------------------------------------------------
# Footer - New Dark Theme Design
--------------------------------------------------------------*/
.footer {
  background-image: url("../img/footer-bg.png");
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  background-size: 100% 100%;
  height: 100dvh;
  background-position: 100% 100%;
}

.footer .container {
  position: relative;
  z-index: 2;
}

/* Motivational Quote */
.footer-quote {
  margin-bottom: 40px;
}

.quote-text {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  font-family: "Gravesend-Sans-Medium";
  letter-spacing: 1px;
}

/* Partners Section */
.footer-partners {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
  text-align: center;
}

.partners-title {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-family: "Gravesend-Sans-Medium";
}

.partners-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.logo-letter {
  background: #ffffff;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.logo-circle {
  background: #ffffff;
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-text {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Addresses Section */
.footer-addresses {
  width: 45%;
  padding-top: 35%;
}

.address-section:nth-child(1) {
  margin-bottom: 30px;
}

.address-title {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Gravesend-Sans-Medium";
}

.address-text {
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  font-size: 12px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-family: "source-sans-pro-regular";
}

/* Social Media Section */
.footer-social {
  margin-bottom: 0;
  text-align: right;
  padding-top: 35%;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link {
  color: #ffffffc4;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: "Gravesend-Sans-Medium";
}

.social-link:hover {
  color: var(--accent-color);
  text-decoration: none;
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--background-color);
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  width: 50px;
  height: 50px;
  border-radius: 12px;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #ebebeb;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
}

/*--------------------------------------------------------------
# Map Section
--------------------------------------------------------------*/
.map-section {
  background: #000000;
  padding: 0;
  position: relative;
  /* height: 100vh; */
  overflow: hidden;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000000;
}

/* Silver House Address (Top Left) */
.map-address {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 10;
  color: #ffffff;
}

.map-address h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.map-address p {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
}

/* Map Content */
.map-content {
  position: relative;
  width: 100%;
  /* height: 100%; */
}

/* Silver House Location Marker (Center-Right) */
.silver-house-marker {
  position: absolute;
  top: 50%;
  right: 30%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
}

.marker-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 10px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.marker-label {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Points of Interest */
.poi {
  position: absolute;
  z-index: 15;
}

.poi-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  margin-bottom: 5px;
}

.poi-label {
  font-size: 0.7rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-align: center;
}

.poi-line {
  position: absolute;
  background: #ffffff;
  opacity: 0.6;
  transform-origin: left center;
}

/* POI Positions */
.poi-airport {
  top: 15%;
  left: 20%;
}

.poi-airport .poi-line {
  width: 120px;
  height: 2px;
  transform: rotate(45deg);
  top: 15px;
  left: 15px;
}

.poi-bkc {
  bottom: 25%;
  left: 15%;
}

.poi-bkc .poi-line {
  width: 100px;
  height: 2px;
  transform: rotate(-30deg);
  bottom: 15px;
  left: 15px;
}

.poi-phoenix {
  top: 35%;
  left: 25%;
}

.poi-phoenix .poi-line {
  width: 80px;
  height: 2px;
  transform: rotate(20deg);
  top: 15px;
  left: 15px;
}

.poi-hospital {
  top: 20%;
  left: 50%;
}

.poi-hospital .poi-line {
  width: 60px;
  height: 2px;
  transform: rotate(-15deg);
  top: 15px;
  left: 15px;
}

.poi-metro {
  top: 30%;
  left: 55%;
}

.poi-metro .poi-line {
  width: 50px;
  height: 2px;
  transform: rotate(-10deg);
  top: 15px;
  left: 15px;
}

.poi-rcity {
  top: 25%;
  right: 20%;
}

.poi-rcity .poi-line {
  width: 70px;
  height: 2px;
  transform: rotate(25deg);
  top: 15px;
  right: 15px;
}

.poi-eastern {
  bottom: 35%;
  right: 25%;
}

.poi-eastern .poi-line {
  width: 40px;
  height: 2px;
  transform: rotate(-5deg);
  bottom: 15px;
  right: 15px;
}

.poi-monorail {
  bottom: 20%;
  left: 45%;
}

.poi-monorail .poi-line {
  width: 90px;
  height: 2px;
  transform: rotate(35deg);
  bottom: 15px;
  left: 15px;
}

/* Roads and Geographical Features */
.road {
  position: absolute;
  background: #ffffff;
  opacity: 0.3;
}

.western-highway {
  top: 10%;
  left: 10%;
  width: 4px;
  height: 60%;
  transform: rotate(5deg);
}

.eastern-highway {
  top: 15%;
  right: 20%;
  width: 4px;
  height: 50%;
  transform: rotate(-15deg);
}

.secondary-roads {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
        90deg,
        transparent 49%,
        rgba(255, 255, 255, 0.1) 49%,
        rgba(255, 255, 255, 0.1) 51%,
        transparent 51%
      )
      0 0 / 50px 50px,
    linear-gradient(
        0deg,
        transparent 49%,
        rgba(255, 255, 255, 0.1) 49%,
        rgba(255, 255, 255, 0.1) 51%,
        transparent 51%
      )
      0 0 / 50px 50px;
}

/* Area Labels */
.area-label {
  position: absolute;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.terminal2 {
  top: 5%;
  left: 15%;
}

.kurla {
  top: 25%;
  left: 8%;
}

.ghatkopar-west {
  top: 40%;
  left: 35%;
}

.vidyavihar {
  top: 60%;
  left: 25%;
}

.tilak-nagar {
  bottom: 15%;
  left: 30%;
}

/* Google Maps Link (Bottom Right) */
.google-maps-link {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}

.maps-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d9d9d9;
  text-decoration: underline;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  font-family: "Gravesend-Sans-Medium";
  text-align: right;
  text-underline-offset: 3px;
}

.maps-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.maps-link i {
  font-size: 1rem;
}

/* Amenities Section Styles */
.amenities-section {
  background: #000000;
  padding-top: 40px;
  position: relative;
}

.amenities-title {
  font-family: "Gravesend-Sans-Medium";
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 40px;
}

/* Accordion Styles */
.amenities-accordion {
  width: 100%;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #fff !important;
}

.accordion-item {
  border: 1px solid transparent;
  border-image-source: linear-gradient(
    176deg,
    #ffffff 0%,
    rgba(153, 153, 153, 0) 47.28%,
    rgba(255, 255, 255, 0) 52.88%,
    #ffffff 100%
  );
  border-image-slice: 1;
  margin-bottom: 30px;
}

.accordion-header {
  position: relative;
  padding: 25px 50px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s ease;
  background: transparent;
  border: none;
  width: 100%;
}

.accordion-header:hover {
  opacity: 0.7;
}

.accordion-title {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  text-align: left;
  margin-bottom: 0;
}

/* Plus Icon */
.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
  transition: all 0.4s ease;
}

.accordion-icon::before {
  width: 20px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.accordion-icon::after {
  width: 1px;
  height: 20px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.accordion-item.active .accordion-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

/* Content Area */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 600px;
  padding-bottom: 40px;
  padding: 0 50px 40px;
}

.accordion-body {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.accordion-item.active .accordion-body {
  opacity: 1;
  transform: translateY(0);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
  margin-top: 10px;
}

.amenity-item {
  font-size: 12px;
  line-height: 1.6;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 300;
  font-family: "Gravesend-Sans-Light";
  text-transform: capitalize;
  display: flex;
  text-align: left;
  justify-content: left;
  align-items: center;
  gap: 10px;
}

/* Amenities Showcase Slider Styles */
.amenities-showcase-section {
  width: 100%;
  background: #000;
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.showcase-title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
}

.showcase-subtitle {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  font-family: "Inter", sans-serif;
}

.amenities-showcase-swiper {
  width: 100%;
}

.showcase-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.showcase-image {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.showcase-caption {
  padding: 12px 30px;
  text-align: center;
}

.caption-text {
  color: #ffffff;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "Gravesend-Sans-Medium";
  text-align: center;
}

/* Custom Swiper Navigation for Showcase */
.amenities-showcase-swiper .swiper-button-next,
.amenities-showcase-swiper .swiper-button-prev {
  color: #ffffff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.amenities-showcase-swiper .swiper-button-next:hover,
.amenities-showcase-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.amenities-showcase-swiper .swiper-button-next {
  right: 50px;
}

.amenities-showcase-swiper .swiper-button-prev {
  left: 50px;
}

.amenities-showcase-swiper .swiper-button-next:after,
.amenities-showcase-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: 300;
}

/* Custom Swiper Pagination for Showcase */
.amenities-showcase-swiper .swiper-pagination {
  bottom: 30px;
}

.amenities-showcase-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.amenities-showcase-swiper .swiper-pagination-bullet-active {
  background: #ffffff;
  width: 30px;
  border-radius: 5px;
}

.map-header {
  position: absolute;
  top: 5%;
  left: 16%;
  z-index: 9;
}

.map-header h2 {
  font-family: "Gravesend-Sans-Medium";
  font-size: 20px;
  letter-spacing: 1px;
}

.map-subtitle {
  font-family: "Gravesend-Sans-Medium";
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.silver-skyline-section {
  padding-top: 40px;
  background: #000;
}

.silver-skyline-header {
  padding-bottom: 40px;
}

.silver-skyline-section h2 {
  font-family: "Gravesend-Sans-Medium";
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 40px;
}

.footer-bottom {
  padding: 15px 0;
  background: #fff;
}

.footer-bottom p {
  margin-bottom: 0;
  color: #0f0f0f;
  font-family: "Gravesend-Sans-Light";
  font-size: 15px;
  letter-spacing: 1px;
}

.footer-bottom p:nth-child(2) {
  text-align: right;
}

/*--------------------------------------------------------------
# CONSOLIDATED MEDIA QUERIES
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# text-container
--------------------------------------------------------------*/

/* Text animation section */
.text-container,
.text-container-2 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #000;
  flex-direction: column;
}

.reveal-text,
.reveal-text-2,
.reveal-text-3,
.reveal-text-4 {
  /* font-size: clamp(3rem, 8vw, 8rem); */
  /* font-weight: bold; */
  color: #fff;
  text-align: center;
  line-height: 1.2;
  position: relative;
  font-family: 'Gravesend-Sans-Medium';
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateX(0px);
  font-size: 24px;
  text-transform: uppercase;
  font-family: 'Gravesend-Sans-Medium';
}

.word {
  display: inline-block;
  margin: 0 0.2em;
  font-family: 'Gravesend-Sans-Medium';
}

/*--------------------------------------------------------------
# text-container
--------------------------------------------------------------*/

/* Minimum Width 1600px */
@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1520px;
  }
}

/* Desktop Navigation - Minimum Width 1200px */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 20px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: linear-gradient(
      90deg,
      var(--accent-color),
      var(--accent-hover)
    );
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 8px;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 12px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Maximum Width 1200px */
@media (max-width: 1200px) {
  .amenities-container {
    padding: 0 60px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-showcase-swiper {
    height: 500px;
  }

  .amenities-showcase-swiper .swiper-button-next {
    right: 30px;
  }

  .amenities-showcase-swiper .swiper-button-prev {
    left: 30px;
  }
}

/* Mobile Navigation - Maximum Width 1199px */
@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }

  .mobile-nav-toggle {
    display: block;
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(0, 212, 255, 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(0, 212, 255, 0.05);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(0, 212, 255, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  .map-header {
    left: 2%;
    width: 50%;
  }

  .map-header h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .map-subtitle {
    font-size: 8px;
  }
}

/* Maximum Width 768px */
@media (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  /* Header */
  .header .logo img {
    width: 150px;
  }

  /* Black Section */
  .black-section-content {
    width: 100%;
  }

  .black-section-title {
    font-size: 16px;
  }

  .black-section-description {
    font-size: 1rem;
  }

  .black-section-buttons {
    flex-direction: column;
  }

  .corner-text {
    position: relative;
    bottom: 20px;
    font-size: 0.8rem;
    width: 80%;
  }

  .corner-text-left {
    left: 20px;
    bottom: 80px;
    font-size: 18px;
  }

  .corner-text-right {
    left: 20px;
    bottom: 65px;
    float: left;
    text-align: left;
  }

  /* Content Section */
  .content-section h2 {
    font-size: 18px;
    line-height: 1.6;
  }

  .content-section .lead {
    font-size: 1.1rem;
  }

  .content-section p {
    font-size: 15px;
  }

  /* Distance Section */
  .distance-section {
    padding: 0rem;
    margin-top: 2rem;
  }

  .distance-section h3 {
    font-size: 1.5rem;
  }

  .distance-grid {
    width: 100%;
  }

  /* Image Slider */
  .image-slider-section {
    height: auto;
  }

  .gallery-image {
    height: auto;
  }

  /* Stats */
  .stats-row {
    flex-direction: column;
    gap: 1rem;
  }

  /* Service Card */
  .service-card {
    margin-bottom: 2rem;
  }

  /* Contact Form */
  .contact-form-container {
    padding: 40px 20px;
  }

  .contact-title {
    font-size: 18px;
  }

  .contact-form {
    padding: 0px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-group {
    width: 100%;
  }

  .download-brochure-btn {
    width: max-content;
    justify-content: center;
    padding: 10px;
    font-size: 12px;
  }

  /* Footer */
  .footer-bottom p {
    font-size: 7px;
  }

  .social-links {
    justify-content: space-between;
    flex-direction: row;
    gap: 5px;
  }

  .social-links a {
    font-size: 12px;
  }

  .footer .text-md-end {
    text-align: center !important;
    margin-top: 1rem;
  }

  /* Map Section */
  .map-address {
    top: 20px;
    left: 20px;
  }

  .map-address h3 {
    font-size: 1.2rem;
  }

  .map-address p {
    font-size: 0.8rem;
  }

  .marker-icon {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .poi-label {
    font-size: 0.6rem;
  }

  .google-maps-link {
    bottom: 20px;
    right: 20px;
  }

  /* Amenities Section */
  .amenities-section {
    padding: 80px 0;
  }

  .amenities-container {
    padding: 0 30px;
  }

  .amenities-title {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 60px;
  }

  .accordion-header {
    padding: 30px 0;
  }

  .accordion-title {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .amenity-item {
    font-size: 12px;
  }

  /* Amenities Showcase */
  .showcase-header {
    margin-bottom: 40px;
  }

  .showcase-title {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .showcase-subtitle {
    font-size: 12px;
  }

  .amenities-showcase-swiper {
    height: 400px;
  }

  .showcase-caption {
    bottom: 40px;
    padding: 10px 24px;
  }

  .caption-text {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .amenities-showcase-swiper .swiper-button-next,
  .amenities-showcase-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .amenities-showcase-swiper .swiper-button-next {
    right: 20px;
  }

  .amenities-showcase-swiper .swiper-button-prev {
    left: 20px;
  }

  .amenities-showcase-swiper .swiper-button-next:after,
  .amenities-showcase-swiper .swiper-button-prev:after {
    font-size: 16px;
  }

  .footer {
    background-image: none;
    background-color: #000;
    overflow: auto;
    height: auto;
    padding-bottom: 0;
  }

  .footer-img img {
    width: 100%;
    height: auto;
  }
  .quote-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .partners-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .footer-partners {
    justify-content: start;
    align-items: flex-start;
  }

  .partners-title {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .footer-addresses {
    padding-top: 0;
    width: auto;
    display: flex;
  }
  .footer-social {
    padding-top: 0;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    font-size: 12px;
  }
}

/* Maximum Width 576px */
@media (max-width: 576px) {
  /* Black Section */
  .black-section-title {
    font-size: 16px;
  }

  /* Content Section */
  .content-section h2 {
    font-size: 18px;
  }

  /* Contact Form */
  .contact-title {
    font-size: 1.5rem;
  }

  .contact-form-container {
    padding: 30px 15px;
  }

  /* Map Section */
  .map-section {
    height: 80vh;
  }

  .map-address h3 {
    font-size: 1rem;
  }

  .map-address p {
    font-size: 0.7rem;
  }

  .marker-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .poi-label {
    font-size: 0.5rem;
  }

  .area-label {
    font-size: 0.5rem;
  }

  .maps-link {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}

/* Maximum Width 480px */
@media (max-width: 480px) {
  /* Amenities Container */
  .amenities-container {
    padding: 0 20px;
  }

  .accordion-header {
    padding: 15px 15px;
  }

  /* Amenities Showcase */
  .showcase-header {
    margin-bottom: 30px;
  }

  .showcase-title {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .showcase-subtitle {
    font-size: 11px;
  }

  .amenities-showcase-swiper {
    height: 300px;
  }

  .showcase-caption {
    bottom: 30px;
    padding: 8px 20px;
  }

  .caption-text {
    font-size: 10px;
  }

  .amenities-showcase-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .amenities-showcase-swiper .swiper-pagination-bullet-active {
    width: 24px;
  }

  .distance-details h4,
  .distance-value {
    font-size: 14px;
  }

  .distance-grid {
    gap: 10px;
  }

  .accordion-item.active .accordion-content {
    padding: 0 20px 40px;
  }
  .silver-skyline-section h2 {
    font-size: 16px;
    padding-bottom: 20px;
  }

  .contact-title {
    font-size: 16px;
  }
  .char {
    font-size: 14px;
  }
}

body.scrolled .header {
  background-color: #000;
}

/* New Normal Footer Styles */
.footer-normal {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: 0;
    font-family: 'Inter', sans-serif;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'Gravesend-Sans-Medium', sans-serif;
}

.footer-column h5 {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    opacity: 0.8;
    font-family: 'Gravesend-Sans-Medium', sans-serif;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'source-sans-pro-regular', sans-serif;
}

.footer-column .tagline {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Address Blocks */
.address-block {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.address-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Social Links */
.social-links-normal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.social-links-normal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.social-links-normal a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-links-normal i {
    font-size: 16px;
}

/* RERA Info */
.rera-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.rera-info p {
    font-size: 12px;
    margin-bottom: 10px;
}

.rera-link {
    color: #00d4ff;
    text-decoration: none;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.rera-link:hover {
    color: #00b8e6;
    gap: 8px;
}

/* Footer Bottom */
.footer-bottom-normal {
    background: #0f0f0f;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-normal p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    font-family: 'source-sans-pro-regular', sans-serif;
}
.qr-img{
    width: 100px;
}
.map-content .map-img{
  width: 100%;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .footer-normal {
        padding: 40px 0 0;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .social-links-normal {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-bottom-normal .text-md-end {
        text-align: left !important;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .footer-column h4 {
        font-size: 13px;
    }

    .footer-column p {
        font-size: 12px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-links-normal a {
        font-size: 12px;
    }

    .footer-bottom-normal p {
        font-size: 11px;
    }
}