/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #303030;
    --secondary-color: #0f0e0d;
    --accent-color: #d4af37;
    --text-dark: #707272;
    --text-light: #949494;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-top: 0;
}

/* Ensure all main sections don't cause horizontal overflow */
section,
.section,
footer,
.hero,
.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Exclude header from overflow-x hidden to preserve sticky positioning */
header {
    max-width: 100%;
}

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

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

/* Navigation */
/* ===== Luxury Header ===== */
.lux-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: rgb(251 251 251 / 98%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.lux-header__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lux-header__nav-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lux-brand img{
     height: auto;
    width: 95px;
  display: block;
}

/* Nav */
.lux-nav{
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  gap: 22px;
  padding: 10px 18px;
  border-radius: 999px;
      background: rgb(0 0 0 / 8%);
    border: 1px solid rgb(0 0 0 / 15%);
  overflow: hidden;
  width: auto;
}

.lux-link{
  position: relative;
  font-size: 14px;
  text-decoration: none;
  color: rgba(90, 90, 90, 0.85);
  letter-spacing: .2px;
  padding: 8px 2px;
  transition: color .25s ease, transform .25s ease;
  white-space: nowrap;
}

.lux-link:hover{
  color: rgb(44, 44, 44);
  transform: translateY(-1px);
}

/* Minimal "active" feel */
.lux-link.active{
  color: #000000;
}

/* Underline rail animation */


.lux-rail{
  position: absolute;
  left: 8px;
  bottom: 6px;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4af37, #f1d37a);
  box-shadow: 0 10px 26px rgba(212,175,55,0.4);
  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    width 0.35s cubic-bezier(.2,.8,.2,1);
}
/* CTA */
.lux-cta{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #d4af37, #f1d37a);
  box-shadow: 0 12px 26px rgba(212,175,55,0.3);
  transition: transform .25s ease, box-shadow .25s ease;
}

.lux-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(212,175,55,0.4);
}

.lux-cta__icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgb(0 0 0 / 39%);
}

.lux-cta__icon i{
  color: #ffffff;
}

.lux-cta__text{
  font-weight: 600;
  letter-spacing: .3px;
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 1050px){
  .lux-cta{ display: none; }
  .lux-nav{ justify-content: flex-start; overflow-x: auto; }
}

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section - Carousel */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
        margin-top: 80px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-carousel .container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: contents;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       background: linear-gradient(135deg, rgb(0 0 0 / 42%) 0%, rgb(0 0 0 / 62%) 50%, rgb(0 0 0 / 55%) 100%);
        z-index: 1;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    top: -100px;
}

.floating-element:nth-child(odd) {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    width: 80px;
    height: 80px;
}

.floating-element:nth-child(even) {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    width: 120px;
    height: 120px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    max-width: 900px;
    width: 100%;
    animation: fadeInUp 1s ease;
    pointer-events: none;
}

.hero-content .hero-buttons {
    pointer-events: auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease 0.3s both;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.title-line {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.5s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-subtitle i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-config {
        display: block;
    align-items: center;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-config .config-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-config .config-value {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
}

.hero-price {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.hero-price .price-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-price .price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    width: 32px;
    border-radius: 6px;
}

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

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-buttons .btn i {
    margin-right: 8px;
}

.btn {
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.btn span,
.btn svg {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 2px solid #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: fadeInUp 1s ease 1.1s both;
}

@media (max-width: 768px) {
    .carousel-prev {
        left: 15px;
        width: 44px;
        height: 44px;
    }

    .carousel-next {
        right: 15px;
        width: 44px;
        height: 44px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .carousel-dots {
        bottom: 20px;
    }

    .hero-price .price-amount {
        font-size: 2rem;
    }

    .hero-config {
        padding: 0.75rem 1.25rem;
    }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.scroll-arrows span {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: arrowMove 1.5s infinite;
}

.scroll-arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrowMove {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

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

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

/* Section Styles */

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

.section-title {
       font-size: 3.5rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    color: var(--accent-color);
    letter-spacing: 4px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Quality Assurance Section */
.quality-header {
    margin-bottom: 1rem;
}

.quality-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.quality-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
}

.quality-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.quality-stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.quality-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.quality-stat-item:hover::before {
    transform: scaleX(1);
}

.quality-stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.quality-stat-item:hover::after {
    opacity: 1;
}

.quality-stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-color);
}

.quality-stat-item .stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.quality-stat-item .counter {
    font-size: 4rem;
    font-weight: 700;
    color: #3b3b3b;
    line-height: 1;
    transition: all 0.3s ease;
}

.quality-stat-item:hover .counter {
    color: var(--accent-color);
    transform: scale(1.05);
}

.quality-stat-item .stat-plus {
    font-size: 4rem;
    font-weight: 700;
    color: #3b3b3b;
    line-height: 1;
    transition: all 0.3s ease;
}

.quality-stat-item:hover .stat-plus {
    color: var(--accent-color);
}

.quality-stat-item .stat-labels {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.quality-stat-item .stat-label-line1,
.quality-stat-item .stat-label-line2 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.quality-stat-item:hover .stat-label-line1,
.quality-stat-item:hover .stat-label-line2 {
    color: var(--primary-color);
}

/* Features Section */
.features-section {
    padding: 70px 0;
    position: relative;
    overflow: visible;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-main-title {
    font-size: 3.5rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    /* text-transform: uppercase; */
    position: relative;
    display: inline-block;
}

.features-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-color);
}

.features-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    letter-spacing: 1px;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f3e1e169;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
    box-sizing: border-box;
    width: 100%;
    overflow: visible;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), transparent);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transform: scale(1.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    background: var(--accent-color);
    transform: rotate(5deg);
}

.feature-item:hover .feature-icon-wrapper::after {
    opacity: 0.3;
    transform: scale(1.5);
}

.feature-item:hover .feature-icon-svg {
    color: var(--white);
    transform: scale(1.1);
}

.feature-icon-svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
    flex: 1;
    /* text-transform: uppercase; */
}
.bgpattern{
   position: relative; 
}
.bgpattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/pattern.jpg) center / 35%;
    z-index: -1;
    opacity: .2;
    filter: opacity(0.5);
}
/* Highlights Section - Modern Redesign */
.highlights-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.98) 100%);
}

