/* 
    Raja Rajendra Cholan Nagar - VLC Properties - V2
    Theme: Royal Chola Dynasty — Blue & Gold
    Inspired by brochure design
    Color Palette:
    Royal Blue Deep: #0A1F5C
    Royal Blue Mid: #142D6E
    Royal Blue Light: #1A3A8C
    Temple Gold: #D4AF37
    Gold Accent: #F0C850
    Gold Light: #FFF3C8
    Sand Cream: #F8F0DC
    Ivory: #FDFAF2
*/

/* === Local Fonts === */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cinzel-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cinzel-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/poppins-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-latin-600-normal.woff2') format('woff2');
}

/* === CSS Variables === */
:root {
  --royal-deep: #0A1F5C;
  --royal-mid: #142D6E;
  --royal-light: #1A3A8C;
  --royal-surface: #0E2466;
  --temple-gold: #D4AF37;
  --gold-accent: #F0C850;
  --gold-light: #FFF3C8;
  --sand: #F8F0DC;
  --ivory: #FDFAF2;
  --dark-text: #1A1A2E;
  --white: #FFFFFF;

  --font-heading: 'Cinzel', serif;
  --font-script: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.25);
  --shadow-deep: 0 8px 40px rgba(10, 31, 92, 0.35);
}

/* === Base Reset === */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  /* background-color: var(--ivory); */
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--royal-deep);
  font-weight: 700;
}

img { max-width: 100%; }

/* === Utility Classes === */
.text-gold { color: var(--temple-gold) !important; }
.text-white { color: var(--white) !important; }
.text-sand { color: var(--sand) !important; }
.text-royal { color: var(--royal-deep) !important; }
.font-cinzel { font-family: var(--font-heading) !important; }
.font-script { font-family: var(--font-script) !important; letter-spacing: 1px; }

/* === Custom Scrollbar === */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--royal-deep); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--temple-gold), #b8952e);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-accent); }

/* === Ornamental Pattern Overlay === */
.pattern-overlay {
  position: relative;
}
.pattern-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 5L35 15H25L30 5Z' fill='%23D4AF37' opacity='0.03'/%3E%3Cpath d='M30 55L25 45H35L30 55Z' fill='%23D4AF37' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.v2-navbar {
  background: linear-gradient(135deg, rgba(10, 31, 92, 0.97), rgba(20, 45, 110, 0.97));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 14px 0;
  border-bottom: 2px solid var(--temple-gold);
  z-index: 1000;
}

.v2-navbar.scrolled {
  padding: 6px 0;
  box-shadow: 0 6px 30px rgba(10, 31, 92, 0.6);
  background: linear-gradient(135deg, rgba(10, 31, 92, 0.99), rgba(14, 36, 102, 0.99));
}

.v2-navbar .navbar-brand img {
  /* height: 55px; */
  width: 120px;
  margin-right: 12px;
  /* border-radius: 50%; */
  transition: transform 0.3s;
  background-color: #fff;
  padding: 5px;
}

.v2-navbar .navbar-brand img:hover {
  transform: scale(1.05);
}

.v2-navbar .nav-link {
  color: rgba(253, 250, 242, 0.85);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 1.5px;
  margin: 0 18px;
  position: relative;
  transition: color 0.3s;
}

.v2-navbar .nav-link:hover,
.v2-navbar .nav-link.active {
  color: var(--temple-gold);
}

.v2-navbar .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--temple-gold), transparent);
  transition: width 0.4s ease;
}

.v2-navbar .nav-link:hover::after,
.v2-navbar .nav-link.active::after {
  width: 100%;
}

