:root {
    --primary-color: #E49E22;
    --secondary-color: #5D4A1F;
    --secondary-light: #E49E22;
    --white: #fff;
    --light-gray: #f7f7fa;
    --medium-gray: #e5e7eb;
    --dark-gray: #000000;
    --text-light: #5D4A1F;
    --radius: 12px;
    --radius-xl: 18px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

/* Scroll Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade-in.animated {
    opacity: 1;
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Ensure masterplan image visibility */
.masterplan-image {
    display: block;
    width: 100%;
    height: auto;
}

/* Tower items staggered animation */
.tower-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.towers-section.animated .tower-item:nth-child(1) {
    animation: fadeInUp 0.6s ease forwards 0.1s;
}

.towers-section.animated .tower-item:nth-child(2) {
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.towers-section.animated .tower-item:nth-child(3) {
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.towers-section.animated .tower-item:nth-child(4) {
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Masterplan image animation */
.masterplan-section.animated .masterplan-image {
    animation: zoomIn 0.8s ease forwards;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Fully Responsive Hero Section Styles */
.luxury-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* New viewport unit for mobile browsers */
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: white;
  margin-top: -70px;
}

/* Show mobile hero by default, hide desktop */
.mobile-hero {
  display: flex;
}

.desktop-hero {
  display: none !important;
}

/* Desktop Hero Styles */
.desktop-hero {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.desktop-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.desktop-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.desktop-hero-content {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text-wrapper {
  color: #1a2238;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.desktop-hero-title {
  font-family: 'Poppins';
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1a2238;
}

.gold-text {
  color: #d4af37;
  position: relative;
  display: inline-block;
}

.gold-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #ffe082);
  border-radius: 2px;
}

.desktop-hero-subtitle {
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 20px;
  font-weight: 500;
}

.desktop-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
}

.desktop-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero-btn.primary {
  background: #d4af37;
  color: white;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.hero-btn.primary:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.hero-btn.secondary {
  background: transparent;
  color: #1a2238;
  border: 2px solid #d4af37;
}

.hero-btn.secondary:hover {
  background: #d4af37;
  color: white;
}

.hero-image-wrapper {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-building-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.hero-building-img:hover {
  transform: scale(1.02);
}

/* Hide mobile hero on large screens, show desktop hero */
@media (min-width: 1024px) {
  .mobile-hero {
    display: none !important;
  }
  
  .desktop-hero {
    display: flex !important;
  }
}

@media (min-width: 1400px) {
  .desktop-hero-title {
    font-size: 5rem;
  }
  
  .desktop-hero-subtitle {
    font-size: 1.8rem;
  }
  
  .desktop-hero-description {
    font-size: 1.2rem;
  }
}

@media (min-width: 1920px) {
  .desktop-hero-content {
    max-width: 1600px;
  }
  
  .desktop-hero-title {
    font-size: 5.5rem;
  }
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* filter: brightness(0.8); */
  animation: kenburns 30s infinite alternate;
}

.hero-content-container {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 3rem;
}

.hero-logo-badge {
  width: clamp(80px, 25vw, 120px);
  height: clamp(80px, 25vw, 120px);
  margin-bottom: clamp(1rem, 5vw, 2rem);
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: clamp(50px, 20vw, 80px);
  height: auto;
}

.hero-text-content {
  max-width: 800px;
  padding: 0 1rem;
}

.hero-pretitle {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.8rem, 3.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(255, 183, 0);
  margin-bottom: clamp(0.8rem, 3vw, 1.5rem);
}

.gold-line {
  display: inline-block;
  width: clamp(25px, 8vw, 40px);
  height: 2px;
  background: rgb(255, 183, 0);
  margin-right: clamp(8px, 3vw, 15px);
}

.hero-heading {
  font-size: clamp(2rem, 9vw, 5rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  letter-spacing: 0.5px;
  color: rgb(255, 187, 0);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.hero-subheading {
  font-size: clamp(1.1rem, 4.5vw, 2.5rem);
  font-weight: 400;
  color: white;
  margin-bottom: 0;
  opacity: 0.9;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
  line-height: 1.3;
}

/* Animations */
/* @keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-5%, -5%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-pop-in {
  animation: popIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.5); }
  80% { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
} */

/* Mobile-First Responsive Adjustments */
@media (min-width: 400px) {
  .hero-content-container {
    padding: 1.5rem;
  }
}

@media (min-width: 576px) {
  .hero-content {
    padding-top: 4rem;
  }
  
  .hero-text-content {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 5rem;
  }
  
  .hero-heading {
    letter-spacing: 1px;
  }
  
  .hero-subheading {
    line-height: 1.4;
  }
}

@media (min-width: 992px) {
  .hero-content {
    padding-top: 6rem;
  }
  
  .hero-content-container {
    padding: 2rem;
  }
}

/* Special adjustments for very small phones */
@media (max-width: 360px) {
  .hero-heading {
    font-size: clamp(1.8rem, 10vw, 5rem);
  }
  
  .hero-subheading {
    font-size: clamp(1rem, 5vw, 2.5rem);
  }
}

/* Orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .luxury-hero {
    min-height: 150vh;
  }
  
  .hero-content {
    padding-top: 2rem;
  }
  
  .hero-logo-badge {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
  
  .hero-logo {
    width: 50px;
  }
}

@media (max-width: 600px) {
  .luxury-hero {
    min-height: 85vh;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero-content-container {
    padding: 0 10px;
  }
  .hero-heading {
    font-size: 2rem;
  }
  .hero-subheading {
    font-size: 1.1rem;
  }
  .hero-content, .hero-text-content {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-logo-badge {
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Masterplan Section Styles */
.masterplan-section {
    padding: 2rem 0 1rem 0;
}

/* Minimalist Tower Section Styles */
.towers-section {
    padding: 1rem 0 2rem 0;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-tag {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.towers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5rem;
}

.tower-item {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    display: block;
    padding: 0;
    margin: 0;
}

.tower-item:hover {
    transform: translateY(-5px);
}

.tower-image-wrapper {
  background-color: #fff;
  position: relative;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.188);
  display: block;
  padding: 0;
  line-height: 0;
  border: none;
}

.tower-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: bottom;
}

@media (max-width: 768px) {
  .tower-image-wrapper {
    height: 150px;
  }
}

.tower-item:hover .tower-image-wrapper img {
    transform: scale(1.03);
}

.tower-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(0,0,0,0.7);
    color: white;
}

.tower-badge.ready {
    background: #4CAF50;
}

.tower-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .masterplan-section {
        padding: 1.5rem 0 0.5rem 0;
    }
    
    .towers-section {
        padding: 0.5rem 0 1.5rem 0;
    }
    
    .towers-list {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tower-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .section-intro {
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .tower-name {
        font-size: 1.2rem;
    }
}

/* Section Header Styles */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto 24px auto;
}

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

/* Section Label and Divider */
.section-label {
    display: inline-block;
    margin: 0 auto 8px auto;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-divider {
    width: 48px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    margin: 10px auto 18px auto;
    display: block;
}

.section-header .about-text {
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Table Styles for Consistency */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

table th,
table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
    white-space: nowrap;
}

table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}

table tbody tr:nth-child(even) {
    background-color: var(--light-gray);
}

table tbody tr:hover {
    background-color: #e0e7ff;
    transition: background-color 0.2s ease;
}

table td:last-child {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Property Types Section */
.section-header {
    margin-bottom: 60px;
    text-align: left; /* Default, can be overridden by .center */
}

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

.section-subtitle {
    font-size: 1.1em;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.section-title {
    font-size: 2.5em;
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1em;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto; /* For centered descriptions */
}

/* New Styles for Property Listings Section */
.property-listings {
    padding: 80px 0;
    background: var(--white);
}

.property-category {
    margin-bottom: 60px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.property-category:last-of-type {
    margin-bottom: 0;
}

.category-title {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

/* Table Styles */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* Ensures horizontal scroll on small screens */
    -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden; /* Ensures rounded corners apply to content */
    box-shadow: var(--shadow-sm);
}

table th,
table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
    white-space: nowrap; /* Prevent content from wrapping too early */
}

table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}

table tbody tr:nth-child(even) {
    background-color: var(--light-gray);
}

table tbody tr:hover {
    background-color: #e0e7ff; /* Lighter primary hover */
    transition: background-color 0.2s ease;
}

/* Specific styling for the 'Price (PKR)' columns for better readability */
table td:last-child {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Utility Classes (retained/added) */
.center {
    text-align: center;
}

.mt-4 {
    margin-top: 25px; /* Consistent margin for titles */
}

.mt-5 {
    margin-top: 40px;
}

/* Payment Plan Info */
.payment-plan-info {
    padding: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius);
    margin-top: 60px;
    box-shadow: var(--shadow);
}

.payment-plan-info h4 {
    color: #f3f3f3;
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.payment-plan-info p {
    font-size: 1.1em;
    line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }

    .category-title {
        font-size: 1.6em;
    }

    table th,
    table td {
        padding: 12px 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8em;
    }

    .category-title {
        font-size: 1.4em;
    }

    /* Smaller padding for tables on very small screens */
    table th,
    table td {
        padding: 10px;
        font-size: 0.85em;
    }
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background: #f8f9fa;
  margin-bottom: 2rem;
}

.section-header.center {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #333;
  border: 2px solid #d4af37;
  border-radius: 50px;
  font-family: 'Poppins';
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: #d4af37;
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30, 58, 138, 0.08);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.16);
}

.image-container {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(30, 58, 138, 0.7);
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }
  .image-container {
    height: 110px;
  }
  .gallery-caption {
    font-size: 0.95rem;
    padding: 0.35rem 0.5rem;
  }
}

.gallery-item.large {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-item:not(.large) {
  grid-column: span 4;
  grid-row: span 1;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  transform: translateY(20px);
  transition: transform 0.3s ease;
  width: 100%;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.view-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .view-btn {
  opacity: 1;
}

/* Lightbox Styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lightbox-modal.active {
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  color: white;
  text-align: center;
  padding: 1rem;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn {
  left: -70px;
}

.next-btn {
  right: -70px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .gallery-item:not(.large) {
    grid-column: span 6;
  }
}

@media (max-width: 992px) {
  .gallery-item.large {
    grid-column: span 12;
  }
  
  .gallery-item:not(.large) {
    grid-column: span 6;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .prev-btn {
    left: -50px;
  }
  
  .next-btn {
    right: -50px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 3rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
  }
  
  .gallery-item.large {
    grid-column: span 6;
    grid-row: span 1;
  }
  
  .gallery-item:not(.large) {
    grid-column: span 3;
  }
  
  .lightbox-nav {
    width: 35px;
    height: 35px;
  }
  
  .prev-btn {
    left: -40px;
  }
  
  .next-btn {
    right: -40px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 0.75rem;
  }
  
  .gallery-item.large,
  .gallery-item:not(.large) {
    grid-column: span 2;
  }
  
  .gallery-overlay {
    padding: 1rem;
  }
  
  .overlay-content h4 {
    font-size: 1rem;
  }
  
  .overlay-content p {
    font-size: 0.8rem;
  }
  
  .view-btn {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }
  
  .lightbox-content {
    max-width: 95%;
  }
  
  .lightbox-nav {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .prev-btn {
    left: -35px;
  }
  
  .next-btn {
    right: -35px;
  }
}

@media (max-width: 375px) {
  .gallery-grid {
    grid-auto-rows: 120px;
  }
  
  .gallery-filter {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-text p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 500px;
}

.cta-form {
    flex: 0 0 400px;
}

.cta-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    font-family: 'Poppins';
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    background: var(--white);
    box-shadow: var(--shadow);
}

.cta-form .btn {
    width: 100%;
}

/* Location Section */
.location-section {
    background: var(--white);
}

.location-grid {
    display: flex;
    gap: 40px;
}

.location-content {
    flex: 1;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.feature-content h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.feature-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.location-map {
    flex: 1;
}

.map-container {
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* --- About Section (Homepage) - Enhanced Minimal Classic --- */
.about-section {
  background: linear-gradient(135deg, #f8f9fb 0%, #f3f4f8 100%);
  padding-top: 64px;
  padding-bottom: 64px;
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(30,58,138,0.06);
  margin-bottom: 48px;
}
.about-content {
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(30,58,138,0.07);
  padding: 36px 32px 32px 32px;
  transition: box-shadow 0.2s;
}
.about-content:hover {
  box-shadow: 0 8px 48px rgba(212,175,55,0.13);
}
.tower-fullrow-card {
  border: 1.5px solid #ececec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(30,58,138,0.06);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.tower-fullrow-card:hover {
  border-color: #d4af37;
  box-shadow: 0 12px 48px rgba(212,175,55,0.16);
  transform: scale(1.018);
}
.tower-divider {
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, #e5e7ef 0%, #d4af37 100%);
  border-radius: 2px;
  margin: 0 0 18px 0;
  opacity: 0.7;
  border: none;
  display: block;
}
@media (max-width: 700px) {
  .about-section {
    padding-top: 32px;
    padding-bottom: 32px;
    border-radius: 12px;
  }
  .about-content {
    padding: 18px 8px 18px 8px;
    border-radius: 10px;
  }
  .tower-fullrow-card {
    border-radius: 8px;
  }
}

/* --- Tower Detail Pages --- */
.tower-detail-section {
  margin-top: 0.5px !important;
  padding-top: 0.5px !important;
  background: linear-gradient(135deg, #f8f9fb 0%, #f3f4f8 100%);
  padding-bottom: 48px;
}
.tower-detail-header {
  margin-top: 0 !important;
  padding-top: 0 !important;
  display: flex;
  gap: 48px;
  align-items: stretch;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto 36px auto;
}
.tower-detail-img,
.tower-detail-card {
  flex: 1 1 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tower-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.tower-detail-card {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(30,58,138,0.07);
  overflow: hidden;
  min-height: 340px;
}
.tower-detail-img {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}
.tower-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 0 0 18px;
  display: block;
}
.tower-detail-about {
  flex: 1 1 0;
  min-width: 0;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .tower-detail-card {
    flex-direction: column;
    border-radius: 12px;
    min-height: unset;
  }
  .tower-detail-img img {
    border-radius: 12px 12px 0 0;
    height: 220px;
  }
  .tower-detail-about {
    padding: 18px 8px;
  }
}
.tower-detail-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 900px) {
  .tower-detail-header {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .tower-detail-img,
  .tower-detail-card {
    min-height: unset;
  }
  .tower-detail-img img {
    height: auto;
  }
  .tower-detail-card {
    max-width: 98vw;
    border-radius: 12px;
    padding: 18px 8px 18px 8px;
  }
  .tower-detail-content {
    gap: 18px;
  }
}
.tower-detail-info h1 {
  font-family: 'Poppins';
  font-size: 2.2rem;
  color: #1e3a8a;
  margin-bottom: 12px;
}
.tower-detail-info p {
  font-size: 1.1rem;
  color: #444;
  max-width: 420px;
}
.tower-detail-content h2 {
  color: #d4af37;
  font-family: 'Poppins';
  font-size: 1.3rem;
  margin-top: 0;
}
.tower-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  margin-top: 10px;
}
.tower-pricing-table th, .tower-pricing-table td {
  border: 1px solid #e0e0e0;
  padding: 10px 16px;
  text-align: left;
  font-size: 1rem;
}
.tower-pricing-table th {
  background: #f9f6ef;
  color: var(--primary-color);
  font-weight: 600;
}
.tower-options-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.tower-options-list li {
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
}
.tower-options-list li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1em;
}
.tower-cta {
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  border-radius: 14px;
  padding: 28px 18px;
  text-align: center;
  margin-top: 32px;
  box-shadow: 0 2px 12px rgba(212,175,55,0.08);
}
.tower-cta h3 {
  color: var(--primary-color);
  font-family: 'Poppins';
  margin-bottom: 10px;
}
.tower-cta p {
  color: #333;
  margin-bottom: 18px;
}
.tower-contact-btn {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.tower-contact-btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/* --- Tower Page Hero Section --- */
.tower-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tower-hero-img {
  width: 100vw;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}
.tower-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(30,58,138,0.45) 0%, rgba(212,175,55,0.18) 100%);
  z-index: 1;
}
.tower-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
}
.tower-hero-title {
  font-family: 'Poppins';
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px rgba(30,58,138,0.18);
}
.tower-hero-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffe082;
  text-shadow: 0 2px 8px rgba(30,58,138,0.12);
}
@media (max-width: 700px) {
  .tower-hero, .tower-hero-img {
    height: 180px;
  }
  .tower-hero-title {
    font-size: 1.5rem;
  }
  .tower-hero-subtitle {
    font-size: 1rem;
  }
}

/* --- Tower Detail Card --- */
.tower-detail-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(30,58,138,0.10);
  padding: 40px 32px 32px 32px;
  max-width: 700px;
  margin: -80px auto 32px auto;
  position: relative;
  z-index: 2;
}
.tower-detail-card h2 {
  color: var(--primary-color);
  font-family: 'Poppins';
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.tower-detail-card h3 {
  color: #d4af37;
  font-family: 'Poppins';
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 10px;
}
.tower-detail-card p {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.tower-options-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.tower-options-icons i {
  color: #d4af37;
  font-size: 1.2em;
  min-width: 22px;
}

/* --- Redesigned CTA --- */
.redesigned-tower-cta {
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  border-radius: 16px;
  padding: 38px 18px 32px 18px;
  text-align: center;
  margin: 0 auto 0 auto;
  max-width: 700px;
  box-shadow: 0 2px 16px rgba(212,175,55,0.10);
  position: relative;
  z-index: 1;
}
.redesigned-tower-cta h3 {
  color: var(--primary-color);
  font-family: 'Poppins';
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.redesigned-tower-cta p {
  color: #333;
  margin-bottom: 18px;
  font-size: 1.08rem;
}
.redesigned-tower-cta .tower-contact-btn {
  background: #1e3a8a;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 14px 38px;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(30,58,138,0.10);
  display: inline-block;
}
.redesigned-tower-cta .tower-contact-btn:hover {
  background: #d4af37;
  color: #1e3a8a;
}

@media (max-width: 700px) {
  .tower-detail-card, .redesigned-tower-cta {
    padding: 18px 6px;
    max-width: 98vw;
    margin: -40px auto 18px auto;
  }
}

@media (min-width: 1200px) {
  .tower-hero {
    height: 480px;
  }
  .tower-hero-img {
    height: 480px;
  }
  .tower-hero-title {
    font-size: 3.5rem;
  }
  .tower-hero-subtitle {
    font-size: 1.7rem;
  }
  .tower-detail-card, .redesigned-tower-cta {
    max-width: 900px;
    font-size: 1.18rem;
  }
  .tower-detail-card {
    margin: -120px auto 48px auto;
    padding: 56px 48px 48px 48px;
  }
  .redesigned-tower-cta {
    padding: 48px 32px 40px 32px;
    margin-bottom: 32px;
  }
  .tower-fullrow-img {
    max-width: 440px;
    max-height: 300px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .tower-fullrow-img {
    max-width: 560px;
    max-height: 380px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

.tower-detail-section.redesigned-tower-detail {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 1600px) {
  .tower-hero, .tower-hero-img {
    height: 600px;
  }
  .tower-hero-title {
    font-size: 4.2rem;
  }
  .tower-detail-card, .redesigned-tower-cta {
    max-width: 1100px;
  }
}

/* --- Tower Split Layout Redesign --- */
.tower-split-bg {
  background: linear-gradient(120deg, #f7f8fa 60%, #fffbe6 100%);
  min-height: 100vh;
  padding: 0;
}
.tower-split-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 700px;
  box-sizing: border-box;
  padding: 64px 24px 64px 24px;
  gap: 48px;
  align-items: center;
}
.tower-split-image {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
}
.tower-split-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(30,58,138,0.13);
  object-fit: cover;
}
.tower-split-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 320px;
}
.tower-split-accent {
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  border-radius: 3px;
  margin-bottom: 18px;
}
.tower-split-title {
  font-family: 'Poppins';
  font-size: 2.5rem;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 6px;
}
.tower-split-subtitle {
  font-size: 1.2rem;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 24px;
}
.tower-split-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(30,58,138,0.10);
  padding: 36px 28px 28px 28px;
  width: 100%;
  margin-bottom: 0;
}
.tower-split-card h2 {
  color: #1e3a8a;
  font-family: 'Poppins';
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.tower-split-card h3 {
  color: #d4af37;
  font-family: 'Poppins';
  font-size: 1.1rem;
  margin-top: 22px;
  margin-bottom: 10px;
}
.tower-split-card p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.tower-options-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.tower-options-icons i {
  color: #d4af37;
  font-size: 1.2em;
  min-width: 22px;
}
.tower-split-cta {
  margin-top: 32px;
  text-align: left;
}
.tower-split-cta h3 {
  color: #1e3a8a;
  font-family: 'Poppins';
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.tower-split-cta .tower-contact-btn {
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  color: #1a2238;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 14px 38px;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(212,175,55,0.10);
  display: inline-block;
}
.tower-split-cta .tower-contact-btn:hover {
  background: #1e3a8a;
  color: #fff;
}

@media (max-width: 900px) {
  .tower-split-container {
    flex-direction: column;
    gap: 32px;
    padding: 32px 6px 32px 6px;
    min-height: unset;
  }
  .tower-split-image, .tower-split-content {
    min-width: 0;
    width: 100%;
  }
  .tower-split-image img {
    max-width: 100vw;
    border-radius: 16px;
  }
  .tower-split-card {
    padding: 18px 6px 18px 6px;
  }
}




/* --- Full Row Tower Cards (Homepage About Section) --- */
.tower-fullrow-overview {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}
.tower-fullrow-card {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 0;
  margin: 0;
  background: #fff;
}
.tower-fullrow-card:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 64px rgba(212,175,55,0.18);
}
.tower-fullrow-img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
  z-index: 1;
  background: #fff;
}
@media (min-width: 1200px) {
  .tower-fullrow-img {
    max-width: 440px;
    max-height: 300px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .tower-fullrow-img {
    max-width: 560px;
    max-height: 380px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
.tower-fullrow-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(30,58,138,0.18) 0%, rgba(212,175,55,0.10) 100%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tower-fullrow-title {
  font-family: 'Poppins';
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 4px 32px rgba(30,58,138,0.25);
  background: rgba(30,58,138,0.32);
  padding: 18px 48px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30,58,138,0.10);
}
@media (max-width: 1200px) {
  .tower-fullrow-title {
    font-size: 2.1rem;
    padding: 12px 24px;
  }
  .tower-fullrow-card {
    border-radius: 18px;
  }
}
@media (max-width: 700px) {
  .tower-fullrow-card {
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 0;
    margin: 0;
  }
  .tower-fullrow-img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
    z-index: 1;
    background: #fff;
  }
  .tower-fullrow-title {
    font-size: 1.1rem;
    padding: 7px 14px;
    border-radius: 8px;
  }
}

@media (max-width: 600px) {
  .tower-detail-section,
  .tower-detail-header,
  .tower-detail-card,
  .tower-detail-img,
  .tower-detail-about,
  .tower-detail-content {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .tower-detail-header {
    display: block !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .tower-detail-img,
  .tower-detail-about {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    float: none !important;
  }
  .tower-detail-img img {
    display: block !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: auto !important;
    min-height: 80px !important;
    max-height: 220px !important;
    object-fit: cover !important;
    border-radius: 10px 10px 0 0 !important;
  }
  .tower-detail-about {
    padding: 12px 8px !important;
  }
  .tower-detail-content {
    gap: 7px !important;
    padding: 0 1vw !important;
    width: 100% !important;
  }
}

html, body {
  overflow-x: hidden !important;
}

/* --- Modern Tower Page Redesign --- */
.tower-hero-modern {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 32px auto;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(30,58,138,0.13), 0 1.5px 0 #d4af37 inset;
  background: linear-gradient(120deg, #fffbe6 60%, #ffe082 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f6e7b7;
}
.tower-hero-img-modern {
  width: 100%;
  max-width: 700px;
  max-height: 400px;
  height: auto;
  display: block;
  margin: 0 auto 18px auto;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,58,138,0.07);
  border: 1.5px solid #f6e7b7;
  object-fit: cover;
  background: #fffbe6;
}
.tower-hero-modern::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  box-shadow: 0 0 0 0 #fff, 0 0 32px 0 rgba(212,175,55,0.08) inset;
  z-index: 2;
}
.tower-hero-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  color: #fff;
  font-family: 'Poppins';
  font-size: 1.1rem;
  font-weight: 700;
  padding: 8px 28px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(212,175,55,0.13);
  letter-spacing: 1px;
  z-index: 3;
  border: 1.5px solid #fffbe6;
  text-shadow: 0 1px 8px #d4af3720;
}
.tower-detail-main-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.tower-about-card {
  display: flex;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(30,58,138,0.07);
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}
.tower-about-accent {
  width: 8px;
  background: linear-gradient(180deg, #d4af37 0%, #ffe082 100%);
  border-radius: 8px 0 0 8px;
}
.tower-about-content {
  padding: 24px 18px;
  gap: 8px;
}
.tower-about-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.tower-about-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 8px;
}
.tower-options-title {
  color: #d4af37;
  font-size: 1.1rem;
  margin: 18px 0 8px 0;
  font-family: 'Poppins';
  font-weight: 600;
}
.tower-options-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}
.tower-options-list li {
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tower-options-icons i {
  color: #d4af37;
  font-size: 1.2em;
  min-width: 22px;
}
.tower-cards-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.tower-pricing-card, .tower-amenities-card {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(30,58,138,0.07);
  padding: 18px 10px 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 280px;
}
.tower-card-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.tower-pricing-table-modern {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  font-size: 1rem;
}
.tower-pricing-table-modern th, .tower-pricing-table-modern td {
  padding: 12px 16px;
  text-align: left;
}
.tower-pricing-table-modern th {
  background: #f9f6ef;
  color: #d4af37;
  font-weight: 700;
  border-bottom: 2px solid #f6e7b7;
}
.tower-pricing-table-modern td {
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}
.amenities-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 22px;
  width: 100%;
  background: linear-gradient(120deg, #fffbe6 70%, #f8f9fb 100%);
  border-radius: 22px;
  padding: 44px 22px;
  margin-bottom: 32px;
  box-shadow: 0 12px 40px rgba(212,175,55,0.09), 0 2px 0 #d4af37 inset;
  animation: fadeInUp 0.7s cubic-bezier(.39,.575,.565,1) both;
}
.amenity-card-modern {
  background: rgba(255,255,255,0.82);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(30,58,138,0.13);
  border: 1.5px solid #f6e7b7;
  padding: 38px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
  min-height: 250px;
  transition: box-shadow 0.18s, transform 0.18s, border 0.18s, background 0.18s;
  position: relative;
  animation: fadeInUp 0.8s cubic-bezier(.39,.575,.565,1) both;
  animation-delay: var(--stagger-delay, 0s);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.amenity-card-modern:hover {
  box-shadow: 0 16px 48px 0 rgba(212,175,55,0.18), 0 10px 32px rgba(30,58,138,0.18);
  transform: translateY(-8px) scale(1.04);
  border-image: linear-gradient(90deg, #d4af37 0%, #ffe082 100%);
  border-image-slice: 1;
  background: rgba(255,255,255,0.92);
}
.amenity-card-modern::before {
  content: '';
  display: block;
  position: absolute;
  top: 22px;
  left: 22px;
  width: 26px;
  height: 5px;
  border-radius: 2.5px;
  background: linear-gradient(90deg, #d4af37 60%, #ffe082 100%);
  opacity: 0.7;
}
.amenity-card-modern::after {
  content: '';
  display: block;
  position: absolute;
  top: 18px;
  right: 22px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #ffe082 60%, #d4af37 100%);
  box-shadow: 0 0 8px 2px #ffe08280;
  opacity: 0.85;
}
.amenity-card-modern .amenity-icon {
  font-size: 2.1rem;
  color: #d4af37;
  margin-bottom: 10px;
  margin-top: 2px;
  background: radial-gradient(circle at 60% 40%, #fffbe6 70%, #ffe082 100%);
  border-radius: 50%;
  padding: 18px;
  box-shadow: 0 3px 12px rgba(212,175,55,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: brightness(1.12) saturate(1.18);
  transition: box-shadow 0.18s, filter 0.18s, transform 0.18s;
}
.amenity-card-modern:hover .amenity-icon {
  animation: pulseIcon 0.7s;
  box-shadow: 0 0 0 6px #ffe08244, 0 6px 24px rgba(212,175,55,0.18);
  filter: brightness(1.22) saturate(1.28);
  transform: scale(1.09);
}
@keyframes pulseIcon {
  0% { transform: scale(1); }
  40% { transform: scale(1.13); }
  60% { transform: scale(0.97); }
  100% { transform: scale(1.09); }
}
.amenity-card-modern .amenity-title {
  font-size: 1.18rem;
  font-weight: 900;
  color: #1e3a8a;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.amenity-card-modern .amenity-desc {
  color: #444;
  font-size: 1.07rem;
  line-height: 1.8;
  margin-top: 0;
}
.amenities-grid-modern .amenity-card-modern:nth-child(1) { --stagger-delay: 0.05s; }
.amenities-grid-modern .amenity-card-modern:nth-child(2) { --stagger-delay: 0.15s; }
.amenities-grid-modern .amenity-card-modern:nth-child(3) { --stagger-delay: 0.25s; }
.amenities-grid-modern .amenity-card-modern:nth-child(4) { --stagger-delay: 0.35s; }
.amenities-grid-modern .amenity-card-modern:nth-child(5) { --stagger-delay: 0.45s; }
.amenities-grid-modern .amenity-card-modern:nth-child(6) { --stagger-delay: 0.55s; }
.amenities-grid-modern .amenity-card-modern:nth-child(7) { --stagger-delay: 0.65s; }
.amenities-grid-modern .amenity-card-modern:nth-child(8) { --stagger-delay: 0.75s; }
.amenities-grid-modern .amenity-card-modern:nth-child(9) { --stagger-delay: 0.85s; }
.amenities-grid-modern .amenity-card-modern:nth-child(10) { --stagger-delay: 0.95s; }
.amenities-grid-modern .amenity-card-modern:nth-child(11) { --stagger-delay: 1.05s; }
.amenities-grid-modern .amenity-card-modern:nth-child(12) { --stagger-delay: 1.15s; }
.amenities-grid-modern .amenity-card-modern:nth-child(13) { --stagger-delay: 1.25s; }
.amenities-grid-modern .amenity-card-modern:nth-child(14) { --stagger-delay: 1.35s; }
.amenities-grid-modern .amenity-card-modern:nth-child(15) { --stagger-delay: 1.45s; }
.tower-modern-cta {
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  border-radius: 14px;
  padding: 28px 18px;
  text-align: center;
  margin-top: 32px;
  box-shadow: 0 2px 12px rgba(212,175,55,0.08);
}
.tower-modern-cta h3 {
  color: var(--primary-color);
  font-family: 'Poppins';
  margin-bottom: 10px;
}
.tower-modern-cta .tower-contact-btn {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-top: 10px;
  display: inline-block;
}
.tower-modern-cta .tower-contact-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}
@media (max-width: 900px) {
  .tower-hero-modern {
    max-width: 98vw;
    border-radius: 14px;
    border-width: 1.5px;
  }
  .tower-hero-img-modern {
    border-radius: 10px;
  }
  .tower-hero-badge {
    top: 10px;
    left: 10px;
    font-size: 0.98rem;
    padding: 6px 16px;
    border-radius: 8px;
  }
  .tower-hero-modern::after {
    border-radius: 14px;
  }
  .tower-detail-main-cards {
    gap: 18px;
  }
  .tower-cards-row {
    flex-direction: column;
    gap: 18px;
  }
  .tower-about-content {
    padding: 18px 8px;
  }
  .tower-hero-img-modern,
  .tower-detail-img img {
    max-width: 98vw;
    max-height: 220px;
    border-radius: 8px;
  }
  .tower-hero-modern {
    padding: 0;
  }
  .amenities-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 8px;
    border-radius: 14px;
  }
  .amenity-card-modern {
    border-radius: 14px;
    padding: 18px 8px 14px 8px;
    min-height: 150px;
    gap: 12px;
  }
  .amenity-card-modern .amenity-icon {
    font-size: 1.35rem;
    padding: 10px;
  }
  .amenity-card-modern::before {
    top: 12px;
    left: 12px;
    width: 18px;
    height: 3px;
  }
  .amenity-card-modern::after {
    top: 10px;
    right: 12px;
    width: 9px;
    height: 9px;
  }
}
@media (max-width: 600px) {
  .tower-hero-modern {
    min-height: 0;
    border-radius: 6px;
    margin-bottom: 10px;
    border-width: 1px;
    background: linear-gradient(120deg, #fffbe6 70%, #ffe082 100%);
    box-shadow: 0 4px 18px rgba(30,58,138,0.10), 0 1px 0 #d4af37 inset;
    padding: 0;
  }
  .tower-hero-img-modern {
    border-radius: 4px;
    background: #fffbe6;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .tower-hero-badge {
    top: 4px;
    left: 4px;
    font-size: 0.88rem;
    padding: 3px 9px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
    color: #fff;
    border: 1px solid #ffe082;
    box-shadow: 0 2px 8px rgba(212,175,55,0.18);
    text-shadow: 0 1px 4px #d4af3720;
    z-index: 3;
  }
  .tower-hero-modern::after {
    border-radius: 6px;
  }
  .tower-detail-main-cards {
    gap: 10px;
  }
  .tower-about-card {
    border-radius: 8px;
  }
  .tower-about-accent {
    width: 4px;
    border-radius: 4px 0 0 4px;
  }
  .tower-about-content {
    padding: 10px 6px;
    gap: 6px;
  }
  .tower-cards-row {
    gap: 10px;
  }
  .tower-pricing-card, .tower-amenities-card {
    border-radius: 8px;
    padding: 10px 4px 10px 4px;
    min-width: 0;
  }
  .tower-card-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .amenities-grid-modern {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 4px 0;
    border-radius: 7px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(212,175,55,0.06);
  }
  .amenity-card-modern {
    border-radius: 7px;
    padding: 7px 2px 6px 2px;
    min-height: 60px;
    gap: 4px;
    animation-delay: 0s !important;
    box-shadow: 0 1px 4px rgba(30,58,138,0.07);
  }
  .tower-modern-cta {
    border-radius: 8px;
    padding: 14px 6px;
    margin-top: 14px;
  }
  .tower-modern-cta .tower-contact-btn {
    font-size: 0.98rem;
    padding: 10px 18px;
    border-radius: 8px;
  }
  .amenity-card-modern .amenity-icon {
    font-size: 0.95rem;
    padding: 3px;
    min-width: 28px;
    min-height: 28px;
    margin-bottom: 2px;
  }
  .amenity-card-modern .amenity-title {
    font-size: 0.98rem;
    font-weight: 700;
    word-break: break-word;
  }
  .amenity-card-modern .amenity-desc {
    font-size: 0.85rem;
    line-height: 1.4;
    word-break: break-word;
  }
  .amenity-card-modern::before {
    top: 3px;
    left: 3px;
    width: 7px;
    height: 2px;
  }
  .amenity-card-modern::after {
    top: 2px;
    right: 3px;
    width: 4px;
    height: 4px;
  }
  .amenity-card-modern {
    min-height: 200px !important;
  }
}
.amenity-3d-badge {
  display: inline-block;
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  color: #fff;
  font-size: 0.78em;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  margin-left: 7px;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 4px rgba(212,175,55,0.13);
  vertical-align: middle;
  text-shadow: 0 1px 4px #d4af3720;
}
@media (max-width: 600px) {
  .amenity-3d-badge {
    font-size: 0.85em;
    padding: 1.5px 6px;
    border-radius: 5px;
    margin-left: 4px;
  }
}

@media (max-width: 600px) {
  .amenities-grid-modern {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 4px;
    border-radius: 10px;
    margin-bottom: 16px;
    background: #f8f9fb;
    box-shadow: none;
  }
  .amenity-card-modern {
    border-radius: 10px;
    padding: 16px 10px 14px 10px;
    min-height: 120px;
    gap: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(30,58,138,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .amenity-card-modern .amenity-icon {
    font-size: 1.3rem;
    padding: 8px;
    min-width: 32px;
    min-height: 32px;
    margin-bottom: 4px;
  }
  .amenity-card-modern .amenity-title {
    font-size: 1.05rem;
    font-weight: 800;
    word-break: break-word;
    text-align: center;
  }
  .amenity-card-modern .amenity-desc {
    font-size: 0.93rem;
    line-height: 1.5;
    word-break: break-word;
    text-align: center;
  }
  .amenity-card-modern::before {
    top: 8px;
    left: 8px;
    width: 12px;
    height: 3px;
  }
  .amenity-card-modern::after {
    top: 6px;
    right: 8px;
    width: 6px;
    height: 6px;
  }
}

@media (min-width: 901px) {
  .tower-cards-row,
  .tower-detail-content {
    display: block;
  }
  .tower-pricing-card,
  .tower-split-card.pricing {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
    display: block;
  }
  .tower-amenities-card,
  .tower-split-card.amenities {
    width: 100%;
    max-width: 100%;
    display: block;
  }
}
@media (max-width: 900px) {
  .tower-cards-row,
  .tower-detail-content {
    display: block;
  }
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown > span {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3em;
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 160px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(30,58,138,0.08);
  border-radius: 8px;
  z-index: 100;
  padding: 0.5em 0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.7em 1.2em;
  color: #1a2238;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: #f7f7f7;
  color: #d4af37;
}

@media (max-width: 900px) {
  .nav-menu {
    overflow: visible !important;
  }
  .nav-dropdown {
    width: 100%;
    position: relative;
  }
  .nav-dropdown > span {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 1.2em;
    cursor: pointer;
    font-size: 1.05em;
    border-bottom: 1px solid #eee;
    background: #fff;
  }
  .nav-dropdown > span .fa-caret-down {
    transition: transform 0.3s;
  }
  .nav-dropdown.dropdown-open > span .fa-caret-down {
    transform: rotate(180deg);
  }
  .dropdown-menu {
    display: block;
    position: static !important;
    width: 100% !important;
    min-width: 0;
    box-shadow: 0 4px 16px rgba(30,58,138,0.06);
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: #f9f9f9;
    padding: 0;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
    overflow: hidden;
  }
  .nav-dropdown.dropdown-open .dropdown-menu {
    max-height: 400px;
    opacity: 1;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
  }
  .dropdown-menu a {
    display: block;
    width: 100%;
    padding: 1em 2em;
    color: #1a2238;
    background: none;
    border: none;
    text-align: left;
    font-size: 1em;
    border-bottom: 1px solid #f0f0f0;
  }
  .dropdown-menu a:last-child {
    border-bottom: none;
  }
  .dropdown-menu a:hover {
    background: #f2f2f2;
    color: #d4af37;
  }
}

/* Mobile dropdown fix for Properties menu */
@media (max-width: 991px) {
  .nav-dropdown .dropdown-menu {
    display: none;
  }
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }
}

/* Improved Amenities Section Styles */
.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8f8fa;
  border-radius: 32px;
  padding: 12px 18px;
  transition: box-shadow 0.2s, background 0.2s;
}
.amenity-item:hover, .amenity-item:focus {
  background: #fffbe7;
  box-shadow: 0 2px 12px rgba(212,175,55,0.08);
}
.amenity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fffbe7;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.35rem;
  color: #d4af37;
}
.amenity-label {
  font-size: 1.08rem;
  color: #000;
  font-family: 'Poppins';
}

/* Redesigned Amenities Section */
.amenities-section-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(30,58,138,0.09);
  padding: 40px 28px 32px 28px;
  max-width: 900px;
  margin: 0 auto 48px auto;
  position: relative;
  overflow: hidden;
}
.amenities-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  justify-content: center;
}
.amenities-header-icon {
  color: #d4af37;
  font-size: 1.6rem;
}
.amenities-divider {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  border-radius: 2px;
  margin-left: 12px;
}
.amenities-list.redesigned {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-items: center;
}
.amenity-card {
  background: #f8f8fa;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(212,175,55,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 10px 14px 10px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  outline: none;
  border: none;
  min-width: 110px;
}
.amenity-card:hover, .amenity-card:focus {
  box-shadow: 0 6px 24px rgba(212,175,55,0.13);
  transform: translateY(-4px) scale(1.04);
  background: #fffbe7;
}
.amenity-icon {
  background: linear-gradient(135deg, #ffe082 0%, #d4af37 100%);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.10);
}
.amenity-label {
  font-size: 1.04rem;
  color: #1e3a8a;
  font-family: 'Poppins';
  text-align: center;
  margin-top: 2px;
}

/* --- Advanced Luxury Amenities Section Styles --- */
.amenities-section-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(30,58,138,0.09);
  padding: 48px 28px 32px 28px;
  max-width: 900px;
  margin: 0 auto 48px auto;
  position: relative;
  overflow: hidden;
  border: 2.5px double #d4af37;
  z-index: 1;
}
.amenities-bg-svg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
.amenities-badge {
  position: absolute;
  top: 18px;
  right: 24px;
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  color: #fff;
  font-size: 1.02rem;
  font-family: 'Poppins';
  padding: 7px 22px 7px 18px;
  border-radius: 18px 18px 18px 0;
  box-shadow: 0 2px 8px rgba(212,175,55,0.13);
  letter-spacing: 0.04em;
  font-weight: 600;
  z-index: 2;
}
.amenities-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.amenities-header-icon {
  color: #d4af37;
  font-size: 1.6rem;
}
.amenities-divider {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #ffe082 0%, #d4af37 100%);
  border-radius: 2px;
  margin-left: 12px;
}
.amenities-list.redesigned {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-items: center;
  position: relative;
  z-index: 2;
}
.amenities-group {
  grid-column: 1 / -1;
  font-family: 'Poppins';
  color: #d4af37;
  font-size: 1.13rem;
  margin: 18px 0 6px 0;
  text-align: left;
  letter-spacing: 0.02em;
}
.amenity-card {
  background: #f8f8fa;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(212,175,55,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 10px 14px 10px;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  cursor: pointer;
  outline: none;
  border: none;
  min-width: 110px;
  position: relative;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  animation: fadeUp 0.7s cubic-bezier(.23,1.01,.32,1) forwards;
}
.amenity-card:nth-child(1) { animation-delay: 0.05s; }
.amenity-card:nth-child(2) { animation-delay: 0.12s; }
.amenity-card:nth-child(3) { animation-delay: 0.19s; }
.amenity-card:nth-child(4) { animation-delay: 0.26s; }
.amenity-card:nth-child(5) { animation-delay: 0.33s; }
.amenity-card:nth-child(6) { animation-delay: 0.40s; }
.amenity-card:nth-child(7) { animation-delay: 0.47s; }
.amenity-card:nth-child(8) { animation-delay: 0.54s; }
.amenity-card:nth-child(9) { animation-delay: 0.61s; }
.amenity-card:nth-child(10) { animation-delay: 0.68s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes gold-shimmer {
  0% { filter: brightness(1) drop-shadow(0 0 0 #ffe082); }
  50% { filter: brightness(1.2) drop-shadow(0 0 8px #ffe082); }
  100% { filter: brightness(1) drop-shadow(0 0 0 #ffe082); }
}
.amenity-card:hover .amenity-icon, .amenity-card:focus .amenity-icon {
  animation: gold-shimmer 0.8s linear;
}
.amenity-icon {
  background: linear-gradient(135deg, #ffe082 0%, #d4af37 100%);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.10);
  transition: box-shadow 0.2s, filter 0.2s;
}
.amenity-label {
  font-size: 1.04rem;
  color: #000;
  font-family: 'Poppins';
  text-align: center;
  margin-top: 2px;
  font-weight: 500;
}
.amenity-desc {
  font-size: 0.92rem;
  color: #888;
  margin-top: 4px;
  text-align: center;
  line-height: 1.4;
  font-family: 'Poppins';
}
.gold-divider {
  width: 100%;
  height: 48px;
  margin: 0 auto -24px auto;
  display: block;
  background: none;
}

@media (min-width: 1200px) {
  .tower-content-container {
    max-width: 1320px !important;
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .tower-hero-container {
    height: 70vh !important;
    min-height: 520px !important;
  }
  .section-title, .tower-title {
    font-size: 2.6rem !important;
    line-height: 1.18;
  }
  .tower-features-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 44px !important;
  }
  .amenities-section-card {
    max-width: 1200px !important;
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .amenities-list.redesigned {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 38px 28px !important;
  }
  .footer-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 48px;
  }
  .footer-section {
    flex: 1 1 0;
    min-width: 0;
  }
  .footer-bottom {
    padding: 24px 0 0 0;
  }
  .tower-detail-section, .cta-section, .location-section {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1600px) {
  .tower-content-container, .footer-content, .amenities-section-card {
    max-width: 1440px !important;
  }
  .section-title, .tower-title {
    font-size: 3rem !important;
  }
}

/* Fix amenities card text overlay on small screens */
.amenities-list.redesigned {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.amenity-card {
  min-width: 0;
  word-break: break-word;
  white-space: normal;
}
.amenity-label, .amenity-desc {
  word-break: break-word;
  white-space: normal;
}
@media (max-width: 600px) {
  .amenities-list.redesigned {
    grid-template-columns: 1fr;
    gap: 22px 0;
  }
  .amenity-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
}

html {
  font-size: 16px;
}
body {
  font-size: 1rem;
}

h1, .section-title, .hero-heading {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}
h2, .section-subtitle {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
h4 {
  font-size: 1.25rem;
  font-weight: 500;
}
h5 {
  font-size: 1.125rem;
  font-weight: 500;
}
h6 {
  font-size: 1rem;
  font-weight: 500;
}

.section-description, p, li, td, th {
  font-size: 1rem;
}
.small, .footer, .footer-section, .footer-content, .footer-bottom {
  font-size: 0.9rem;
}

.nav-link, .nav-cta {
  font-size: 1rem;
}

.btn, button, input, select, textarea {
  font-size: 1rem;
}

/* Remove/override inconsistent font-size rules */
.section-tag, .tower-badge, .gallery-caption, .gallery-item, .gallery-overlay, .view-btn, .lightbox-caption, .location-info-row, .location-map-btn-wide, .call-float, .whatsapp-float, .back-to-top {
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1, .section-title, .hero-heading {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  h2, .section-subtitle {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .nav-link, .nav-cta, .btn, button {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  h1, .section-title, .hero-heading {
    font-size: clamp(1.2rem, 8vw, 1.7rem);
  }
  h2, .section-subtitle {
    font-size: 1.1rem;
  }
}

/* --- Classic Minimal Font Families --- */
body, p, li, td, th, .nav-link, .nav-cta, .btn, input, select, textarea {
  font-family: 'Poppins';
  font-weight: 400;
  letter-spacing: 0.01em;
}

h1, h2, h3, .section-title, .hero-heading {
  font-family: 'Poppins';
  font-weight: 700;
  letter-spacing: 0.01em;
}

h4, h5, h6, .section-subtitle {
  font-family: 'Poppins';
  font-weight: 500;
}

/* --- Classic Minimal Font Sizes (already present, but ensure coverage) --- */
html {
  font-size: 16px;
}
body {
  font-size: 1rem;
}

h1, .section-title, .hero-heading {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}
h2, .section-subtitle {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
h4 {
  font-size: 1.25rem;
  font-weight: 500;
}
h5 {
  font-size: 1.125rem;
  font-weight: 500;
}
h6 {
  font-size: 1rem;
  font-weight: 500;
}

.section-description, p, li, td, th {
  font-size: 1rem;
}
.small, .footer, .footer-section, .footer-content, .footer-bottom {
  font-size: 0.9rem;
}

.nav-link, .nav-cta {
  font-size: 1rem;
}

.btn, button, input, select, textarea {
  font-size: 1rem;
}

.section-tag, .tower-badge, .gallery-caption, .gallery-item, .gallery-overlay, .view-btn, .lightbox-caption, .location-info-row, .location-map-btn-wide, .call-float, .whatsapp-float, .back-to-top {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1, .section-title, .hero-heading {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  h2, .section-subtitle {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .nav-link, .nav-cta, .btn, button {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  h1, .section-title, .hero-heading {
    font-size: clamp(1.2rem, 8vw, 1.7rem);
  }
  h2, .section-subtitle {
    font-size: 1.1rem;
  }
}

/* --- Icon Perfection: Classic Minimal --- */
.fa, .fas, .fab, .far, .fal, .svg-icon {
  font-size: 1.25rem;
  vertical-align: middle;
}

.section-header i, .gallery-section i, .location-pin-icon svg, .footer-section i, .feature-icon, .amenity-icon, .lightbox-nav i, .back-to-top i, .call-float i, .whatsapp-float i {
  font-size: 1.5rem;
}

.btn i, .nav-link i, .nav-cta i {
  font-size: 1.1rem;
  margin-right: 0.4em;
}

@media (max-width: 768px) {
  .fa, .fas, .fab, .far, .fal, .svg-icon {
    font-size: 1.1rem;
  }
  .section-header i, .gallery-section i, .location-pin-icon svg, .footer-section i, .feature-icon, .amenity-icon, .lightbox-nav i, .back-to-top i, .call-float i, .whatsapp-float i {
    font-size: 1.2rem;
  }
}

/* --- Tower Inner Pages: Icon & Font Size Perfection --- */
/* Feature card icons (e.g., .feature-card i) */
.feature-card i,
.tower-features-grid i,
.amenities-list li:before {
  font-size: 1.5rem !important;
  color: #E49E22;
  vertical-align: middle;
}

/* Feature card headings */
.feature-card h3,
.tower-features-grid h3 {
  font-size: 1.25rem !important;
  font-family: 'Poppins';
  font-weight: 700;
  color: #E49E22;
  margin-bottom: 0.5em;
}

/* Tower/Apartment Titles */
.tower-title,
.apartment-title,
.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem) !important;
  font-family: 'Poppins';
  font-weight: 700;
  color: #E49E22;
  text-align: center;
}

/* Tower/Apartment Subtitles & Descriptions */
.tower-description,
.apartment-subtitle,
.tower-title-container p {
  font-size: 1.1rem !important;
  color: #555;
  font-family: 'Poppins';
}

/* Amenities list icon (dot) */
.amenities-list li:before {
  font-size: 1.2rem !important;
  color: #E49E22;
}

/* CTA Button on tower pages */
.tower-cta-button {
  font-size: 1rem !important;
  padding: 0.9em 2em !important;
  border-radius: 0.5em;
}

@media (max-width: 768px) {
  .tower-title,
  .apartment-title,
  .section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem) !important;
  }
  .feature-card h3,
  .tower-features-grid h3 {
    font-size: 1.1rem !important;
  }
  .feature-card i,
  .tower-features-grid i,
  .amenities-list li:before {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 480px) {
  .tower-title,
  .apartment-title,
  .section-title {
    font-size: clamp(1.1rem, 7vw, 1.5rem) !important;
  }
  .feature-card h3,
  .tower-features-grid h3 {
    font-size: 1rem !important;
  }
  .feature-card i,
  .tower-features-grid i,
  .amenities-list li:before {
    font-size: 1rem !important;
  }
}

.gallery-grid.gallery-collapsed {
  grid-template-rows: none !important;
}
@media (max-width: 768px) {
  .gallery-grid.gallery-collapsed {
    grid-template-rows: none !important;
  }
}
@media (max-width: 576px) {
  .gallery-grid.gallery-collapsed {
    grid-template-rows: none !important;
  }
}

.gallery-grid.gallery-collapsed .gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  height: auto;
}
@media (max-width: 768px) {
  .gallery-grid.gallery-collapsed .gallery-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
    height: 220px;
  }
}
@media (max-width: 576px) {
  .gallery-grid.gallery-collapsed .gallery-item:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
    height: 160px;
  }
}