.highlights-section .container {
    position: relative;
    z-index: 1;
}

.highlights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch; /* make both columns (image + text) equal height */
    margin-top: 3rem;
        margin-bottom: 1rem;
}

.highlights-image-wrapper {
    position: relative;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 425px; /* fill full height of its grid cell */
}

.highlights-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 71, 42, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 20px;
}

.highlights-image-wrapper:hover::before {
    opacity: 1;
}

.highlights-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.25);
}

.highlights-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    height: 100%; /* keep inner image container full height as well */
}

.highlights-image img {
    width: 100%;
    height: 100%; /* stretch to match section/column height */
    display: block;
    object-fit: cover; /* crop nicely while filling */
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.highlights-image-wrapper:hover img {
    transform: scale(1.08);
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
    z-index: 2;
    border-radius: 20px 0 0 20px;
}

.highlights-image-wrapper:hover .video-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.video-play-btn {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19d2e 100%);
    border: 5px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
    position: relative;
    z-index: 3;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid var(--white);
    animation: pulse 2s infinite;
    opacity: 0.7;
}

.video-play-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: pulse 2s infinite;
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.video-play-btn svg {
    color: var(--white);
    margin-left: 5px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-play-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.8);
    background: linear-gradient(135deg, #c19d2e 0%, var(--accent-color) 100%);
}

.video-play-btn:hover svg {
    transform: scale(1.15);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    z-index: 1;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(90deg);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

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

.highlights-text h2 {
    font-size: 3.5rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    color: var(--accent-color);
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.highlights-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.highlights-text > p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlights-list-wrapper {
    display: flex;
    flex-direction: column;
    padding-left: 3rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: .5rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.highlights-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.highlights-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    border-left-color: var(--accent-color);
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), var(--white));
}

.highlights-list li:hover::before {
    transform: scaleY(1);
}

.highlights-list li svg {
    color: var(--accent-color);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.highlights-list li:hover svg {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
}

.highlights-list li span {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

.highlights-list li:hover span {
    color: var(--primary-color);
}

/* Amenities Section - Modern Redesign */
.amenities-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(26, 71, 42, 0.03) 100%);
    z-index: 0;
}

.amenities-section .container {
    position: relative;
    z-index: 1;
}

.amenities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.amenities-main-title {
    font-size: 3.5rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    color: var(--accent-color);
    letter-spacing: 4px;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.amenities-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

/* Tab Navigation - Enhanced Design */
.amenities-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 4rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.amenity-tab {
    flex: 1;
    padding: 1.3rem 1rem;
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.amenity-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19d2e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 0;
    border-radius: 50px;
}

.amenity-tab span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.amenity-tab:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.amenity-tab.active {
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.amenity-tab.active::before {
    transform: scaleX(1);
}

.amenity-tab.active span {
    color: var(--white);
}

/* Amenities Carousel */
.amenities-carousel-wrapper {
    position: relative;
    padding: 0 80px;
    margin: 0 auto;
    max-width: 1400px;
}

.amenities-carousel {
    position: relative;
    overflow: hidden;
}

.amenities-zone {
    display: none;
    animation: fadeInSlide 0.5s ease;
}

.amenities-zone.active {
    display: block;
}

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

.amenities-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: .5rem 0;
}

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

.amenity-card {
    flex: 0 0 220px;
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    transition: left 0.6s ease;
}

.amenity-card:hover::before {
    left: 100%;
}

.amenity-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 71, 42, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.amenity-card:hover::after {
    opacity: 1;
}

.amenity-card:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
}

.amenity-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-radius: 50%;
    padding: 15px;
}

.amenity-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.5s ease;
}

.amenity-card:hover .amenity-icon::after {
    opacity: 0.4;
    transform: scale(1.4);
}

.amenity-card:hover .amenity-icon {
    transform: rotate(8deg) scale(1.15);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.amenity-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(.6);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.amenity-card:hover .amenity-icon img {
    filter: invert(.6) brightness(1.1);
    transform: scale(1.15);
}

.amenity-card h4 {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.amenity-card:hover h4 {
    color: var(--primary-color);
}

/* Navigation Buttons - Luxury Design - Redesigned Alignment */
.amenities-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: var(--white);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    overflow: visible;
}

.amenities-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 0;
}