.v2-navbar .cta-btn {
  background: linear-gradient(135deg, var(--temple-gold), #b8952e);
  border: none;
  color: var(--royal-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 18px;
  animation: ctaPulse 2s infinite;
}

.v2-navbar .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #fceb9d, #d4af37);
}

@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.v2-navbar .navbar-toggler {
  border-color: rgba(212, 175, 55, 0.5);
  order: 3;
}
.v2-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Phone CTA */
.v2-mobile-phone {
  order: 2;
  padding: 6px 14px;
  font-size: 0.8rem;
  margin-left: auto;
  margin-right: 10px;
  white-space: nowrap;
}

/* ============================================================
   HERO BANNER — Image + Floating Form
   ============================================================ */
.v2-hero-banner {
  position: relative;
  padding-top: 82px; /* navbar height */
  overflow: hidden;
  background: var(--royal-deep);
}

.v2-banner-img-wrap {
  position: relative;
  width: 100%;
  display: block;
}

.v2-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Floating form over the banner on desktop */
.v2-banner-form-wrapper {
  position: absolute;
  top: 82px;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5%;
  pointer-events: none;
  z-index: 10;
}

.v2-banner-form {
  pointer-events: all;
  max-width: 380px;
  width: 100%;
}

.hero-form-card {
  background: rgba(253, 250, 242, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--temple-gold);
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 5px;
  background: linear-gradient(90deg, var(--temple-gold), #fceb9d, var(--temple-gold));
  border-radius: 12px 12px 0 0;
}

.hero-form-card h3 {
  font-size: 1.5rem;
  color: var(--royal-deep);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 25px;
}

.hero-form-card .form-control {
  background: var(--white);
  border: 1.5px solid rgba(10, 31, 92, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.hero-form-card .form-control:focus {
  border-color: var(--temple-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  background: var(--white);
}

.hero-form-card .form-control::placeholder {
  color: rgba(10, 31, 92, 0.4);
}

.hero-form-card .submit-btn {
  background: linear-gradient(135deg, var(--royal-deep), var(--royal-mid));
  color: var(--temple-gold);
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 8px;
  font-size: 1.05rem;
  transition: all 0.3s;
}

.hero-form-card .submit-btn:hover {
  background: linear-gradient(135deg, var(--temple-gold), #b8952e);
  color: var(--royal-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.v2-section-title {
  font-size: 2.5rem;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

.v2-section-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--temple-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.v2-section-subtitle::before,
.v2-section-subtitle::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: var(--temple-gold);
}

.v2-section-subtitle .ornament {
  font-size: 0.7rem;
  color: var(--temple-gold);
  letter-spacing: 0;
}

/* Dark bg section titles */
.v2-dark-section .v2-section-title {
  color: var(--temple-gold);
}

/* ============================================================
   PROJECT HIGHLIGHTS
   ============================================================ */
.v2-highlights {
  background: var(--ivory);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.v2-highlights .raja-horse-img {
  position: absolute;
  right: -3%;
  bottom: 5%;
  height: 70%;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  filter: sepia(0.3) brightness(0.8);
}

.v2-highlights .highlights-content {
  position: relative;
  z-index: 2;
}

.v2-overview-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: #3A3A4E;
}

/* Highlight Cards */
.v2-highlight-card {
  background: linear-gradient(135deg, var(--royal-deep), var(--royal-mid));
  border: none;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(10, 31, 92, 0.3);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.v2-highlight-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--temple-gold), #fceb9d, var(--temple-gold));
}

.v2-highlight-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 60%);
  pointer-events: none;
}

.v2-highlight-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(10, 31, 92, 0.45), 0 0 30px rgba(212, 175, 55, 0.15);
}

.v2-highlight-card .hl-icon {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.25));
  transition: all 0.3s ease;
}

.v2-highlight-card:hover .hl-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.35));
}

.v2-highlight-card h5 {
  color: var(--sand);
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.v2-highlight-card p {
  color: rgba(248, 240, 220, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Info badges */
.v2-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--royal-deep), var(--royal-mid));
  color: var(--temple-gold);
  padding: 14px 22px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(10, 31, 92, 0.25);
  transition: all 0.3s;
}

.v2-info-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}

