@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,800;1,400&display=swap');

:root {
  --bg-black: #050505;
  --bg-dark-1: #0A0A0A;
  --bg-dark-2: #121212;
  --bg-glass-card: rgba(18, 18, 18, 0.65);
  --bg-glass-hover: rgba(28, 28, 28, 0.85);
  --bg-glass-header: rgba(5, 5, 5, 0.85);
  
  --gold-primary: #D4AF37;
  --gold-light: #F4E07B;
  --gold-dark: #AA771C;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-border: rgba(212, 175, 55, 0.25);
  
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 30%, #B38728 65%, #FBF5B7 85%, #AA771C 100%);
  --gold-text-gradient: linear-gradient(135deg, #FFFFFF 0%, #F4E07B 40%, #D4AF37 70%, #AA771C 100%);
  --dark-gradient: linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.95) 100%);
  
  --text-white: #FFFFFF;
  --text-light: #E0E0E0;
  --text-muted: #9E9E9E;
  --text-dim: #666666;

  --font-serif: 'Cinzel', serif;
  --font-accent: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;

  --shadow-luxury: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.12);
  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.25);
  
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 50px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE & Edge */
}

::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  letter-spacing: 0.5px;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-gradient-heading {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glass-panel {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxury);
  transition: all var(--transition-normal);
}

.glass-panel:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-glow);
}

.container {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-primary);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 25px;
  height: 1px;
  background: var(--gold-primary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 50px auto;
  font-weight: 300;
}

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

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold-gradient);
  color: #000000;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(10px);
  color: var(--gold-primary);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #000000;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
  transform: translateY(-3px);
}

.bg-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: var(--bg-glass-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-b: 1px solid var(--gold-border);
  transition: all var(--transition-normal);
}

header.scrolled {
  padding: 8px 0;
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  padding: 0 35px;
  gap: 24px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
  transition: transform var(--transition-fast);
}

.logo-img:hover {
  transform: none;
}

.brand-title-box {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 0.62rem;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.nav-links li {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 2px;
  white-space: nowrap;
  display: inline-block;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-actions .btn-gold,
.header-actions .btn-outline-gold {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1050;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  border-left: 1px solid var(--gold-border);
  transition: right var(--transition-normal);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gold-border);
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-links a {
  color: var(--text-white);
  font-size: 0.98rem;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast);
}

.mobile-nav-links a::after {
  content: '›';
  font-size: 1.3rem;
  color: var(--gold-primary);
  font-weight: 700;
}

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

.mobile-drawer-footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-drawer .btn-gold,
.mobile-drawer .btn-outline-gold {
  width: 100% !important;
  text-align: center !important;
  justify-content: center !important;
  padding: 10px 16px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.5px !important;
  gap: 6px !important;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  background-color: var(--bg-black);
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.45) contrast(1.1);
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.3) 50%, rgba(5,5,5,0.95) 100%);
}

.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.hero-brand-logo-wrapper {
  margin-bottom: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.small-hero-logo {
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
  transition: transform var(--transition-normal);
  display: block;
}

.large-hero-logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6)) brightness(1.15);
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

.large-hero-logo:hover {
  transform: none;
  filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.85)) brightness(1.25);
}

.brand-center-crest-box {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  margin-bottom: 10px;
  transition: transform var(--transition-normal);
}

.brand-center-crest-box:hover {
  transform: translateY(-4px);
}

.large-section-crest {
  max-width: 340px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.hero-badge i {
  color: var(--gold-primary);
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-location i {
  color: var(--gold-primary);
  font-size: 1.3rem;
}

.hero-highlights-strip {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.strip-item {
  display: flex;
  flex-direction: column;
}

.strip-value {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.strip-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-form-card {
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.form-header p {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.custom-form button[type="submit"] {
  padding: 12px 20px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.5px !important;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  background: rgba(0, 0, 0, 0.8);
}

.form-input::placeholder {
  color: #777777;
}

.form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 1rem;
}

.select-group {
  position: relative;
}

.form-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 14px 14px !important;
  padding-right: 42px !important;
  cursor: pointer;
}

.form-select option {
  background: #0a0a0a;
  color: var(--text-white);
  padding: 10px;
}

.form-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

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

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--gold-border);
}

.about-img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
  transform: none;
}

.about-experience-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  padding: 20px 25px;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(15px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  text-align: center;
}

.exp-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 25px;
  line-height: 1.8;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.stat-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.stat-card:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.stat-card h4 {
  font-size: 1.6rem;
  color: var(--gold-primary);
  font-weight: 700;
}

.stat-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.highlight-card {
  padding: 35px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.8rem;
  transition: all var(--transition-fast);
}

.highlight-card:hover .highlight-icon-box {
  background: var(--gold-gradient);
  color: #000000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.highlight-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.amenity-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}

.amenity-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.amenity-card:hover .amenity-img {
  transform: none;
}

.amenity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.9) 100%);
}