.amenities-nav-btn svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
    width: 20px;
    height: 20px;
}

.amenities-nav-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    border-color: var(--accent-color);
}

.amenities-nav-btn:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.amenities-nav-btn:hover svg {
    transform: scale(1.15);
    color: var(--white);
}

.amenities-nav-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.amenities-nav-btn.prev {
    left: 0;
}

.amenities-nav-btn.next {
    right: 0;
}

.amenities-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.amenities-nav-btn:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(255, 255, 255, 0.6);
    color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.amenities-nav-btn:disabled::before {
    display: none;
}

.amenities-nav-btn:disabled svg {
    transform: none;
    color: rgba(212, 175, 55, 0.25);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
   position: relative;
    overflow: hidden;
}


.pricing-section .container {
    position: relative;
    z-index: 1;
    max-width: 1000px; /* make pricing section a bit more compact than global container */
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-main-title {
    font-size: 3.5rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    color: var(--accent-color);
    letter-spacing: 4px;
    /* text-transform: uppercase; */
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.pricing-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--accent-color);
}

.pricing-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 0 auto 3rem;
    max-width: 900px; /* further tighten card width inside pricing container */
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
    /* min-height: 600px; */
}

.pricing-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 71, 42, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.pricing-card:hover .pricing-card-overlay {
    opacity: 1;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 2;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--accent-color);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(212, 175, 55, 0.08) 100%);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.35);
}

.pricing-card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-badge {
    position: absolute;
        top: 4px;
    right: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-badge {
    transform: scale(1.1) rotate(2deg);
}

.pricing-badge.premium {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19d2e 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
    }
}

.pricing-type-section {
    margin-bottom: 1rem;
    /* padding-bottom: 1.5rem; */
    border-bottom: 2px solid var(--bg-light);
}

.pricing-type {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.pricing-subtype {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-configuration {
    margin-bottom: 1rem;
    flex: .2;
}

.config-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.config-details {
    display: block;
    /* flex-direction: column; */
    /* gap: 0.75rem; */
    /* text-align: center; */
}

.config-item {
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.config-item:last-child {
    border-bottom: none;
}

.pricing-card:hover .config-item {
    padding-left: 5px;
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.config-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.config-value {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-price-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 71, 42, 0.05) 100%);
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-price-section {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 71, 42, 0.1) 100%);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 4px;
}

.amount {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.unit {
    font-size: 1.3rem;
    color: #353838;
    font-weight: 600;
    margin-left: 4px;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.pricing-btn-breakup {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

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

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

.pricing-btn-breakup:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 71, 42, 0.4);
}

.pricing-btn-breakup:hover svg {
    transform: translateX(5px);
}

.pricing-btn-breakup svg {
    transition: transform 0.3s ease;
}

.pricing-btn-breakup.featured-breakup {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19d2e 100%);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.pricing-btn-breakup.featured-breakup:hover {
    background: linear-gradient(135deg, #c19d2e 0%, var(--accent-color) 100%);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-note p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Price Breakup Modal */
.price-breakup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.price-breakup-modal.active {
    display: flex;
}

.price-breakup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.price-breakup-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

.price-breakup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 2;
}

.price-breakup-close:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: rotate(90deg);
}

.breakup-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.breakup-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breakup-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.breakup-item-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.breakup-item-value {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.breakup-total {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19d2e 100%);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breakup-total-label {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breakup-total-value {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
}

/* Walkthrough Section */
.walkthrough-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.walkthrough-video-container {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.walkthrough-banner-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.walkthrough-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.walkthrough-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
    border-radius: 20px;
}

.walkthrough-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.3s ease, background 0.3s ease;
    pointer-events: none;
}

.walkthrough-video-overlay .walkthrough-youtube-play-btn {
    pointer-events: all;
}

.walkthrough-banner-wrapper.hidden {
    display: none;
}

.walkthrough-youtube-play-btn {
    width: 100px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    padding: 0;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.walkthrough-youtube-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    animation: pulse-youtube 2s infinite;
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
}

.walkthrough-youtube-play-btn .youtube-play-icon {
    width: 100px;
    height: 72px;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.walkthrough-youtube-play-btn:hover {
    transform: scale(1.1);
}

.walkthrough-youtube-play-btn:hover .youtube-play-icon {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

@keyframes pulse-youtube {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.walkthrough-content {
    margin-top: 3rem;
}

.walkthrough-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.walkthrough-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.walkthrough-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--accent-color);
}

.walkthrough-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.walkthrough-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.walkthrough-item:hover .walkthrough-image {
    transform: scale(1.1);
}

.walkthrough-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.walkthrough-item:hover .walkthrough-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.walkthrough-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 4px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
}

.walkthrough-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--white);
    animation: pulse-play 2s infinite;
    opacity: 0.7;
}

@keyframes pulse-play {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.walkthrough-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
    background: #c19d2e;
}

.walkthrough-play-btn i {
    margin-left: 4px;
}

.walkthrough-info {
    padding: 1.5rem;
    text-align: center;
}

.walkthrough-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.walkthrough-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.projects-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pattern.jpg");
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.15;
  z-index: 0;

}

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

.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--accent-color);
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 4px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
}

