/*
Theme Name: Marina One Custom
Theme URI: https://maxproprealty.com/marina-one/
Author: Antigravity
Author URI: https://gemini.google.com/
Description: Custom luxury waterfront landing page theme for Marina One, Kochi.
Version: 1.0
Text Domain: marinaone
*/

/* ==========================================
   1. Luxury Design System & Variables
   ========================================== */
:root {
  --color-primary: #0a192f;
  --color-secondary: #172a45;
  --color-gold: #c5a880;
  --color-gold-dark: #a9895c;
  --color-gold-light: #e5d9c7;
  --color-bg-light: #f8fafc;
  --color-bg-dark: #071120;
  --color-text-dark: #0f172a;
  --color-text-muted: #64748b;
  --color-text-light: #f8fafc;
  --color-border: rgba(197, 168, 128, 0.25);
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-premium: 0 10px 30px -10px rgba(2, 12, 27, 0.15);
  --shadow-gold: 0 10px 30px -15px rgba(197, 168, 128, 0.3);
}

/* ==========================================
   2. Reset & Global Styles
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  position: relative;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

/* Prevent horizontal overflow on all sections, containers and media */
header, main, section, footer, .hero, .container, .hero-highlights, .nav-links, img, iframe, table {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 100px 0;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   3. Typography & Utility Classes
   ========================================== */
.section-tag {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-title.light {
  color: var(--color-text-light);
}

.section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 0 auto 50px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-primary);
  border: 1px solid var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-primary);
  color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ==========================================
   4. Header & Navigation
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 24px 0;
}

header.scrolled {
  background-color: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-text-light);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--color-text-light);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--color-gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 20px;
}

.header-phone-btn,
.header-enquire-btn {
  padding: 8px 18px !important;
  font-size: 0.82rem !important;
  white-space: nowrap !important;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================
   5. Hero Section
   ========================================== */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 120px 0 60px 0;
  color: var(--color-text-light);
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(7, 17, 32, 0.7) 0%, rgba(7, 17, 32, 0.4) 50%, rgba(7, 17, 32, 0.85) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.hero-subheading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: 12px;
}

.hero-heading {
  font-size: 4.2rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
  max-width: 900px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-triple-slash {
  font-size: 1.5rem;
  color: var(--color-gold);
  letter-spacing: 5px;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
  align-items: center;
}

/* Highlights Banner - placed under the buttons */
.hero-highlights {
  width: 100%;
  max-width: 1000px;
  margin: 10px auto 0 auto;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-premium);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 25px 20px;
  text-align: center;
  z-index: 5;
  box-sizing: border-box;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--color-border);
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.highlight-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* ==========================================
   6. About & Masterpiece Section
   ========================================== */
.about {
  background-color: var(--color-bg-light);
  padding-top: 140px; /* Offset the overlapping highlights banner */
}

.about-grid {
  display: grid;
  grid-template-columns: 5.5fr 6.5fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  padding: 15px;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 2px solid var(--color-gold);
  z-index: 1;
}