.amenity-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.amenity-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.amenity-title i {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.amenity-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 290px;
  cursor: pointer;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-luxury);
}

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

.gallery-item:hover .gallery-item-img {
  transform: none;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.gallery-zoom-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.gallery-item-caption {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 20px;
}

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

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-glow);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 2.2rem;
  cursor: pointer;
}

.lightbox-caption {
  margin-top: 15px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-light);
}

.floorplan-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 14px 28px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--gold-gradient);
  color: #000000;
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.floorplan-pane {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.floorplan-pane.active {
  display: grid;
  animation: fadeIn 0.5s ease-in-out;
}

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

.plan-info-box {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
}

.plan-spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-spec-list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}

.plan-spec-list span:first-child {
  color: var(--text-muted);
}

.plan-spec-list span:last-child {
  color: var(--gold-light);
  font-weight: 600;
}

.plan-img-card {
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--gold-border);
}

.plan-img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
  transition: transform var(--transition-fast);
}

.plan-img:hover {
  transform: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
}

.price-card {
  padding: 45px 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.price-card.featured {
  border-color: var(--gold-primary);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.25);
  transform: scale(1.03);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.price-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.price-header .price-area {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 25px;
}

.price-features {
  list-style: none;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-light);
}

.price-features i {
  color: var(--gold-primary);
}

.price-card .btn-gold,
.price-card .btn-outline-gold {
  padding: 11px 22px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

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

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

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition-fast);
}

.loc-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--gold-border);
}

.loc-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.loc-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.loc-info p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.location-map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  height: 480px;
  box-shadow: var(--shadow-luxury);
  cursor: pointer;
}

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

.location-map-wrapper:hover .location-map-img {
  transform: none;
}

.map-overlay-badge {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
  transition: all var(--transition-fast);
}

.location-map-wrapper:hover .map-overlay-badge {
  background: var(--gold-gradient);
  color: #000000;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}

.spec-box {
  padding: 35px 30px;
}

.spec-box-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gold-border);
}

.spec-box-header i {
  font-size: 1.8rem;
  color: var(--gold-primary);
}

.spec-box-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.spec-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-items-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.5;
}

.spec-items-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 0.8rem;
}

.construction-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.timeline-card {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.timeline-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-smooth);
}

.timeline-card:hover .timeline-img {
  transform: none;
}

.timeline-body {
  padding: 25px;
}

.timeline-date {
  font-size: 0.8rem;
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.timeline-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}


.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: rgba(20, 20, 20, 0.6);
  border: none;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.08);
}

.faq-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background: rgba(10, 10, 10, 0.7);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px 28px 28px 28px;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--gold-border);
}

.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
}

.contact-details p, .contact-details a {
  color: var(--text-light);
  font-size: 0.92rem;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--gold-primary);
}


.floating-cta-bar {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(92%, 460px);
  padding: 12px 18px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.85), 0 0 20px rgba(212, 175, 55, 0.35);
}

.floating-btn {
  flex: 1 1 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  transition: color var(--transition-fast);
}

.floating-btn i {
  color: var(--gold-primary);
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-btn span {
  display: inline-block;
  line-height: 1;
}

.floating-btn:hover {
  color: var(--gold-primary);
}

.floating-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}



footer {
  background: var(--bg-dark-1);
  border-top: 1px solid var(--gold-border);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-logo {
  max-width: 180px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.footer-about-text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-phone-link {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-phone-link:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.rera-box {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--gold-border);
}

.rera-title {
  font-size: 0.8rem;
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 1px;
}

.rera-no {
  font-size: 0.85rem;
  color: var(--text-white);
  margin-top: 4px;
}

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

.copyright-text {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.disclaimer-text {
  color: #555555;
  font-size: 0.72rem;
  line-height: 1.5;
  margin-top: 15px;
  text-align: justify;
}


.mega-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mega-banner-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-luxury);
  cursor: pointer;
}

.mega-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-smooth);
}