.v2-info-badge .badge-label {
  font-size: 0.8rem;
  color: rgba(248, 240, 220, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.v2-info-badge .badge-value {
  color: var(--temple-gold);
  font-size: 1rem;
}

/* Outline button */
.v2-btn-outline {
  color: var(--royal-deep);
  border: 2px solid var(--royal-deep);
  background: transparent;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  transition: all 0.4s;
  text-decoration: none;
  display: inline-block;
}

.v2-btn-outline:hover {
  background: var(--royal-deep);
  color: var(--temple-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Raja Horse — PREMIUM Ornamental Decoration
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.v2-raja-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Golden aura / glow behind the raja */
.v2-raja-decor::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.08) 40%, transparent 70%);
  animation: auraGlow 4s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes auraGlow {
  0% { 
    transform: scale(0.9); 
    opacity: 0.5;
  }
  100% { 
    transform: scale(1.2); 
    opacity: 1;
  }
}

/* The raja image itself */
.v2-raja-decor img {
  width: 60%;
  height: auto;
  opacity: 0.88;
  filter: drop-shadow(0 0 25px rgba(212,175,55,0.35)) drop-shadow(0 5px 15px rgba(184,149,46,0.2));
  transition: opacity 0.6s, filter 0.6s, transform 0.6s;
  position: relative;
  z-index: 2;
}

/* Shimmer / Shine sweep effect across the image */
.v2-raja-decor::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 400%;
  height: 200%;
  background: linear-gradient(
    105deg, 
    transparent 30%,  
    rgba(212,175,55,0.15) 45%, 
    rgba(255,243,200,0.25) 50%, 
    rgba(212,175,55,0.15) 55%, 
    transparent 70%
  );
  transform: skewX(-15deg);
  animation: shimmerSweep 5s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0% { left: -100%; }
  40% { left: 150%; }
  100% { left: 150%; }
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Raja Horse — Layout Plan Specific
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.v2-raja-decor-layout {
  position: absolute;
  top: -30px;
  right: -25px;
  z-index: 99;
  pointer-events: none;
  width: 380px;
  height: 380px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rajaFloatBL 8s ease-in-out infinite; 
}

.v2-raja-decor-layout::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.08) 40%, transparent 70%);
  animation: auraGlow 4s ease-in-out infinite alternate;
  z-index: 0;
}

.v2-raja-decor-layout img {
  width: 60%;
  height: auto;
opacity: 0.70;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.35)) drop-shadow(0 5px 15px rgba(184, 149, 46, 0.2));
  transition: opacity 0.6s, filter 0.6s, transform 0.6s;
  position: relative;
  z-index: 2;
}

/* .v2-raja-decor-layout::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 400%;
  height: 200%;
  background: linear-gradient(
    105deg, 
    transparent 30%,  
    rgba(212,175,55,0.15) 45%, 
    rgba(255,243,200,0.25) 50%, 
    rgba(212,175,55,0.15) 55%, 
    transparent 70%
  );
  transform: skewX(-15deg);
  animation: shimmerSweep 5s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
} */

/* Hover over layout column -> pulse horse */
.v2-layout-table-col:hover .v2-raja-decor-layout img {
  opacity: 0.5;
  filter: drop-shadow(0 0 40px rgba(212,175,55,0.55)) drop-shadow(0 8px 25px rgba(184,149,46,0.3));
  transform: scaleX(-1) scale(1.05);
}

.v2-raja-decor-layout img {
  transform: scaleX(-1);
}


#contact a{
  color: #fff;
  text-decoration: none;
}

#contact a:hover{
  color: #fff;
  text-decoration: none;
}

/* Ornamental spinning ring */
.v2-raja-ornament-ring {
  position: absolute;
  top: 5%; left: 5%; right: 5%; bottom: 5%;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: ringRotate 25s linear infinite;
}

.v2-raja-ornament-ring::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite alternate;
}

.v2-raja-ornament-ring::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1.5px dotted rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite reverse;
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes ringPulse {
  0% { 
    transform: scale(1); 
    border-color: rgba(212, 175, 55, 0.08); 
  }
  100% { 
    transform: scale(1.06); 
    border-color: rgba(212, 175, 55, 0.25); 
  }
}

/* Top-Right Position */
.v2-raja-top-left {
  top: 10px;
  right: -40px;
  animation: rajaFloatTR 7s ease-in-out infinite;
  display: none;
}

/* Bottom-Left Position */
.v2-raja-bottom-right {
  top: -30px;
  left: -40px;
  animation: rajaFloatBL 8s ease-in-out infinite;
}

.v2-raja-bottom-right img {
  transform: scaleX(1);
}

/* Dramatic Floating Animation — Top Right */
@keyframes rajaFloatTR {
  0%, 100% { 
    transform: translateY(0) translateX(0) scale(1); 
  }
  20% { transform: translateY(-12px) translateX(-3px) scale(1.02); }
  40% { transform: translateY(-20px) translateX(5px) scale(1); }
  60% { transform: translateY(-10px) translateX(8px) scale(1.01); }
  80% { transform: translateY(-18px) translateX(2px) scale(1); }
}

/* Dramatic Floating Animation — Bottom Left */
@keyframes rajaFloatBL {
  0%, 100% { 
    transform: translateY(0) translateX(0) scale(1);
  }
  25% { transform: translateY(15px) translateX(5px) scale(1.02); }
  50% { transform: translateY(8px) translateX(-8px) scale(1); }
  75% { transform: translateY(20px) translateX(3px) scale(1.01); }
}

