/* 
 * ACE ARTE - Premium Residential Development Landing Page Stylesheet
 * Colors and layouts aligned directly with landing-page.jpg
 */

/* ==========================================================================
   1. Design System Variables & Imports
   ========================================================================== */
:root {
  /* Colors Sampled Directly from landing-page.jpg */
  --bg-cream: #F8EBDB;
  --bg-black: #000000;
  --text-dark: #77572e;          /* Warm dark charcoal */
  --text-muted: #6E6259;         /* Warm grey-brown for body copy */
  --primary-gold: #9B8261;       /* Active link, taglines, scroll down button */
  --title-gold: #B9A58C;         /* Main section titles */
  --border-gold: #D5C3AE;        /* Divider lines, button borders */
  --text-light: #FFFFFF;
--bg-ink: #0A0A0C;
  --bg-panel-1: #111114;
  --bg-panel-2: #17171B;
  --border-line: #2A271F;
  --text-ivory: #ECE6D8;
  --text-muted: #A79E8B;
  --gold-primary: #E7C878;
  --gold-gradient: linear-gradient(135deg, #8A6A25 0%, #E7C878 42%, #F5E4B0 52%, #C79B36 72%, #8A6A25 100%);
  --max-width: 1240px;
  /* Typography */
  --font-body: 'Montserrat', sans-serif;
  --font-headers: 'Playfair Display', serif;

  /* Spacing & Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 15px 35px rgba(74, 63, 53, 0.12);
  --shadow-dark: 0 20px 45px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   2. Reset & General Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  background-color: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 70px 0;
  position: relative;
}

/* Typography elements */
.section-tagline {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
}

.section-title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 25px;
  text-align: center;
}
.overview-text-block .section-title{
text-align: left;
 font-weight: 300;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
}

.gold-divider {
  width: 80px;
  height: 2px;
  background-color: var(--primary-gold);
  margin-bottom: 30px;
}

/* ==========================================================================
   3. Floating Navigation Header
   ========================================================================== */
header.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-black);
  border-bottom: 1px solid var(--primary-gold);
  /* Ensures smooth slide-up/down using your existing smooth transition variable */
  transition: transform 0.3s ease-in-out, var(--transition-smooth);
}

/* Hides the header by sliding it up out of the viewport */
header.nav-header.nav-hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  justify-content: space-around; /* Menu aligned to right */
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  position: relative;
}