.mega-banner-wrapper:hover .mega-banner-img {
  transform: none;
}

.mega-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.15) 0%, rgba(5,5,5,0.88) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 40px;
  text-align: center;
}

.mega-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.mega-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.9);
}

.mega-banner-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.offer-blended-img {
  max-width: 480px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.35);
  transition: transform var(--transition-normal), filter var(--transition-normal);
  filter: contrast(1.05) brightness(1.05);
}

.offer-blended-img:hover {
  transform: none;
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.5);
}

.mobile-swipe-hint {
  display: none;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}


@media (max-width: 1024px) {
  .hero-grid, .about-grid, .journey-grid, .location-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-links, .header-actions .btn-gold {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .floorplan-pane {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }

  .header-container {
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo-wrapper {
    margin-right: 0;
  }

  .logo-img {
    height: 34px !important;
    max-width: 140px;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  .header-actions .btn-gold {
    display: none !important;
  }

  .header-actions .btn-outline-gold {
    display: inline-flex !important;
    padding: 7px 11px !important;
    font-size: 0.72rem !important;
    border-radius: var(--radius-pill) !important;
    gap: 5px !important;
    letter-spacing: 0.2px !important;
    white-space: nowrap !important;
  }

  @media (max-width: 370px) {
    .header-actions .btn-outline-gold span {
      display: none;
    }
  }

  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    font-size: 1.1rem;
  }

  section {
    padding: 50px 0;
  }

  .header-container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }

  .hero-section {
    padding-top: 75px !important;
    padding-bottom: 30px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-content {
    align-items: center !important;
    text-align: center !important;
  }

  .hero-badge-group {
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center !important;
    margin-bottom: 14px !important;
  }

  .hero-brand-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px !important;
    margin-top: -5px !important;
  }

  .large-hero-logo {
    max-width: 240px;
    margin: 0 auto;
    display: block;
  }

  .small-hero-logo {
    max-width: 130px !important;
    margin: 0 auto;
    display: block;
  }

  .hero-badge {
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 5px 12px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 14px !important;
    gap: 5px !important;
  }

  .hero-badge i {
    font-size: 0.75rem !important;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: center !important;
  }

  .hero-location {
    font-size: 1rem;
    margin-bottom: 22px;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-highlights-strip {
    gap: 20px !important;
    margin-bottom: 25px;
    padding-bottom: 18px;
    width: 100%;
    justify-content: center !important;
  }

  .strip-item {
    align-items: center !important;
    text-align: center !important;
  }

  .strip-value {
    font-size: 1.2rem;
  }

  .strip-label {
    font-size: 0.68rem;
  }

  .hero-cta-group {
    justify-content: center !important;
    width: 100% !important;
  }

  .hero-form-card {
    display: none !important;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .journey-media-side {
    display: none !important;
  }

  .about-img {
    height: 350px !important;
  }

  .about-experience-badge {
    bottom: 12px !important;
    right: 12px !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
  }

  .about-experience-badge .exp-number {
    font-size: 1.25rem !important;
  }

  .about-experience-badge .exp-text {
    font-size: 0.62rem !important;
    letter-spacing: 0.5px !important;
    margin-top: 2px !important;
  }

  .about-stats-grid {
    gap: 12px !important;
    margin-top: 25px !important;
  }

  .stat-card {
    padding: 12px 14px !important;
  }

  .stat-card h4 {
    font-size: 1.15rem !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
  }

  .stat-card p {
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
  }

  .brand-center-crest-box {
    padding: 16px 25px;
  }

  .large-section-crest {
    max-width: 240px;
  }

  .gallery-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding-bottom: 20px !important;
    padding-top: 5px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid .gallery-item {
    flex: 0 0 80% !important;
    max-width: 80% !important;
    scroll-snap-align: start !important;
    height: 220px !important;
    position: relative !important;
    overflow: hidden !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .gallery-grid .gallery-item-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: none !important;
    display: block !important;
  }

  .gallery-grid .gallery-item-overlay {
    opacity: 1 !important;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%) !important;
    backdrop-filter: none !important;
    justify-content: flex-end !important;
    padding: 14px !important;
    pointer-events: none !important;
  }

  .gallery-grid .gallery-zoom-icon {
    display: none !important;
  }

  .gallery-grid .gallery-item-caption {
    font-size: 0.9rem !important;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  }


  .mega-banner-wrapper {
    height: 420px !important;
    min-height: 420px !important;
  }

  .mega-banner-img {
    height: 420px !important;
    min-height: 420px !important;
  }

  .mega-banner-overlay {
    padding: 30px 18px !important;
  }

  .mega-banner-title {
    font-size: 1.45rem !important;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .mega-banner-desc {
    font-size: 0.88rem !important;
    margin-bottom: 15px;
  }

  .mega-banner-overlay .btn-gold {
    padding: 10px 18px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.5px !important;
    gap: 6px !important;
    margin-top: 10px !important;
  }

  .highlights-grid {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding-bottom: 20px !important;
    padding-top: 5px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .highlights-grid::-webkit-scrollbar {
    display: none;
  }

  .highlights-grid .highlight-card {
    flex: 0 0 80% !important;
    max-width: 80% !important;
    scroll-snap-align: start !important;
    opacity: 1 !important;
    transform: none !important;
    padding: 20px 18px !important;
    gap: 10px !important;
  }

  .highlights-grid .highlight-icon-box {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.3rem !important;
    border-radius: 12px !important;
  }

  .highlights-grid .highlight-card h3 {
    font-size: 1.1rem !important;
  }

  .highlights-grid .highlight-card p {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
  }


  #amenities {
    position: relative;
    overflow: hidden;
  }

  .amenities-grid {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding-bottom: 20px !important;
    padding-top: 5px !important;
    align-items: stretch !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .amenities-grid::-webkit-scrollbar {
    display: none;
  }

  .amenities-grid .amenity-card {
    flex: 0 0 80% !important;
    max-width: 80% !important;
    scroll-snap-align: start !important;
    opacity: 1 !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
  }

  .amenities-grid .amenity-img-wrapper {
    height: 150px !important;
    flex-shrink: 0 !important;
  }

  .amenities-grid .amenity-body {
    padding: 15px 16px !important;
    gap: 6px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .amenities-grid .amenity-title {
    font-size: 1.05rem !important;
  }

  .amenities-grid .amenity-desc {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
  }

  
  .floorplan-tabs {
    gap: 10px;
    flex-direction: column;
    margin-bottom: 20px !important;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
  }

  .floorplan-pane {
    gap: 20px !important;
  }

  .plan-info-box {
    padding: 18px 16px !important;
    gap: 14px !important;
  }

  .plan-title {
    font-size: 1.3rem !important;
  }

  .plan-spec-list {
    gap: 8px !important;
  }

  .plan-spec-list li {
    padding-bottom: 6px !important;
    font-size: 0.83rem !important;
  }

  .plan-info-box .btn-gold,
  .plan-info-box .btn-outline-gold {
    padding: 10px 16px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.5px !important;
    gap: 6px !important;
  }

  .plan-img-card {
    padding: 12px !important;
  }

  .plan-img {
    max-height: 250px !important;
  }

  .pricing-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding-bottom: 25px !important;
    padding-top: 15px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .pricing-grid .price-card {
    flex: 0 0 82% !important;
    max-width: 82% !important;
    scroll-snap-align: start !important;
    padding: 30px 20px !important;
    transform: none !important;
  }

  .pricing-grid .price-card.featured {
    transform: none !important;
  }

  .pricing-grid .featured-badge {
    font-size: 0.65rem !important;
    padding: 3px 12px !important;
    top: -11px !important;
    letter-spacing: 1px !important;
  }

  .pricing-grid .price-header h3 {
    font-size: 1.3rem !important;
  }

  .pricing-grid .price-header .price-area {
    font-size: 0.82rem !important;
    margin-bottom: 12px !important;
  }

  .pricing-grid .price-amount {
    font-size: 1.8rem !important;
    margin-bottom: 18px !important;
  }

  .pricing-grid .price-features {
    gap: 10px !important;
    margin-bottom: 22px !important;
  }

  .pricing-grid .price-features li {
    font-size: 0.85rem !important;
  }

  .pricing-grid .price-card .btn-gold,
  .pricing-grid .price-card .btn-outline-gold {
    padding: 10px 16px !important;
    font-size: 0.78rem !important;
    gap: 6px !important;
  }

  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-map-wrapper {
    height: 320px !important;
  }

 .specs-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding-bottom: 20px !important;
    padding-top: 5px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .specs-grid::-webkit-scrollbar {
    display: none;
  }

  .specs-grid .spec-box {
    flex: 0 0 80% !important;
    max-width: 80% !important;
    scroll-snap-align: start !important;
    padding: 22px 18px !important;
  }

  .specs-grid .spec-box-header {
    gap: 12px !important;
    margin-bottom: 14px !important;
    padding-bottom: 12px !important;
  }

  .specs-grid .spec-box-header i {
    font-size: 1.4rem !important;
  }

  .specs-grid .spec-box-header h3 {
    font-size: 1.1rem !important;
  }

  .specs-grid .spec-items-list {
    gap: 10px !important;
  }

  .specs-grid .spec-items-list li {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
  }

  .offer-section {
    padding: 30px 0 !important;
  }

  .offer-content-card {
    padding: 24px 16px !important;
  }

  .offer-img-box {
    margin-bottom: 16px !important;
  }

  .offer-blended-img {
    max-width: 260px !important;
  }

  .offer-text-block {
    gap: 8px !important;
  }

  .offer-text-block .section-title {
    font-size: 1.35rem !important;
    margin-bottom: 2px !important;
  }

  .offer-text-block .section-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 16px !important;
    line-height: 1.4 !important;
  }

  .offer-text-block .btn-gold {
    padding: 10px 18px !important;
    font-size: 0.78rem !important;
  }

  .construction-timeline {
    gap: 16px !important;
  }

  .timeline-img {
    height: 150px !important;
  }

  .timeline-body {
    padding: 14px 16px !important;
  }

  .timeline-date {
    font-size: 0.72rem !important;
    margin-bottom: 4px !important;
    letter-spacing: 0.5px !important;
  }

  .timeline-title {
    font-size: 1.05rem !important;
    margin-bottom: 6px !important;
  }

  .timeline-desc {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-wrapper {
    padding: 28px 18px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .floating-cta-bar {
    width: 92%;
    max-width: 420px;
    padding: 11px 12px;
    bottom: 15px;
    justify-content: space-between;
  }

  .floating-btn {
    font-size: 0.75rem;
    gap: 6px;
  }

  .floating-btn i {
    font-size: 1rem;
  }
}

/* ==========================================================================
   ULTRA-LUXURY BOOKING GIFT SECTION STYLES
   ========================================================================== */
.booking-gift-section {
  position: relative;
  padding: 100px 0;
  background: var(--bg-dark-2);
  overflow: hidden;
}

.gift-ambient-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(5, 5, 5, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.section-tag-gold-sparkle {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.gift-showcase-pairs {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.gift-pair-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: stretch;
}

.gift-pair-row.reverse-row {
  grid-template-columns: 1.15fr 0.85fr;
}

.gift-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-luxury);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  min-height: 520px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gift-image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0.8;
}

.gift-image-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.35);
}

.gift-image-card.featured-gift,
.gift-info-card.featured-gift {
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: linear-gradient(145deg, rgba(28, 24, 15, 0.95) 0%, rgba(12, 10, 6, 0.98) 100%);
}

.gift-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-gradient);
  color: #000000;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  text-transform: uppercase;
  z-index: 5;
}

.gift-badge-royal {
  background: linear-gradient(135deg, #FFF 0%, #F4E07B 50%, #D4AF37 100%);
}

.gift-standalone-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 650px;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gift-image-card:hover .gift-standalone-img {
  transform: scale(1.06);
}

.gift-info-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px;
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.95) 0%, rgba(12, 12, 12, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-luxury);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.gift-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0.8;
}

.gift-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.35);
}