.project-link-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--white);
    animation: pulse-play 2s infinite;
    opacity: 0.7;
}

.project-link-btn:hover {
    background: #c19d2e;
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
}

.project-link-btn i {
    margin-left: 4px;
}

.project-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.project-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.4);
}

.project-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.project-location i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.project-config {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
}

.config-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.config-value {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.project-price {
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 71, 42, 0.08) 100%);
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover .project-price {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(26, 71, 42, 0.12) 100%);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.project-action-buttons {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.project-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.project-btn i {
    font-size: 0.95rem;
}

.project-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

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

.project-btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.project-btn-call {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

.project-btn-call:hover {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.project-enquire-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

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

.project-enquire-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 71, 42, 0.4);
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: var(--white);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.plans-grid a,.plans-grid a:hover{
color: #000;
text-decoration: none;
}

.plan-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.plan-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: blur(8px);
}

.plan-card:hover .plan-image img {
    transform: scale(1.1);
}

.plan-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 2;
}

.plan-card:hover .plan-image-overlay {
    opacity: 1;
    visibility: visible;
}

.plan-view-text {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 30px;
    border: 2px solid var(--white);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.plan-card:hover .plan-view-text {
    transform: translateY(0);
    opacity: 1;
    animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 255, 255, 0.4);
    }
}

.plan-info {
    padding: 1.5rem;
    text-align: center;
}

.plan-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plan-info p {
    color: var(--text-light);
}

/* Gallery Section */
/* Gallery Section - Creative Redesign */
.gallery-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
    overflow: visible;
    min-height: auto;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(26, 71, 42, 0.02) 100%);
    z-index: 0;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 32px;
    background: var(--white);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19d2e 100%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.filter-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    color: var(--white);
}

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

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19d2e 100%);
    color: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Gallery Grid - Beautiful Enhanced Design */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 3rem;
}

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: galleryFadeIn 0.8s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    height: 0;
    margin: 0;
    overflow: hidden;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    height: 350px;
    background: var(--text-light);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.gallery-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 71, 42, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
    border-color: var(--accent-color);
}

.gallery-image-wrapper:hover::before {
    opacity: 1;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.gallery-image-wrapper:hover img {
    transform: scale(1.1);
}

/* Gallery Number Badge */
.gallery-number {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: linear-gradient(135deg, #0000003d 0%, #0000004a 100%);
    color: #ffffff8f;
    font-size: 1.1rem;
    font-weight: 800;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.4scubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
     /* backdrop-filter: blur(10px); */
}
    

.gallery-image-wrapper:hover .gallery-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(221, 221, 220, 0.6);
  
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
}

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

.view-btn {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19d2e 100%);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.view-btn:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.7);
    background: linear-gradient(135deg, #c19d2e 0%, var(--accent-color) 100%);
}

.view-btn svg {
    transition: transform 0.3s ease;
}

.view-btn:hover svg {
    transform: scale(1.1);
}

/* Lightbox - Enhanced */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active {
    display: flex;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.lightbox-content img:hover {
    transform: scale(1.02);
}

.lightbox-info {
    color: var(--white);
    text-align: center;
    margin-top: 1.5rem;
}

.lightbox-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) translateY(-50%);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

/* Contact Section - 3 Column Layout */
.get-in-touch {
  position: relative;
  padding: 100px 0;
  background-color: var(--white);
  overflow: hidden;
}
.mt-20{
    margin-top: 20px;
}
.get-in-touch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pattern.jpg");
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.get-in-touch .container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Column 1: Image */
.contact-col-image {
  align-items: flex-start;
}

.contact-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.contact-hero-image {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  flex: 1;
}

.contact-hero-image:hover {
  transform: scale(1.02);
}

/* Column 2: Heading */
.contact-col-heading {
  align-items: center;
  text-align: center;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-title-wrapper {
  width: 100%;
}

.contact-main-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-color);
  letter-spacing: -1px;
  margin: 0;
  text-transform: uppercase;
}

.contact-main-title .title-line {
  display: block;
  transition: transform 0.3s ease;
}

.contact-main-title:hover .title-line {
  transform: translateX(5px);
}

/* Column 3: Form Container */
.contact-col-form {
  align-items: flex-end;
  display: flex;
  align-items: stretch;
}

.contact-form-container {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.contact-form .form-group {
  margin-bottom: 2px;
  position: relative;
}

.contact-form input {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
  color: var(--text-dark);
}

.contact-form input:hover {
  border-color: #d0d0d0;
  background: var(--white);
}

.contact-form input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

.contact-form input::placeholder {
  color: #999;
  font-weight: 400;
}

.contact-form .form-checkbox {
  /* margin: 30px 0 32px; */
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.contact-form .form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent-color);
}

.contact-form .form-checkbox label {
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-weight: 400;
}

.contact-form .form-checkbox label a {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-form .form-checkbox label a:hover {
  color: var(--primary-color);
}

.contact-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #d4af37, #f1d37a);
  color: #1a1a1a;
  border: none;
  padding: 18px 32px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0.8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #caa24d, #e7c873);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.contact-submit-btn:active {
  transform: translateY(-1px);
}