.about-img {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-premium);
  width: 100%;
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.about-text {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.spec-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.spec-table td {
  padding: 12px 0;
  font-size: 0.95rem;
}

.spec-label {
  font-weight: 600;
  color: var(--color-primary);
  width: 40%;
}

.spec-value {
  color: var(--color-text-muted);
}

/* ==========================================
   7. The Masterplan Section
   ========================================== */
.masterplan {
  background-color: #ffffff;
  text-align: center;
}

.masterplan-showcase {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.masterplan-img-container {
  position: relative;
  width: 100%;
  height: 550px;
}

.masterplan-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.masterplan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.2) 60%, rgba(10, 25, 47, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 50px;
  color: var(--color-text-light);
}

.masterplan-caption {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.masterplan-subcaption {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ==========================================
   8. Club Marina Section
   ========================================== */
.club-marina {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.club-card {
  position: relative;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.club-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.club-card:hover .club-card-img {
  transform: scale(1.08);
}

.club-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 17, 32, 0.95) 0%, rgba(7, 17, 32, 0.4) 50%, rgba(7, 17, 32, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.club-card-title {
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.club-card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ==========================================
   9. Floor Plans & Residences
   ========================================== */
.residences {
  background-color: var(--color-bg-light);
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  list-style: none;
}

.tab-btn {
  padding: 12px 36px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.residence-layout {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 50px;
  background-color: #ffffff;
  padding: 40px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.residence-image-wrapper {
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.residence-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

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

.residence-name {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.residence-size {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.residence-desc {
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

/* ==========================================
   10. Gallery Section
   ========================================== */
.gallery {
  background-color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.75);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
  color: var(--color-text-light);
  padding: 20px;
  text-align: center;
}

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

.gallery-hover h4 {
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.gallery-hover span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 17, 32, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 80%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-gold);
}

.lightbox-caption {
  color: #ffffff;
  text-align: center;
  margin-top: 15px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

/* Videos Tab content styling */
.video-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 2px solid var(--color-gold);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================
   11. Location Section
   ========================================== */
.location {
  background-color: var(--color-bg-light);
}

.location-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 50px;
  align-items: center;
}

.location-info .section-tag {
  text-align: left;
}

.location-info .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.location-address {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.location-highlights-list {
  list-style: none;
}

.location-highlights-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  color: var(--color-text-muted);
}

.location-highlights-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold-dark);
  font-weight: 700;
}

.map-wrapper {
  height: 450px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================
   12. FAQ Section
   ========================================== */
.faq {
  background-color: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-primary);
  font-weight: 500;
  transition: var(--transition-fast);
}

.faq-header:hover .faq-question {
  color: var(--color-gold-dark);
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: var(--transition-smooth);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 9px;
  left: 0;
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 9px;
  top: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(135deg);
}

.faq-item.active .faq-icon::before, .faq-item.active .faq-icon::after {
  background-color: var(--color-gold-dark);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-content {
  padding: 0 0 20px 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================
   13. Contact & Enquiry Form
   ========================================== */
.contact {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info .section-tag {
  text-align: left;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.contact-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.contact-details {
  list-style: none;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.2rem;
}

.contact-text h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.contact-text p {
  font-size: 1rem;
}

/* Form Styling */
.form-wrapper {
  background-color: var(--color-secondary);
  padding: 40px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-premium);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold-light);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  border-radius: 0;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.07);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c5a880' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

select.form-control option {
  background-color: var(--color-secondary);
  color: #ffffff;
}

.form-message {
  display: none;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-align: center;
}

.form-message.success {
  display: block;
  background-color: rgba(46, 204, 113, 0.15);
  border: 1px solid #2ecc71;
  color: #2ecc71;
}

.form-message.error {
  display: block;
  background-color: rgba(231, 76, 60, 0.15);
  border: 1px solid #e74c3c;
  color: #e74c3c;
}

/* ==========================================
   14. Footer & Sticky/Floating CTA
   ========================================== */
.main-footer {
  background-color: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 4fr 3fr 5fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--color-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-rera-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.rera-item {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.02);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.rera-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 2px;
}

.rera-id {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-credits a {
  color: var(--color-gold);
}

/* Floating Enquire Button */
.floating-cta {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  box-shadow: var(--shadow-gold);
}

/* ==========================================
   15. Keyframes & Animations
   ========================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   16. Responsive Layouts
   ========================================== */
@media (max-width: 1024px) {
  section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .hero-heading {
    font-size: 3.2rem;
  }

  .hero {
    height: auto !important;
    min-height: 100vh !important;
    padding: 120px 0 60px 0 !important;
  }

  .hero-highlights {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 35px auto 0 auto !important;
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 15px;
    box-sizing: border-box !important;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .club-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .residence-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-col:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  header {
    padding: 14px 0;
    background-color: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
  
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 6px 12px;
    font-size: 1.4rem;
    border-radius: 4px;
    cursor: pointer;
  }

  .header-cta {
    display: none !important;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 65px);
    background-color: rgba(6, 15, 30, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 30px 24px 60px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    overflow-y: auto;
    z-index: 9999;
  }
  
  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    font-size: 1.15rem;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
  }

  .mobile-only-cta {
    display: flex !important;
  }
  
  .header-cta {
    display: none;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 60px;
  }

  .hero-heading {
    font-size: clamp(2.2rem, 6.5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 16px;
  }
  
  .hero-subheading {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 14px;
    margin-bottom: 45px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.8rem;
    box-sizing: border-box;
  }
  
  .hero-highlights {
    grid-template-columns: 1fr !important;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 25px !important;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .highlight-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
  }
  
  .highlight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .about {
    padding-top: 60px;
  }
  
  .masterplan-img-container {
    height: 280px;
  }
  
  .masterplan-overlay {
    padding: 20px;
  }
  
  .masterplan-caption {
    font-size: 1.3rem;
  }
  
  .club-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-col:last-child {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .floating-cta {
    bottom: 20px;
    left: 20px;
    right: auto;
    width: auto;
    z-index: 999;
  }
  
  .floating-cta .btn {
    width: auto;
    padding: 10px 20px;
    font-size: 0.78rem;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(197, 168, 128, 0.4);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-btn {
    padding: 10px 14px;
    font-size: 0.75rem;
  }
  
  .faq-question {
    font-size: 1.05rem;
  }
}