/* Logo container & image structured to hang downpast bottom edge of header */
.logo-container {
  position: relative;
  left: 90px;
  top: 25px;
  z-index: 1001;
  background-color: var(--bg-black);
  padding: 20px 20px 20px 20px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.logo-container a {
  display: block;
}

.logo-img {
  height: 90px;
  width: auto;
  transition: var(--transition-smooth);
}

header.nav-header.scrolled .logo-img {
  height: 90px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
 background: linear-gradient(90deg, #ffd34a, #ffd36a, #cf9d2c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
	font-weight: 600;
}



.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ==========================================================================
   4. Hero Section (Static)
   ========================================================================== */
.hero-section {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  position: relative;
  background: var(--bg-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
  margin-top: 50px;
  top:70px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 6px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-heading-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.hero-heading-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
}

/* Floating Social handles vertically on the left edge */
.social-vertical-bar {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.social-vertical-bar .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-light);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 10px;
}

.social-vertical-bar .line {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

.social-icon-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-icon-link img {
  width: 14px;
  height: 14px;
  filter: invert(1);
}

.social-icon-link:hover {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
}

/* Scroll down indicator centered at bottom using ellipse asset */
.scroll-down-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-gold-icon {
  width: 32px;
  height: auto;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* ==========================================================================
   5. Section 2: Overview (Landmark Address)
   ========================================================================== */
.overview-section {
  background-image: url('images/rectangle_5_2.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

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

.overview-visual-block {
  display: flex;
  justify-content: center;
  height: 560px;
}

.image-border-wrap {
  border: 1px solid var(--border-gold);
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-premium);
  display: inline-block;
}

.overview-img {
  width: 100%;
  height: 100%;
  max-width: 485px;
  object-fit: cover;
}

/* 6-Item feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin-top: 40px;
   --g: 30px;                 /* MUST match your col-gap */
  --c: calc((100% - (2 * var(--g))) / 3); /* column width */

  background:
    linear-gradient(#755528,#f8ebdb, #755528)  calc(var(--c) + var(--g)/2) 0 / 1px 100% no-repeat,
    linear-gradient(#755528,#f8ebdb,  #755528)  calc((2 * var(--c)) + (3 * var(--g)/2)) 0 / 1px 100% no-repeat;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.feature-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align:center;
}


/* ==========================================================================
   6. Section 3: Noida Sector 150 (Defining New Chapter)
   ========================================================================== */
.location-section {
  background-image: url('images/rectangle_5_3.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

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

.bullet-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 30px;
  padding-left: 0;
}

.bullet-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  border: 1px dotted #85673e;
  border-width: 0px 0px 2px 0px;
}

.bullet-list li::before {
  content: '•';
  color: var(--primary-gold);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1.2rem;
  text-box-trim: trim-start;
}

.location-visual-block {
  border: 1px solid var(--border-gold);
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-premium);
}

.location-swiper {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 700px;
}

.location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   7. Section 4: Featured Terrace (ABOUT US)
   ========================================================================== */
.featured-terrace-section {
  padding: 80px 0;
  background-color: var(--bg-cream);
}

.featured-image-box {
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid var(--border-gold);
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-premium);
}

.featured-swiper {
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 600px;
}

.featured-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   8. Section 5: Gallery
   ========================================================================== */
.gallery-section {
  background-image: url('images/rectangle_5_4.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-slider-outer {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.gallery-item-trigger {
  border: 1px solid var(--border-gold);
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-premium);
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.gallery-item-trigger img {
  width: 100%;
  height: auto;
}

/* Custom Swiper Arrow Placement at edges */
.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

/* Custom Arrows using arrow.png and arrow_2.png with black round background */
.custom-arrow {
  width: 50px !important;
  height: 50px !important;
  background-color: var(--bg-black) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.custom-arrow::after {
  display: none !important; /* Hide default Swiper icon */
}

.custom-arrow.swiper-button-next {
  background-image: url('images/arrow.png') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.custom-arrow.swiper-button-prev {
  background-image: url('images/arrow_2.png') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* ==========================================================================
   9. Section 6: Floor Plans
   ========================================================================== */
.floor-plan-section {
  background-image: url('images/rectangle_5.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tabs-outer-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.tabs-container {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 15px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 2px;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-smooth);
}

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

/* Active tab styled using rectangle_10 background graphic */
.tab-btn.active {
  width: 160px;
  height: 38px;
  background-image: url('images/rectangle_10.jpg') !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  color: var(--text-dark) !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.tab-display-area {
  max-width: 800px;
  margin: 0 auto;
}

.floor-plan-frame {
  border: 1px solid var(--border-gold);
  padding: 20px;
  background: white;
  box-shadow: var(--shadow-premium);
}

.floor-plan-frame img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  margin: 0 auto;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.8s ease-in-out;
}

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

/* ==========================================================================
   10. Section 7: Footer / Contact Us
   ========================================================================== */
.footer-contact-section {
  background-color: var(--bg-black);
  color: var(--text-light);
  padding: 100px 0 50px 0;
}

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

.footer-info-panel h3 {
  font-family: var(--font-headers);
  font-size: 2.4rem;
  color: var(--primary-gold);
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 500;
}

.footer-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.footer-details-list p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* Form layout structure thin gold underlines */
.footer-form-panel {
  padding: 10px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

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

.underline-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 0;
  transition: var(--transition-smooth);
}

.underline-input:focus {
  outline: none;
  border-bottom-color: var(--primary-gold);
}

textarea.underline-input {
  height: 100px;
  resize: none;
}

.form-submit-wrap {
  margin-top: 40px;
}

/* Submit buttonstyled using rectangle_11 gradient graphic */
.btn-submit-graphic {
  width: 284px;
  height: 45px;
  background-image: url('images/rectangle_11.jpg') !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  color: var(--bg-black) !important;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-submit-graphic:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(155, 130, 97, 0.3);
}

/* Social icons bottom row */
.footer-social-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.footer-social-row span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-social-links a:hover {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--bg-black);
}

/* Gold separator graphic lines placed absolute between sections */
.gold-separator-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-cream);
  height: 50px;
  overflow: hidden;
}

.gold-separator-bar img {
  width: 100%;
  height: 50px;
  object-fit: none;
}

/* ==========================================================================
   11. Mobile Responsiveness Layout overrides
   ========================================================================== */
@media (max-width: 1100px) {
  .overview-grid, .location-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hero-section {
    height: 600px;
    min-height: auto;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-img {
    height: 90px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .logo-img {
    height: 70px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .overview-grid{
	          gap: 0px !important;
  }
  .features-grid {
    --g: 0px;
  }
  .container {

    padding: 0 20px;
  }
  span.section-tagline, h2.section-title, .overview-text-block{
	  text-align:center !important;
  }
  .location-visual-block .wrapper {
    height: 350px !important;
}
#gallery .container {
    padding: 0px;
}
.gallery-slider-outer {

    padding: 0;
}
.custom-arrow {
    width: 30px !important;
    height: 30px !important;
}
.footer-social-row {

  justify-content: center;
}
.features-grid {

    --g: 0;
    background: transparent !important;
}
.amen {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
}
h2.section-title.text-center {
    text-align: center;
}
.section-title{
text-align:left;
}
.location-visual-block .wrapper {
    height: 800px;
}
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Maintains 16:9 video proportions responsively */
  overflow: hidden;
  border-radius: 12px; /* rounded-xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); /* shadow-lg */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.amenities-section {
  background-color: #f8ebdb;
  padding: clamp(60px, 8vw, 120px) 24px;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Header Typography */
.head {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-primary);
}

.display {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.18;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 16px;
}

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

/* Grid Layout */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-line);
  background-color: var(--border-line); 
}

/* Individual Amenity Card */
.amen {

  padding: 38px 28px;
  transition: background-color 0.3s ease;
  background-color: #f8ebdb;
}


.amen .ico {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
}

.amen h3 {
  font-family:  'Montserrat';
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.10em;
  margin-bottom: 8px;
  
  /*   background: linear-gradient(90deg, #ffd34a, #ffd36a, #cf9d2c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
	color:#77574e;
}

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

/* Responsive Adjustments */
@media (max-width: 900px) {
  .amen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .amen-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Side Sticky Action Buttons & Enquire Form Modal (ACE Arte Theme)
   ========================================================================== */

.side-sticky-bar {
  position: fixed;
  right: 0;
  top: 30%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.side-sticky-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.side-sticky-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--bg-panel-2, #17171B);
  border: 1px solid var(--gold-primary, #E7C878);
  border-right: none;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 4px 15px rgba(0, 0, 0, 0.4);
  color: var(--gold-primary, #E7C878);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.side-sticky-item:hover {
  background: var(--gold-primary, #E7C878);
  color: #000000;
  width: 54px;
}

.side-sticky-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.side-sticky-item:hover svg {
  transform: scale(1.15);
}

.side-sticky-btn {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: inherit;
}

/* Popup Form Styles */
.form-popup {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  width: 330px;
  max-width: calc(100vw - 30px);
  background: var(--bg-panel-1, #111114);
  border: 1.5px solid var(--gold-primary, #E7C878);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  padding: 22px 20px 18px 20px;
  animation: popupSlideUp 0.4s ease-out forwards;
}

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

.form-popup.flash-border {
  animation: flashBorder 0.8s ease-in-out;
}

@keyframes flashBorder {
  0%, 100% { border-color: var(--gold-primary, #E7C878); box-shadow: 0 15px 40px rgba(0,0,0,0.7); }
  50% { border-color: #FFFFFF; box-shadow: 0 0 25px rgba(231, 200, 120, 0.9); }
}

.form-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--gold-primary, #E7C878);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.form-popup .close-btn:hover {
  color: #FFFFFF;
  transform: scale(1.2);
}

.form-popup h4 {
  font-family: var(--font-headers, 'Playfair Display', serif);
  font-size: 1.25rem;
  color: var(--gold-primary, #E7C878);
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-popup .popup-input-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-popup .popup-input-list input,
.form-popup .popup-input-list textarea {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(231, 200, 120, 0.3);
  border-radius: 6px;
  color: var(--text-light, #FFFFFF);
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.88rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-popup .popup-input-list input::placeholder,
.form-popup .popup-input-list textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-popup .popup-input-list input:focus,
.form-popup .popup-input-list textarea:focus {
  border-color: var(--gold-primary, #E7C878);
  background: rgba(255, 255, 255, 0.1);
}

.form-popup .popup-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #8A6A25 0%, #E7C878 50%, #C79B36 100%);
  color: #000000;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 11px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.form-popup .popup-submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .side-sticky-bar {
    top: auto;
    bottom: 20px;
    transform: none;
    right: 10px;
    gap: 4px;
  }
  
  .side-sticky-item {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border-right: 1px solid var(--gold-primary, #E7C878);
  }

  .form-popup {
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
  }
}