/* Section HOVER — raja becomes more prominent */
/* .v2-highlights:hover .v2-raja-decor img {
  opacity: 0.5;
  filter: drop-shadow(0 0 40px rgba(212,175,55,0.55)) drop-shadow(0 8px 25px rgba(184,149,46,0.3));
  transform: scale(1.05);
} */

/* .v2-highlights:hover .v2-raja-bottom-right img {
  transform: scaleX(-1) scale(1.05);
} */

/* Golden Corner Flourishes — larger and more visible */
.v2-corner-flourish {
  position: absolute;
  width: 150px;
  height: 150px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

.v2-corner-flourish::before,
.v2-corner-flourish::after {
  content: '';
  position: absolute;
  background: linear-gradient(135deg, var(--temple-gold), transparent);
}

/* Top-left corner */
.v2-corner-tl {
  top: 0;
  left: 0;
}

.v2-corner-tl::before {
  top: 0; left: 0;
  width: 100%;
  height: 2px;
}

.v2-corner-tl::after {
  top: 0; left: 0;
  width: 2px;
  height: 100%;
}

/* Bottom-right corner */
.v2-corner-br {
  bottom: 0;
  right: 0;
}

.v2-corner-br::before {
  bottom: 0; right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, transparent, var(--temple-gold));
}

.v2-corner-br::after {
  bottom: 0; right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to top, var(--temple-gold), transparent);
}

/* ============================================================
   AMENITIES SECTION
   ============================================================ */
.v2-amenities {
  background: linear-gradient(180deg, var(--royal-deep) 0%, #0E2466 50%, var(--royal-deep) 100%);
  padding: 20px 0 120px;
  position: relative;
  color: var(--sand);
  overflow: hidden;
}

.v2-amenities::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23D4AF37' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.v2-amenities > .container {
  position: relative;
  z-index: 2;
}

.v2-amenities .v2-section-title {
  color: var(--temple-gold);
}

.v2-amenity-card::after{
      content: '';
        position: absolute;
        top: 0;
        left: 0%;
        width: 70%;
        height: 200%;
        background: linear-gradient(105deg, transparent 30%, rgba(212, 175, 55, 0.15) 45%, rgba(255, 243, 200, 0.25) 50%, rgba(212, 175, 55, 0.15) 55%, transparent 70%);
        transform: skewX(-15deg);
        /* animation: shimmerSweep 5s ease-in-out infinite; */
        z-index: 3;
        pointer-events: none;
}

/* Amenity Card */
.v2-amenity-card {
  background: #fdfaf2;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 32px 18px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.v2-amenity-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--temple-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.v2-amenity-card:hover::before {
  opacity: 1;
}

.v2-amenity-card:hover {
  /* background: rgba(212, 175, 55, 0.1); */
  border-color: var(--temple-gold);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
}

/* Amenity Icon Container */
.v2-amenity-icon-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
background: #cfaa36;
  border: 2px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 99;
}

/* Image Icon styling */
.v2-amenity-icon-wrap img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  transition: all 0.4s;
}