/* Contact Section Responsive */
@media (max-width: 1200px) {
  .contact-grid {
    gap: 30px;
  }

  .contact-main-title {
    font-size: 3.5rem;
  }

  .contact-hero-image {
    min-height: 550px;
  }
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-col-image {
    align-items: center;
  }

  .contact-hero-image {
    max-width: 600px;
    min-height: 400px;
    height: auto;
  }

  .contact-col-heading {
    order: -1;
  }

  .contact-main-title {
    font-size: 4rem;
  }

  .contact-col-form {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .get-in-touch {
    padding: 80px 0;
  }

  .contact-grid {
    gap: 40px;
  }

  .contact-main-title {
    font-size: 3rem;
    letter-spacing: -0.5px;
  }

  .contact-hero-image {
    min-height: 350px;
    height: auto;
    border-radius: 20px;
  }

  .contact-form {
    padding: 50px 35px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .get-in-touch {
    padding: 60px 0;
  }

  .contact-grid {
    gap: 35px;
  }

  .contact-main-title {
    font-size: 2.2rem;
    letter-spacing: 0;
    line-height: 1.2;
  }

  .contact-hero-image {
    min-height: 280px;
    height: auto;
    border-radius: 16px;
  }

  .contact-form {
    padding: 40px 25px;
    border-radius: 16px;
  }

  .contact-form input {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .contact-form .form-checkbox {
    padding: 16px;
    margin: 24px 0 28px;
  }

  .contact-submit-btn {
    padding: 16px 24px;
    font-size: 1rem;
  }
}

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-item h4 {
    color: #cfcfcf;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #000000;
    color: var(--white);
    padding: 30px 0 20px;
}
.footer a,.pricing-grid a,.footer a:hover,.pricing-grid a:hover{
    text-decoration: none;
}

.footer-content p{
        text-align: justify;
}
.footer-content {
    display: block;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Privacy Policy Page Styles */
.jumbotron {
    background: var(--white);
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.jumbotron h5,
.jumbotron .h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jumbotron h5:first-child,
.jumbotron .h5:first-child {
    margin-top: 0;
}

.jumbotron h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jumbotron p {
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: justify;
}

.jumbotron ul {
    margin: 20px 0;
    padding-left: 30px;
}

.jumbotron ul li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.jumbotron hr {
    margin: 40px 0;
    border: none;
    border-top: 2px solid #e0e0e0;
    opacity: 0.5;
}

.jumbotron a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.jumbotron a:hover {
    color: var(--primary-color);
}

/* Privacy Policy Body Background */
body#page-top {
    background-color: var(--bg-light);
    background-image: url("../images/pattern3.jfif");
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
}

body#page-top::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    background-image: url("../images/pattern.jpg");
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

body#page-top .container {
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Privacy Policy Responsive */
@media (max-width: 768px) {
    .jumbotron {
        padding: 40px 25px;
        margin: 20px 0;
        border-radius: 15px;
    }

    .jumbotron h5,
    .jumbotron .h5 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        margin-top: 25px;
    }

    .jumbotron h4 {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .jumbotron p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .jumbotron hr {
        margin: 30px 0;
    }
}

@media (max-width: 480px) {
    .jumbotron {
        padding: 30px 20px;
        margin: 15px 0;
    }

    .jumbotron h5,
    .jumbotron .h5 {
        font-size: 1.1rem;
    }

    .jumbotron h4 {
        font-size: 1.3rem;
    }

    .jumbotron p {
        font-size: 0.9rem;
        text-align: left;
    }

    .jumbotron ul {
        padding-left: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-card-content {
    position: relative;
    z-index: 2;
     padding: .5rem;
    }

    .config-value {
    font-size: 1.5rem;
    }
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        padding: 30px 20px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-main {
        font-size: 1.2em;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-price .price-amount {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-banner {
        height: 100vh;
        min-height: 600px;
    }

    .highlights-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .highlights-image-wrapper {
        margin-bottom: 1rem;
    }

    .highlights-list li {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .highlights-list li:hover {
        transform: translateX(5px);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-column {
        gap: 2rem;
    }

    .feature-item {
        padding: 1.5rem 1.2rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        overflow: visible;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        border-top: 3px solid transparent;
    }

    .feature-item::before {
        display: none;
    }

    .feature-item:hover {
        transform: none;
        border-top-color: var(--accent-color);
    }

    .feature-icon-wrapper {
        margin-bottom: 1rem;
    }

    .feature-text {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        width: 100%;
    }

    .features-column {
        width: 100%;
        overflow: visible;
    }

    .features-content {
        overflow: visible;
        padding: 0 10px;
    }

    .amenities-main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .amenities-tabs {
        max-width: 100%;
        padding: 8px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        margin-bottom: 3rem;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
    }

    .amenity-tab {
        padding: 1rem 0.75rem;
        font-size: 0.8rem;
        letter-spacing: 0.8px;
        flex: 0 0 calc(50% - 4px);
        max-width: calc(50% - 4px);
        border-radius: 25px;
        box-sizing: border-box;
    }

    .amenity-tab.active {
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    }

    .pricing-price-section {
        margin-bottom: 2rem;
        padding: .5rem;
    }

    .amenities-carousel-wrapper {
        padding: 0 60px;
    }

    .amenities-nav-btn {
        width: 48px;
        height: 48px;
    }

    .amenities-nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .amenity-card {
        flex: 0 0 180px;
        padding: 2rem 1.25rem;
    }

    .amenity-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-number {
        top: 18px;
        left: 18px;
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .pricing-main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .plans-grid,
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.25rem;
    }

    .gallery-image-wrapper {
        border-radius: 16px;
        height: 200px;
    }

    .gallery-overlay {
        padding: 1.25rem;
    }

    .view-btn {
        width: 60px;
        height: 60px;
    }

    .project-name {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 1.4rem;
    }

    .project-action-buttons {
        gap: 0.5rem;
    }

    .project-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

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

    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-price .price-amount {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-banner {
        min-height: 500px;
    }

    .features-main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .features-subtitle {
        font-size: 1.2rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
        gap: 1rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        overflow: visible;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        border-top: 3px solid transparent;
    }

    .feature-item::before {
        display: none;
    }

    .feature-item:hover {
        transform: none;
        border-top-color: var(--accent-color);
    }

    .feature-icon-wrapper {
        flex-shrink: 0;
        margin-bottom: 1rem;
    }

    .feature-text {
        font-size: 0.85rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        width: 100%;
    }

    .features-content {
        padding: 0 1px;
        overflow: visible;
    }
    .highlights-list-wrapper {
    display: flex;
    flex-direction: column;
    padding-left: 0rem!important;
}

    .features-section .container {
        padding-left: 15px;
        padding-right: 15px;
        overflow: visible;
    }

    .highlights-text h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

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

    .highlights-list li {
        padding: 1rem;
        margin-bottom: 1rem;
        gap: 1rem;
    }

    .highlights-list li span {
        font-size: 0.95rem;
    }

    .highlights-list li svg {
        width: 20px;
        height: 20px;
    }
    .feature-item:hover {
        transform: none;
    }

    .features-section {
        overflow: visible;
    }

    .features-section .container {
        overflow: visible;
        max-width: 100%;
    }

    .amenities-main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .amenities-tabs {
        padding: 6px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
        margin-bottom: 2.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: flex-start;
    }

    .amenity-tab {
        padding: 0.9rem 0.5rem;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        flex: 0 0 calc(50% - 3px);
        max-width: calc(50% - 3px);
        border-radius: 20px;
        box-sizing: border-box;
        font-weight: 700;
        text-align: center;
    }

    .amenity-tab.active {
        box-shadow: 0 5px 18px rgba(212, 175, 55, 0.6);
    }

    .amenity-tab:hover {
        transform: translateY(-1px);
    }

    .amenities-carousel-wrapper {
        padding: 0 10px;
    }

    .amenities-nav-btn {
        width: 44px;
        height: 44px;
    }

    .plan-view-text {
        font-size: 1rem;
        padding: 10px 20px;
        letter-spacing: 1.5px;
    }

    .amenities-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .amenity-card {
        flex: 0 0 150px;
        padding: 1.75rem 1rem;
        border-radius: 16px;
    }

    .amenity-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
        padding: 12px;
    }

    .amenity-card h4 {
        font-size: 0.8rem;
    }

    .pricing-main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .plans-grid,
    .projects-grid,
    .walkthrough-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .gallery-image-wrapper {
        border-radius: 16px;
        height: 200px;
    }

    .gallery-number {
        top: 15px;
        left: 15px;
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
        border-width: 2px;
    }

    .gallery-overlay {
        padding: 1rem;
    }

    .view-btn {
        width: 48px;
        height: 48px;
    }

    .view-btn svg {
        width: 18px;
        height: 18px;
    }

    .quality-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .quality-stat-item {
        padding: 2rem 1.5rem;
    }

    .quality-stat-item .counter,
    .quality-stat-item .stat-plus {
        font-size: 3rem;
    }

    .quality-title {
        font-size: 2rem;
    }

    .project-image-wrapper {
        height: 180px;
    }

    .walkthrough-video-container {
        height: 300px;
        margin-bottom: 60px;
        border-radius: 15px;
    }

    .walkthrough-youtube-play-btn {
        width: 80px;
        height: 56px;
    }

    .walkthrough-youtube-play-btn .youtube-play-icon {
        width: 80px;
        height: 56px;
    }

    .walkthrough-content {
        padding: 0 20px 60px;
    }

    .walkthrough-image-wrapper {
        height: 200px;
    }

    .walkthrough-image-wrapper {
        height: 200px;
    }

    .quality-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quality-stat-item {
        padding: 1.5rem 1rem;
    }

    .quality-stat-item .counter,
    .quality-stat-item .stat-plus {
        font-size: 2.5rem;
    }

    .quality-title {
        font-size: 1.8rem;
    }

    .project-info {
        padding: 1rem;
    }

    .project-name {
        font-size: 1.3rem;
    }

    .price-amount {
        font-size: 1.2rem;
    }

    .project-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
}

/* ===== Location Highlights (Map + Tabs) ===== */
.loc-section{
  position: relative;
 padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.loc-wrap{
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  min-height: 430px;
}

.loc-map{
  position: relative;
  background: #f5f5f5;
}

.loc-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* right panel */
.loc-panel{
  position: relative;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(5px);
  border-left: 1px solid rgba(0,0,0,0.06);
  padding: 22px 6px;
}

.loc-top{
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.loc-arrow{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.loc-arrow:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.loc-tabs{
  display: flex;
  justify-content: center;
  gap: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  padding: 0 10px;
}

.loc-tab{
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px 6px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .8px;
  color: rgba(0,0,0,0.65);
  transition: color .25s ease;
  white-space: nowrap;
}

.loc-tab.active{
  color: #5e3713;
}

.loc-tab.active::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #5e3713;
  border-radius: 999px;
}

.loc-content{
  margin-top: 14px;
}

.loc-list{
  display: none;
}
.loc-list.active{
  display: block;
}

.loc-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 15px;
  color: rgba(0,0,0,0.78);
}

.loc-row .km{
  font-weight: 600;
  color: rgba(0,0,0,0.65);
}

/* Vertical Enquire button */
.loc-enquire{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right top;
  background: #2f7a46;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: .6px;
  box-shadow: 0 16px 34px rgba(47,122,70,0.25);
  z-index: 5;
}

/* responsive */
@media (max-width: 980px){
  .loc-wrap{ grid-template-columns: 1fr; }
  .loc-panel{ border-left: 0; border-top: 1px solid rgba(0,0,0,0.06); }
  .loc-enquire{ display:none; }
  .loc-map{ min-height: 320px; }
  .loc-content {
    margin-top: 14px;
    display: table-cell;
}
.loc-row .km {
    margin-left: 20px;
}
}
/* ========= Mobile Hamburger + Drawer ========= */
.lux-burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
     border: 1px solid rgb(0 0 0 / 20%);
    background: rgb(0 0 0 / 68%);
  cursor:pointer;
  gap:6px;
  padding:10px;
}
.lux-burger span{
  display:block;
  height:2px;
  width:100%;
  background: rgba(255,255,255,0.9);
  border-radius:999px;
  transition: transform .25s ease, opacity .25s ease;
}

/* Drawer */
.lux-drawer-overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.55);
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
  z-index: 1400;
}

.lux-drawer{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(88vw, 380px);
  background: rgba(30, 30, 30, 0.98);
  backdrop-filter: blur(14px);
  border-left: 1px solid rgba(255,255,255,0.1);
  transform: translateX(105%);
  transition: transform .30s cubic-bezier(.2,.8,.2,1);
  z-index: 1500;
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 14px;
  z-index: 9999!important;
}

.lux-drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.lux-drawer__top img{
  width: 160px;
  height: auto;
}
.lux-drawer__close{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.1);
  cursor:pointer;
  color: #ffffff;
}

.lux-drawer__nav{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding-top: 6px;
}
.lux-drawer__nav a{
  text-decoration:none;
  color: rgba(255,255,255,0.9);
  font-weight:600;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}
.lux-drawer__nav a:hover{
  background: rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.5);
  color: #ffffff;
}

.lux-drawer__cta{
  margin-top:auto;
}
.lux-drawer__call{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 12px;
  border-radius: 14px;
  text-decoration:none;
  font-weight:700;
  color:#1a1a1a;
  background: linear-gradient(135deg, #d4af37, #f1d37a);
  box-shadow: 0 16px 34px rgba(212,175,55,0.3);
}

/* Open state */
body.menu-open .lux-drawer-overlay{
  opacity:1;
  pointer-events:auto;
}
body.menu-open .lux-drawer{
  transform: translateX(0);
}

/* Make header responsive */
@media (max-width: 992px){
  .lux-nav{ display:none; }
  .lux-cta{ display:none; }
  .lux-burger{ display:inline-flex; align-items:center; justify-content:center; }
}

/* ========= Mobile Sticky Footer Bar ========= */
.m-stickybar{
  display:none;
}

@media (max-width: 992px){
  body{ padding-bottom: 74px; } /* space for sticky bar */

  .m-stickybar{
    position: fixed;
    left: 5px;
    right: 5px;
    bottom: 5px;
    height: 58px;
    display:flex;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    z-index: 1600;
  }

  .mbar-btn{
            font-size: 10px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;

    gap: 4px;
    text-decoration:none;
    border-radius: 14px;
    font-weight: 700;
    color: rgba(0,0,0,0.78);
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
  }

  .mbar-btn i{ color: var(--accent-color); }

  .mbar-btn--primary{
    color:#ffffff;
    background: linear-gradient(135deg, #268f0b, #029149);
    border-color: #268f0b;
  }
}

.disc{
  margin-top: 10px;
  text-align: justify;
}
.disc label ,.disc label a{
display: contents!important;
font-size: 12px;
color: #a1a1a1;

}
.disc input{
display: inline-block;
width: 10px;
height: 10px;
color: #a1a1a1;
}
/* Mobile: make location tabs horizontally scrollable */
@media (max-width: 600px) {
  .loc-top{
    grid-template-columns: 38px 1fr 38px; /* smaller arrows */
    gap: 8px;
  }

  .loc-arrow{
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .loc-tabs{
    justify-content: flex-start;        /* don’t center */
    gap: 12px;                          /* reduce spacing */
    overflow-x: auto;                   /* allow horizontal scroll */
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;  /* smooth iOS scroll */
    scrollbar-width: none;              /* Firefox hide */
  }
  .loc-tabs::-webkit-scrollbar{ display: none; } /* Chrome/Safari hide */

  .loc-tab{
    flex: 0 0 auto;                     /* prevent shrinking */
    font-size: 12px;
    padding: 10px 6px 12px;
  }
}

.mb-10{
    margin-bottom: 20px;
}
.whatsapp-pop {
  position: fixed;
  top: 87%;
  left: 30px;
  z-index: 9;
}
.whatsapp-pop a {
  border-radius: 50%;
  text-align: center;
  padding: 6px 10px;
  background-color: #2db742;
  transition: 0.5s all;
  display: inline-block;
}
.whatsapp-pop a img {
  max-width: 46px;
  margin-bottom: 5px;
}
.whatsapp-mini-text-img span {
  background-color: #ECC37E;
    top: 20%;
      left: 73px;
    width: max-content;
    position: absolute;
  color: black;
  padding: 15px;
  font-size: 12px;
  border-radius: 5px;
  z-index: 8;
}

/* Loader inside button */
.btn.is-loading{
  pointer-events: none;
  opacity: 0.85;
}

.btn .btn-spinner{
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.45);
  border-top-color: rgba(255,255,255,1);
  border-radius: 999px;
  animation: btnSpin .8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

.btn.is-loading .btn-spinner{
  display: inline-block;
}

@keyframes btnSpin{
  to { transform: rotate(360deg); }
}
/* =========================================================
   Floating WhatsApp (Luxury + Animated)
   ========================================================= */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;

  /* background: linear-gradient(135deg, rgba(212,175,55,.20), rgba(255,255,255,.08)); */
  background: linear-gradient(135deg, rgb(212 175 55 / 40%), #c19d2e);
  border: 1px solid rgba(212,175,55,.30);
  backdrop-filter: blur(12px);

  box-shadow: 0 14px 34px rgba(0,0,0,.25);
  text-decoration: none;
  color: #ffffff;

  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}

.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
  border-color: rgba(212,175,55,.55);
}

/* subtle shimmer */
.wa-float::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.22), transparent 40%);
  transform: rotate(12deg);
  opacity: .6;
  pointer-events:none;
}

.wa-float__icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 12px 28px rgba(18,140,126,.28);
  border: 1px solid rgba(255,255,255,.18);

  position: relative;
  z-index: 1;
}

.wa-float__icon i{
  font-size: 22px;
  color: #fff;
}

.wa-float__label{
  font-weight: 800;
  letter-spacing: .3px;
  font-size: 13px;
  position: relative;
  z-index: 1;
  padding-right: 4px;
  text-transform: uppercase;
}

/* pulse rings */
.wa-float__pulse{
 position: absolute;
    width: 53px;
    height: 53px;
    left: 9px;
    bottom: 8px;
    border-radius: 999px;
    border: 2px solid rgb(37 211 102 / 97%);
    animation: waPulse 1.8s ease-out infinite;
    pointer-events: none;
    opacity: .7;
}

.wa-float__pulse--2{
  animation-delay: .55s;
  opacity: .55;
}

@keyframes waPulse{
  0%   { transform: scale(.75); opacity: .75; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* little floating motion */
@keyframes waFloat{
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

.wa-float{
  animation: waFloat 3.4s ease-in-out infinite;
}
/* Responsive Design */
@media (min-width: 769px) {
.d-banner{
        display: block!important;
    }
     .m-banner{
        display: none!important;
    }
}
/* Mobile positioning (avoid overlapping your mobile sticky footer) */
@media (max-width: 768px){
    .m-banner{
        display: block!important;
    }
     .d-banner{
        display: none!important;
    }
  .wa-float{
    right: 14px;
    bottom: 86px; /* leaves room for your mobile sticky footer */
  }

  .wa-float__label{
    display: none; /* keep it compact on mobile */
  }
}
/* =========================================================
   Back To Top Button – Luxury Animated
   ========================================================= */
.back-to-top{
  position: fixed;
  left: 20px;
  bottom: 46px; /* stays above mobile sticky footer */
  z-index: 9998;

  width: 48px;
  height: 48px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: linear-gradient(135deg, #d4af37, #f1d37a);
  color: #101218;
  border: none;

  box-shadow: 0 14px 34px rgba(212,175,55,.35);
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.9);

  transition: opacity .25s ease,
              transform .25s ease,
              visibility .25s ease,
              box-shadow .25s ease;
}

/* visible state */
.back-to-top.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* hover */
.back-to-top:hover{
  box-shadow: 0 18px 46px rgba(212,175,55,.55);
  transform: translateY(-2px) scale(1.03);
}

/* icon */
.back-to-top i{
  font-size: 16px;
  font-weight: 900;
}

/* subtle pulse */
.back-to-top::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  border:2px solid rgba(212,175,55,.55);
  animation: backTopPulse 2.4s ease-out infinite;
  opacity:.55;
  pointer-events:none;
}

@keyframes backTopPulse{
  0%   { transform: scale(.85); opacity:.6; }
  100% { transform: scale(1.6); opacity:0; }
}

/* Mobile adjustment */
@media (max-width: 768px){
  .back-to-top{
    left: 14px;
    bottom: 66px; /* above WhatsApp + mobile footer */
  }
}