.gift-tag-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.gift-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gift-image-wrapper:hover .gift-image-overlay {
  opacity: 1;
}

.view-gift-btn {
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gift-image-wrapper:hover .view-gift-btn {
  transform: translateY(0);
}

.shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.gift-card:hover .shine-effect {
  left: 150%;
}

.gift-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gift-header {
  margin-bottom: 20px;
}

.gift-card-title {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 6px;
  font-family: var(--font-serif);
}

.gift-tagline {
  font-size: 0.9rem;
  color: var(--gold-primary);
  font-weight: 500;
}

.gift-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.gift-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.gift-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-top: 2px;
}

.gift-feature-text {
  display: flex;
  flex-direction: column;
}

.gift-feature-text strong {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
}

.gift-feature-text span {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.35;
}

.gift-action {
  margin-top: auto;
}

.gift-cta-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.gift-banner-card {
  margin-top: 50px;
  padding: 35px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(25, 22, 14, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  position: relative;
  z-index: 2;
}

.gift-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.gift-banner-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.gift-banner-text {
  text-align: left;
  flex-grow: 1;
}

.gift-banner-text h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.gift-banner-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.gift-banner-cta {
  display: flex;
  gap: 15px;
  align-items: center;
  min-width: fit-content;
}

@media (max-width: 992px) {
  .gift-showcase-pairs {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .gift-pair-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .gift-pair-row.reverse-row {
    flex-direction: column-reverse;
  }
  .gift-image-card {
    min-height: auto;
    width: 100%;
    padding: 12px;
  }
  .gift-info-card {
    min-height: auto;
    padding: 26px 22px;
  }
  .gift-standalone-img {
    min-height: 280px;
    max-height: 480px;
    height: auto;
    object-fit: contain;
  }
  .gift-banner-content {
    flex-direction: column;
    text-align: center;
  }
  .gift-banner-text {
    text-align: center;
  }
  .gift-banner-cta {
    flex-direction: column;
    width: 100%;
  }
  .gift-banner-cta .btn-gold,
  .gift-banner-cta .btn-outline-gold {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .booking-gift-section {
    padding: 50px 0;
  }
  .gift-showcase-pairs {
    gap: 30px;
  }
  .gift-pair-row {
    gap: 16px;
  }
  .gift-image-card {
    padding: 10px;
    min-height: auto;
    border-radius: var(--radius-md);
  }
  .gift-info-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }
  .gift-standalone-img {
    min-height: 220px;
    max-height: 380px;
  }
  .gift-card-title {
    font-size: 1.2rem;
    line-height: 1.35;
  }
  .gift-tagline {
    font-size: 0.85rem;
  }
  .gift-badge {
    top: 10px;
    right: 10px;
    font-size: 0.65rem;
    padding: 4px 10px;
  }
  .gift-banner-card {
    margin-top: 25px;
    padding: 18px 14px;
    border-radius: var(--radius-md);
  }
  .gift-banner-content {
    gap: 12px;
  }
  .gift-banner-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.2rem;
  }
  .gift-banner-text h3 {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 4px;
  }
  .gift-banner-text p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  .gift-banner-cta {
    gap: 8px;
    margin-top: 4px;
  }
  .gift-features-list {
    gap: 14px;
    margin: 16px 0;
  }
  .gift-features-list li {
    gap: 12px;
  }
  .gift-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Auto Open Luxury Image Promo Modal (3 Sec Trigger)
   ========================================================================== */
.auto-promo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.auto-promo-modal.active {
  opacity: 1;
  visibility: visible;
}

.auto-promo-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: linear-gradient(145deg, rgba(22, 20, 15, 0.98) 0%, rgba(10, 10, 10, 0.99) 100%);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.9), 0 0 50px rgba(212, 175, 55, 0.35);
  padding: 26px 22px 22px;
  text-align: center;
  transform: scale(0.85) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.auto-promo-modal.active .auto-promo-content {
  transform: scale(1) translateY(0);
}

.auto-promo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #D4AF37;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.auto-promo-close:hover {
  background: var(--gold-gradient);
  color: #000;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.auto-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.auto-promo-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.3;
}

.auto-promo-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 14px;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.auto-promo-img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
}

.auto-promo-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 16px;
}

.auto-promo-btn {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ==========================================================================
   Global Mobile Button Sizing Optimization (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .btn-gold,
  .btn-outline-gold {
    padding: 10px 18px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.5px !important;
    gap: 6px !important;
  }

  .floating-cta-bar .floating-btn {
    padding: 8px 10px !important;
    font-size: 0.72rem !important;
    gap: 5px !important;
  }

  .tab-btn {
    padding: 8px 14px !important;
    font-size: 0.75rem !important;
  }

  .view-gift-btn {
    padding: 7px 14px !important;
    font-size: 0.72rem !important;
    gap: 5px !important;
  }

  .auto-promo-btn {
    padding: 10px 16px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.5px !important;
  }

  .custom-form button[type="submit"] {
    padding: 10px 16px !important;
    font-size: 0.8rem !important;
  }
}