/* Hover effects — icon rotates and glows */
.v2-amenity-card:hover .v2-amenity-icon-wrap {
  background: linear-gradient(135deg, var(--temple-gold), #b8952e);
  border-color: var(--gold-accent);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.v2-amenity-card:hover .v2-amenity-icon-wrap img {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.v2-amenity-card h6 {
    font-family: var(--font-body);
      font-weight: 600;
      color: var(--temple-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.82rem;
  margin-bottom: 0;
  transition: color 0.3s;
}

.v2-amenity-card:hover h6 {
  color: var(--temple-gold);
}

/* ============================================================
   LAYOUT PLAN — Light Blueprint Theme
   ============================================================ */
.v2-layout {
  padding: 20px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Light variant — ivory/cream with blueprint overlay */
.v2-layout-light {
  background: var(--ivory);
}

.v2-layout-light .v2-section-title {
  color: var(--royal-deep);
}

/* Blueprint Parallax Background (light mode — subtle) */
.v2-layout-bg-parallax {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

/* Area Statement Card — Light Mode */
.v2-area-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--royal-deep);
}

.v2-area-card-light {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(10, 31, 92, 0.15);
  border-radius: 12px;
  padding: 28px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(10, 31, 92, 0.08);
}

.v2-area-heading-light {
  color: var(--royal-deep) !important;
}

/* Area Table — Light Mode */
.v2-area-table-light {
  border-color: var(--royal-deep) !important;
}

.v2-area-table-light tbody td {
  background: var(--ivory) !important;
  color: var(--dark-text) !important;
  border-color: rgba(10, 31, 92, 0.08) !important;
  padding: 6px 8px !important;
  font-size: 0.85rem !important;
}

.v2-area-table-light tbody tr:nth-child(even) td {
  background: #F2EAD8 !important;
}

.v2-area-table-light tbody tr:hover td {
  background: #E8E0CE !important;
  color: var(--royal-deep) !important;
}

/* Route Map Specific Styles Removed */

/* Equal Height Row — Layout + Area Statement */
.v2-layout-equal-row {
  display: flex;
  flex-wrap: wrap;
}

.v2-layout-map-col {
  padding-right: 12px;
}

.v2-layout-left-content {
  width: 100%;
}

/* Layout Plan Left Content Styles */
.v2-layout-plan-heading {
  font-family: var(--font-heading);
  color: var(--royal-deep);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}

.v2-layout-plan-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--temple-gold);
  border-radius: 2px;
  display: none;
}

.v2-layout-plan-desc {
  color: #4A4A4A;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.v2-layout-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.v2-layout-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--royal-deep);
  color: var(--temple-gold);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.v2-layout-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--temple-gold), #b8952e);
  color: var(--royal-deep);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.v2-layout-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: var(--royal-deep);
}

.v2-layout-table-col {
  display: flex;
  padding-left: 12px;
}

.v2-layout-table-col .v2-area-statement-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.v2-layout-table-col .v2-area-table {
  flex: 1;
}

.v2-layout-img-container {
  border: 3px solid var(--temple-gold);
  border-radius: 12px;
  cursor: zoom-in;
  background: var(--white);
  padding: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(10, 31, 92, 0.12);
  transition: all 0.4s;
}

.v2-layout-img-container:hover {
  box-shadow: 0 15px 50px rgba(10, 31, 92, 0.2);
}

.v2-zoom-overlay {
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  background: rgba(10, 31, 92, 0.8);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-layout-img-container:hover .v2-zoom-overlay {
  opacity: 1;
}

.v2-zoom-text {
  font-size: 1.4rem;
  color: var(--temple-gold);
  font-family: var(--font-heading);
  transform: translateY(15px);
  transition: transform 0.4s;
}

.v2-layout-img-container:hover .v2-zoom-text {
  transform: translateY(0);
}

/* Area Statement Table */
.v2-area-table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--temple-gold);
}

.v2-area-table .table {
  margin-bottom: 0;
}

.v2-area-table thead th {
  background: linear-gradient(135deg, var(--royal-deep), var(--royal-mid));
  color: var(--temple-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 8px;
  border-color: rgba(212, 175, 55, 0.2);
  font-size: 0.78rem;
}

.v2-area-table tbody td {
  background: rgba(10, 31, 92, 0.6);
  color: var(--sand);
  font-weight: 500;
  padding: 6px 8px;
  border-color: rgba(212, 175, 55, 0.1);
  font-size: 0.85rem;
}

.v2-area-table tbody tr:hover td {
  background: rgba(212, 175, 55, 0.15);
  color: var(--temple-gold);
}

.v2-area-table tbody tr:nth-child(even) td {
  background: rgba(14, 36, 102, 0.6);
}

.v2-area-table tbody tr:nth-child(even):hover td {
  background: rgba(212, 175, 55, 0.15);
  color: var(--temple-gold);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.v2-gallery-swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px; /* space for arrows */
}

.v2-gallery-swiper .swiper-slide {
  background-position: center;
  background-size: cover;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--temple-gold);
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.5s ease-in-out;
}

.v2-gallery-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 15px 35px rgba(10, 31, 92, 0.4);
}

.v2-gallery-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.v2-gallery-swiper .swiper-slide-active:hover img {
  transform: scale(1.1);
}

.v2-gallery-swiper .swiper-button-next,
.v2-gallery-swiper .swiper-button-prev {
  color: var(--temple-gold);
  background: rgba(253, 250, 242, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(10, 31, 92, 0.2);
  border: 2px solid var(--temple-gold);
  transition: all 0.3s ease;
  display: flex !important;
  top: auto !important;
  bottom: 5px !important;
  margin-top: 0 !important;
  transform: none !important;
  --swiper-navigation-top-offset: auto; /* override swiper internal var */
}

.v2-gallery-swiper .swiper-button-prev {
  left: calc(50% - 60px) !important;
}

.v2-gallery-swiper .swiper-button-next {
  right: calc(50% - 60px) !important;
}

.v2-gallery-swiper .swiper-button-next:after,
.v2-gallery-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

.v2-gallery-swiper .swiper-button-next:hover,
.v2-gallery-swiper .swiper-button-prev:hover {
  background: var(--royal-deep);
  color: var(--temple-gold);
  transform: scale(1.1) !important;
}

@media (max-width: 991px) {
  .v2-layout-plan-desc{
    text-align: justify;
  }
}

@media (max-width: 768px) {
  .v2-gallery-swiper .swiper-slide {
    height: 260px;
  }
}

/* ============================================================
   LOCATION / SURROUNDINGS
   ============================================================ */
.v2-location {
  background: linear-gradient(180deg, var(--royal-deep), #0E2466);
  padding: 50px 0 100px;
  position: relative;
  color: var(--sand);
  overflow: hidden;
}

/* Chola Connectivity Background Image */
.v2-location-bg {
  position: relative;
}

.v2-location-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  filter: sepia(0.3) hue-rotate(200deg);
}

.v2-location::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='%23D4AF37' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.v2-location > .container {
  position: relative;
  z-index: 2;
}

.v2-location .v2-section-title {
  color: var(--temple-gold);
}

.v2-location-card {
  background: rgb(253 250 242);
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.v2-location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--temple-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.v2-location-card:hover {
  background: rgb(253 250 242);
  transform: translateY(-8px);
  border-color: var(--temple-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.v2-location-card:hover::before {
  opacity: 1;
}

.v2-location-card h4 {
  color: var(--temple-gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 10px;
}

.v2-location-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(248, 240, 220, 0.12);
  font-size: 0.95rem;
  color: #000;
  transition: all 0.3s;
}

.v2-location-list li:hover {
  padding-left: 8px;
  color: #000;
}

.v2-location-list li:last-child {
  border-bottom: none;
}

.v2-location-list .distance {
  color: var(--temple-gold);
  font-weight: 600;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.v2-map-section {
  background: var(--ivory);
  padding: 20px 0 100px;
}

.v2-map-section .v2-section-title {
  color: var(--royal-deep);
}

.v2-map-container {
  border: 3px solid var(--temple-gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(10, 31, 92, 0.12);
}

/* ============================================================
   FOOTER
   ============================================================ */
.v2-footer {
  background: linear-gradient(135deg, #060F30, var(--royal-deep));
  color: rgba(248, 240, 220, 0.7);
  border-top: 3px solid var(--temple-gold);
  padding: 40px 0 20px;
}

.v2-footer h3 {
  color: var(--temple-gold);
  font-family: var(--font-script);
  font-size: 1.8rem;
}

.v2-footer h5 {
  color: var(--temple-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.v2-footer .footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  margin: 25px 0;
}

.v2-footer .footer-bottom {
  opacity: 0.6;
}

.v2-footer .footer-approval {
  color: var(--temple-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.v2-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.v2-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
} 

.v2-wave-ivory svg path { fill:#e4e4e0; }
.v2-wave-ivory-find svg path { fill:#fdfaf2; }
.v2-wave-ivory svg path {
  fill: var(--ivory);
}

.v2-wave-ivory-blue svg path {
  fill: #0c1f56;
}
.v2-wave-royal svg path { fill: var(--royal-deep); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.v2-fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.v2-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.v2-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.v2-fade-right {
  /* opacity: 0; */
  transform: translateX(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.v2-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.v2-delay-1 { transition-delay: 0.1s; }
.v2-delay-2 { transition-delay: 0.2s; }
.v2-delay-3 { transition-delay: 0.3s; }
.v2-delay-4 { transition-delay: 0.4s; }
.v2-delay-5 { transition-delay: 0.5s; }
.v2-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   MODAL
   ============================================================ */
.v2-modal .modal-content {
  background: transparent;
  border: none;
}

.v2-modal .modal-body img {
  border: 3px solid var(--temple-gold);
  border-radius: 8px;
}

/* Mobile Accordion for Location */
.v2-mobile-accordion {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.v2-mobile-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.v2-mobile-accordion .accordion-item:last-child {
  border-bottom: none;
}

.v2-mobile-accordion .accordion-button {
  background: rgba(10, 31, 92, 0.6);
  color: var(--temple-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 2px;
  border: none;
  padding: 16px 20px;
  box-shadow: none;
}

.v2-mobile-accordion .accordion-button:not(.collapsed) {
  background: rgba(212, 175, 55, 0.15);
  color: var(--temple-gold);
  box-shadow: none;
}

.v2-mobile-accordion .accordion-button::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg);
}

.v2-mobile-accordion .accordion-body {
  background: rgb(253 250 242);
  padding: 12px 20px;
}

.v2-location-list-mobile li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(248, 240, 220, 0.1);
  font-size: 0.92rem;
  color:#000;
}

.v2-location-list-mobile li:last-child {
  border-bottom: none;
}

.v2-location-list-mobile .distance {
  color: var(--temple-gold);
  font-weight: 600;
}

/* Fancybox Custom Theme */
/* .fancybox__container {
  --fancybox-bg: rgba(10, 31, 92, 0.95);
} */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .v2-hero-banner {
    padding-top: 72px;
  }

  .v2-banner-form-wrapper {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    display: block;
    padding: 30px 15px;
    background: linear-gradient(to bottom, var(--royal-deep), #0E2466);
    pointer-events: all;
  }

  .v2-banner-form {
    max-width: 100%;
  }

  .hero-form-card {
    padding: 28px 20px;
  }

  .v2-raja-decor,
  .v2-raja-decor-layout {
    display: none;
  }

  .v2-corner-flourish {
    display: none;
  }

  .v2-layout-bg-parallax {
    background-attachment: scroll;
  }

  .v2-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {

  .v2-navbar .cta-btn{
    font-size: 13px;
  }

  .v2-section-subtitle{
    font-size: 13px;
  }

  .v2-section-subtitle{
    display: flow-root !important;
  }

  .v2-navbar .navbar-brand img{
    width: 86px;
  }

  .v2-navbar{
    padding: 5px 0;
  }

  #contact p{
    text-align: justify;
  }


  .v2-map-section{
    padding: 20px 0 40px;
  }
  .v2-location{
    padding: 40px 0 100px;
  }

  .v2-layout{
    padding: 20px 0 40px;
  }

  .v2-highlights{
    padding: 50px 0 120px;
  }


    .v2-overview-desc{
      text-align: justify;
      font-size: 16px;
    }
  .v2-footer span{
text-align: center; 
 }


  .v2-navbar .navbar-toggler{
    display: none;
  }
  .v2-highlight-card {
    padding: 24px 16px;
  }

  .v2-amenity-icon-wrap {
    width: 70px;
    height: 70px;
  }

  .v2-amenity-icon-wrap svg {
    width: 34px;
    height: 34px;
  }
}

#mainform .form-control{
  padding: 28px 7px !important;
}

@media (max-width: 575.98px) {
  .v2-section-title {
    font-size: 1.6rem;
  }

  .v2-amenity-icon-wrap {
    width: 84px;
    height: 84px;
  }

  .v2-amenity-icon-wrap svg {
    width: 28px;
    height: 28px;
  }

  .v2-banner-form-wrapper {
    padding: 20px 12px;
  }
}

/* ============================================================
   MOBILE STICKY ACTION BAR
   ============================================================ */
.v2-mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: var(--royal-deep);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.v2-mobile-action-bar .mobile-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  animation: mobileCtaPulse 2s infinite;
}

.v2-mobile-action-bar .call-btn {
  background: linear-gradient(135deg, var(--royal-light), var(--royal-mid));
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.v2-mobile-action-bar .enquire-btn {
  background: linear-gradient(135deg, var(--temple-gold), #b8952e);
  color: var(--royal-deep);
}

@keyframes mobileCtaPulse {
  0% { box-shadow: inset 0 0 0 0 rgba(255,255,255,0.5); }
  70% { box-shadow: inset 0 0 0 20px rgba(255,255,255,0); }
  100% { box-shadow: inset 0 0 0 0 rgba(255,255,255,0); }
}

.v2-mobile-action-bar .icon {
  font-size: 1.15rem;
}

/* Adjust body padding for mobile to prevent content hiding behind action bar */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 56px;
  }
}
