:root {
    --primary-color: #00313c;
    --primary-dark: #092d35;
    --primary-light: #065b6e;
    --secondary-color: #f8f9fa;
    --accent-gold: #00313c;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --text-muted: #9ca3af;
    --gradient-primary: linear-gradient(135deg, #00313c 0%, #05728b 100%);
    --gradient-accent: linear-gradient(135deg, #00313c 0%, #003f4d 50%, #29a5c1 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

.font-display {
    font-family: 'Playfair Display', serif;
}
img.nav-logo {
    width: 18%;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #00313c 0%, #004b5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Navigation */
.navbar {
    background: #ffffff;
    /* backdrop-filter: blur(5px); */
    border-bottom: 1px solid rgb(179 149 88 / 26%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    width: 100%;
    max-width: 100vw;
}

.navbar.scrolled {
    padding: 0.3rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.navbar .container {
    /* max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem; */
}

.navbar-brand {
    font-weight: 800;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.1rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    max-width: 100%;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgb(6 135 162 / 8%);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.btn-nav-cta {
    background: #003d4a;
    border: none;
    color: white;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

/* Hero Section with Slider */
.hero-section {
    height: 100vh;
    min-height: 500px;
    max-height: 900px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0/ 10%);
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* .hero-slide:nth-child(1) .hero-slide-bg {
    background-image: url('../images/banner/banner-1.webp');
}

.hero-slide:nth-child(2) .hero-slide-bg {
    background-image: url('../images/banner/banner-2.webp');
}

.hero-slide:nth-child(3) .hero-slide-bg {
    background-image: url('../images/banner/banner-3.webp');
}

.hero-slide:nth-child(4) .hero-slide-bg {
    background-image: url('../images/banner/banner-4.webp');
}

.hero-slide:nth-child(5) .hero-slide-bg {
    background-image: url('../images/banner/banner-1.webp');
} */

/* .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;

    
} */

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    background: rgb(0 0 0 / 38%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2.5rem 1rem;
    border-radius: 33px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(1px);
    display: inline-block;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    display: inline-block;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    /* font-size: clamp(2rem, 8vw, 5.5rem); */
    font-size: clamp(1rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.4s both;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #a98a48, #d0ad64);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.4rem);
    margin-bottom: 0.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-details {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-price {
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 2rem;
    background:linear-gradient(45deg, #a98a48, #d4b167);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 1s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.2s both;
    max-width: 100%;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1 1 auto;
    min-width: 140px;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #a98a48 0%, #dcbe7e 100%);
    border: none;
    color: #fff;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::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;
}

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

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
}

/* Swiper Custom Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold);
    transform: scale(1.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

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

/* Stats Section */
.stats-section {
    background: white;
    /* margin-top: -80px; */
    position: relative;
    z-index: 10;
    border-radius: 25px 25px 0 0;
    padding: 3rem 1rem;
    box-shadow: var(--shadow-strong);
    width: 100%;
    max-width: 100%;
}

.stats-section .container {
    /* max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem; */
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(36, 154, 183, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 1.5rem;
    width: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: 0.3;
    transform: scale(1.2);
    animation: pulse-ring 2s infinite;
}

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

.stat-icon i {
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    /* margin-bottom: 0.5rem; */
    /* font-family: 'Playfair Display', serif; */
    word-wrap: break-word;
}

.stat-label {
    font-size: clamp(1rem, 3vw, 1.1rem);
    font-weight: 600;
    color: var(--text-dark);
    /* margin-bottom: 0.5rem; */
}

.stat-sublabel {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    color: var(--text-muted);
}

/* Section Styling */
.section {
    padding: 4rem 1rem;
    width: 100%;
    max-width: 100%;
}

.section .container {
    /* max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem; */
}

.section-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.section-badge {
    background: rgb(3 148 180 / 8%);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Overview Cards */
.overview-cards {
    margin-top: 3rem;
}

.overview-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(36, 154, 183, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.overview-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.overview-icon i {
    font-size: 1.5rem;
    color: white;
}

.overview-card h4 {
    font-size: clamp(1.3rem, 4vw, 1.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.overview-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

/* Floor Plans */
.floor-plan-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(36, 154, 183, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    margin-bottom: 1.5rem;
}

.floor-plan-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-strong);
}

.floor-plan-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.floor-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.floor-plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 57 70 / 91%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.floor-plan-card:hover .floor-plan-overlay {
    opacity: 1;
}

.floor-plan-content {
    padding: 2rem 1.5rem;
}

.floor-plan-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.floor-plan-title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.floor-plan-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.floor-plan-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.floor-plan-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.floor-plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-floor-plan {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.btn-floor-plan:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.amenity-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(36, 154, 183, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 154, 183, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    transition: top 0.4s ease;
}

.amenity-card:hover::before {
    top: 0;
}

.amenity-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.amenity-icon i {
    color: white;
    font-size: 1.5rem;
}

.amenity-title {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.amenity-description {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* Gallery Slider */
.gallery-section {
    padding: 4rem 1rem;
}

.gallery-slider {
    margin-top: 3rem;
}

.gallery-slide {
    height: 300px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.gallery-slide:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgb(0 56 68), rgb(0 61 74 / 27%));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

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

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery-title {
    color: white;
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 600;
    text-align: center;
}

/* Image Popup Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.image-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: var(--shadow-strong);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 1rem;
}

.modal-next {
    right: 1rem;
}

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

/* Location & Connectivity Styles */
.location-map {
height: 500px;
border-radius: 25px;
overflow: hidden;
position: relative;
box-shadow: var(--shadow-medium);
margin-bottom: 3rem;
}

.location-map iframe {
width: 100%;
height: 100%;
border: none;
border-radius: 25px;
}

/* Connectivity Tabs */
.connectivity-tabs {
margin-bottom: 1rem;
}

.connectivity-tabs .nav-pills {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: center;
}

.connectivity-tabs .nav-pills .nav-link {
background: rgb(181 151 91 / 10%);
color: var(--primary-color);
border: 1px solid transparent;
border-radius: 50px;
padding: 0.5rem 1rem;
font-size: clamp(0.75rem, 2.5vw, 0.85rem);
font-weight: 600;
transition: all 0.3s ease;
text-align: center;
white-space: nowrap;
}

.connectivity-tabs .nav-pills .nav-link.active,
.connectivity-tabs .nav-pills .nav-link:hover {
background: var(--gradient-primary);
color: white !important;
border-color: var(--primary-color);
}

/* Connectivity Grid Layout */
.connectivity-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
margin-top: 1rem;
}

.connectivity-grid .connectivity-item {
display: flex;
align-items: center;
padding: 1.5rem;
background: white;
border-radius: 20px;
margin-bottom: 0;
box-shadow: var(--shadow-soft);
border: 1px solid rgba(36, 154, 183, 0.1);
transition: all 0.3s ease;
}

.connectivity-grid .connectivity-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-medium);
border-color: var(--primary-color);
}

.connectivity-icon {
width: 50px;
height: 50px;
background: var(--gradient-primary);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 1rem;
flex-shrink: 0;
}

.connectivity-icon i {
color: white;
font-size: 1.2rem;
}

.connectivity-info h6 {
font-size: clamp(1rem, 3vw, 1.1rem);
font-weight: 700;
color: var(--text-dark);
margin-bottom: 0.3rem;
}

.connectivity-info small {
color: var(--text-light);
font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}
div#connectivityTabContent {
min-height: 252px;
}
#connectivityTabs .nav-link.active {
color: #fff !important;
}
#connectivityTabs .nav-link.active::after {

background: #ffffff;

}
/* International Phone Input Styles */
.phone-input-container {
position: relative;
}

.phone-label {
font-weight: 600;
color: var(--text-dark);
margin-bottom: 0.5rem;
display: block;
font-size: 0.9rem;
}

/* Override intl-tel-input styles */
.iti {
width: 100%;
display: block;
}

.iti__flag-container {
background: white;
border: 2px solid #e9ecef;
border-radius: 15px 0 0 15px;
height: 58px;
transition: all 0.3s ease;
}

.iti__selected-flag {
height: 54px;
padding: 0 15px;
display: flex;
align-items: center;
}

.iti__arrow {
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 4px solid #666;
margin-left: 6px;
}

.iti__flag {
width: 20px;
height: 15px;
background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/img/flags.png");
background-repeat: no-repeat;
background-size: 5652px 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/img/flags@2x.png");
    }
}

.iti input[type="tel"] {
border: 2px solid #e9ecef;
/* border-left: none;
border-radius: 0 15px 15px 0; */
padding: 1rem 1rem;
font-size: 1rem;
height: 58px;
transition: all 0.3s ease;
width: 100%;
}

.iti input[type="tel"]:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.2rem rgba(36, 154, 183, 0.25);
outline: none;
}

.iti input[type="tel"]:focus + .iti__flag-container,
.iti__flag-container:hover {
border-color: var(--primary-color);
}

/* Country dropdown */
.iti__country-list {
    z-index: 9!important;
max-height: 200px;
overflow-y: auto;
border-radius: 15px;
box-shadow: var(--shadow-medium);
border: 1px solid rgba(36, 154, 183, 0.2);
background-color: #ffffff !important;
background: #ffffff !important;
max-width: 356px;
overflow-x: hidden;
}

.iti__country {
padding: 8px 15px;
cursor: pointer;
border-bottom: 1px solid #f0f0f0;
transition: all 0.3s ease;
background-color: #ffffff !important;
background: #ffffff !important;
}

.iti__country:hover {
background-color: rgba(36, 154, 183, 0.1) !important;
}

.iti__country.iti__highlight {
background-color: rgba(36, 154, 183, 0.2) !important;
}

.iti__country-name {
color: var(--text-dark);
margin-left: 10px;
}

.iti__dial-code {
color: var(--text-light);
}

/* Error state */
.iti.iti--error input[type="tel"] {
border-color: #dc3545;
}

.iti.iti--error .iti__flag-container {
border-color: #dc3545;
}

.invalid-feedback {
display: none;
color: #dc3545;
font-size: 0.875rem;
margin-top: 0.5rem;
}
.error{
    color: #dc3545;
}

.invalid-feedback.show {
display: block;
}



/* CTA Section */
.cta-section {
    background: var(--gradient-accent);
    color: white;
    text-align: center;
    border-radius: 25px;
    padding: 3rem 1.5rem;
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: grain 20s linear infinite;
}

@keyframes grain {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    transition: all 0.4s ease;
    flex: 1 1 auto;
    min-width: 150px;
    max-width: 250px;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    box-shadow: var(--shadow-medium);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    color: var(--primary-color);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* RERA Section */
.rera-section {
    /* border-top: 1px solid #333; */
    padding-top: 3rem;
}

.qr-codes {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.qr-code {
    width: 100px;
    height: 100px;
    background: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
    text-align: center;
}
.qr-code  img {
    width: 100%;
    border-radius: 12px;
}

.rera-details {
    color: #aaa;
}

.rera-details p {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    margin-bottom: 0.5rem;
}

.rera-link {
    color: #00b9f6;
    text-decoration: none;
}

.rera-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 2rem 1rem 1rem;
}

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

.footer-logo {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-logo img{
    width: 13%;
}

.footer-text {
    color: #aaa;
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.footer-disclaimer {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    color: #777;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1000;
    animation: float-cta 3s ease-in-out infinite;
}

.floating-cta .btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 1rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.floating-cta .btn:hover {
    transform: scale(1.05);
    color: white;
}

@keyframes float-cta {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Modal Enhancements */
.modal-content {
    border-radius: 25px;
    border: none;
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.5rem;
}

.modal-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 700;
}

.modal-body {
    padding: 1.5rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(36, 154, 183, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.btn-submit {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

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

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

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

/* Base */

.radial {
    position: fixed;
    z-index: 20;
    bottom: 150px;
    right: 50px;
  }
  .radial .triggerButton {
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: none;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    text-decoration: none;
    background: linear-gradient(0deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15), 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.15s ease-in-out;
    transform: translate(-50%, -50%);
  }
  .radial .triggerButton:hover {
    background-color: #00009a;
  }
  .radial .triggerButton .faOpen {
    position: absolute;
    font-size: 14px;
    transform: scale(1);
    transition: 0.25s ease-in-out;
  }
  .radial .triggerButton .faOpen:nth-child(1) {
    top: 20%;
  }
  .radial .triggerButton .faOpen:nth-child(2) {
    left: 20%;
    top: 52%;
  }
  .radial .triggerButton .faOpen:nth-child(3) {
    right: 20%;
    top: 52%;
  }
  .radial .triggerButton .faClose {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0) translate(-50%, -50%);
    transition: 0.25s ease-in-out;
  }
  .radial .radialMenu {
    --width: 250px;
    width: var(--width);
    height: var(--width);
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .radial .radialItem {
    list-style: none;
    position: absolute;
    width: 55px;
    height: 55px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  .radial .radialItem:nth-child(1) a,
    .radial .radialItem:nth-child(1) span {
    background: #08b251;
    background: linear-gradient(-90deg, #08b251 0%, #08b251 100%);
    }

  .radial .radialItem:nth-child(2) a, .radial .radialItem:nth-child(2) span {
    background-color: #89d8d3;
    background-image: linear-gradient(90deg, #89d8d3 0%, #03c8a8);
  }
  .radial .radialItem:nth-child(3) a, .radial .radialItem:nth-child(3) span {
    background: #ff1b00;
    background: linear-gradient(-90deg, #ff1b00 0%, #fb4b02 100%);
  }
  .radial .radialItem a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    background: #ff4081;
    border-radius: 50%;
    text-decoration: none;
  }
  .radial .radialItem a:hover {
    transition-delay: 0s;
    background-color: #f30053;
  }
  .radial .radialItem a:hover span {
    opacity: 1;
    right: calc(100% + 15px);
    visibility: visible;
  }
  .radial .radialItem span {
    position: absolute;
    top: 50%;
    background-color: #f30053;
    right: 100%;
    transform: translateY(-50%);
    white-space: nowrap;
    border-radius: 5px;
    padding: 5px;
    font-size: 14px;
    transition: 0.25s;
    opacity: 0;
    visibility: hidden;
  }
  .radial.active .triggerButton .faOpen {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
  }
  .radial.active .triggerButton .faClose {
    opacity: 1;
    visibility: visible;
    transform-origin: top left;
    transform: scale(1) translate(-50%, -50%);
  }
  .radial.active .radialItem {
    --angle: 0deg;
    --point-size: 60px;
    --countItem: 8;
    /* we subtract the point size to place point inside circle */
    --radius: calc((var(--width) / 2) - (var(--point-size) / 2));
    --x: calc(var(--radius) * cos(var(--angle)));
    --y: calc(var(--radius) * sin(var(--angle)));
    /* position point at center of circle with radius. We add x and y values to move to edge of circle. */
    top: calc(var(--radius) + var(--y) + (var(--point-size) / 2));
    left: calc(var(--radius) + var(--x) + (var(--point-size) / 2));
    width: var(--point-size);
    height: var(--point-size);
  }
  .radial.active .radialItem a {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15), 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  .radial.active .radialItem:nth-child(1) {
    --angle: 270deg;
  }
  .radial.active .radialItem:nth-child(2) {
    --angle: 200deg;
  }
  .radial.active .radialItem:nth-child(3) {
    --angle: 130deg;
  }
  .radial.active ~ .floating-cta {
    display: none !important;
  }
  
  


    /* Mobile Specific Styles */
    @media (max-width: 768px) {
        .navbar {
            background: #fff;
            padding: 0 0.5rem;
        }
        .navbar-brand{
            width: 68%;
        }
        .navbar-brand img{
            width: 38%;
        }

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

        .hero-content {
            padding: 1.5rem 0rem;
            max-width: 100%;
        }
        
        .hero-buttons {
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }
        
        .btn-hero-primary,
        .btn-hero-secondary {
            width: 100%;
            max-width: 280px;
            min-width: auto;
        }
        
        .stats-section {
            /* margin-top: -60px; */
            padding: 2rem 0.5rem;
        }

        .stats-section .col-lg-4 {
            padding: 0;
        }
        
        .stat-card {
            margin-bottom: 1.5rem;
            padding: 1.5rem 1rem;
        }
        .container{
            padding:0 !important;
        }
        .section {
            padding: 3rem 0.5rem;
        }
        
        .amenities-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        
        .btn-cta-primary,
        .btn-cta-secondary {
            width: 100%;
            max-width: 280px;
            min-width: auto;
        }

        .connectivity-item {
            flex-direction: column;
            text-align: center;
            padding: 1.5rem 1rem;
        }

        .connectivity-icon {
            margin-right: 0;
            margin-bottom: 1rem;
        }

        .gallery-slide {
            height: 200px;
        }

        .floor-plan-image {
            height: 200px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            display: none;
        }

        .location-map {
            height: 300px;
            margin-bottom: 2rem;
        }

        .navbar .container {
            padding-left: 0.5rem;
            padding-right: 0.5rem;
        }

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

        .navbar-nav .nav-link {
            padding: 0.5rem 1rem !important;
        }

        .location-map {
            height: 350px;
            margin-bottom: 2rem;
        }

        .connectivity-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        .connectivity-grid .connectivity-item {
            padding: 1rem;
            flex-direction: column;
            text-align: center;
        }
        
        .connectivity-grid .connectivity-icon {
            margin-right: 0;
            margin-bottom: 1rem;
        }

        .connectivity-tabs .nav-pills .nav-link {
            font-size: 0.7rem;
            padding: 0.4rem 0.8rem;
        }
        .iti__flag-container {
            width: 80px;
        }
        
        .iti input[type="tel"] {
            font-size: 16px; /* Prevents zoom on iOS */
        }
        
        .iti__country-list {
            max-height: 150px;
        }
        .radial {
            position: fixed;
            z-index: 20;
            bottom: 125px;
            right: 68px;
        }
        .triggerButton{
            /* background: linear-gradient(0deg, #08b251 0%, #08b251 100%) !important; */
        }
        .overview-cards .col-lg-4,
        #floor-plans .col-lg-4 ,
        #location .col-12 {
            padding: 0 
        }
    }

    @media (max-width: 576px) {
        
        .hero-price {
            font-size: 2rem;
        }
        
        .stat-number {
            font-size: 1.8rem;
        }
        
        .overview-card,
        .amenity-card,
        .floor-plan-card {
            padding: 1.5rem 1rem;
        }

        .gallery-slide {
            height: 180px;
        }

        .qr-codes .qr-code {
            width: 50px;
            height: 50px;
            font-size: 7px;
        }

        .connectivity-tabs .nav-pills .nav-link {
            font-size: 0.7rem;
            padding: 0.4rem 0.8rem;
        }

        .location-map {
            height: 300px;
        }
        
        .connectivity-grid {
            grid-template-columns: 1fr;
        }
        
        .connectivity-tabs .nav-pills {
            gap: 0.3rem;
        }
        .iti__flag-container {
            width: 70px;
            padding: 0 10px;
        }
        
        .iti__selected-flag {
            padding: 0 10px;
        }
    }

    /* Additional Grid Adjustments */
    @media (min-width: 992px) {
        
        .connectivity-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1200px) {
        .connectivity-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* Fix for overflow issues */
    .container,
    .container-fluid {
        /* max-width: 100%; */
        /* overflow-x: hidden; */
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col,
    [class*="col-"] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* Prevent text overflow */
    h1, h2, h3, h4, h5, h6, p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Fix navbar toggler */
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    label:has(input[type="checkbox"].is-invalid) {
        color: red !important;
    }
    .concent-agree{
        font-size: small;
    }


    .form-control.is-invalid, .was-validated .form-control:invalid {
        border-color: var(--bs-form-invalid-border-color) !important;
        padding-right: calc(1.5em + .75rem)  !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right calc(.375em + .1875rem) center;
        background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    }

/* ========================================================================
   Split Hero Section Styles - Eden Garden
   ======================================================================== */

/* Split Hero Section Layout */
.hero-section-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 94px;
}

/* Left Content Panel */
.hero-content-wrapper {
    padding: 2rem 3rem;
    background: #ffffff;
    box-shadow: 4px 0 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}

.hero-content-panel {
    max-width: 600px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00313c, #0e829c);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-title-split {
    font-size: clamp(2.4rem, 6vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.highlight-gold {
    background: linear-gradient(135deg, #00313c, #0a94b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-split {
    font-size: 1.3rem;
    color: #495057;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Features List */
.hero-features-list {
    margin: 1.2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #2c3e50;
}

.feature-item i {
    color: #00313c;
    font-size: 1.2rem;
}

/* Price Section */
.hero-price-split {
    background: linear-gradient(135deg, #00313c, #065e72);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.price-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
   
}

.price-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0.5rem 0;
    font-family: 'Inter';
}

.price-subtext {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* Buttons */
.hero-buttons-split {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary-split,
.btn-hero-secondary-split {
    flex: 1;
    min-width: 180px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero-primary-split {
    background: linear-gradient(135deg, #00313c, #28a7c3);
    color: #ffffff;
    box-shadow: 0 4px 15px rgb(91 132 78 / 9%);
}

.btn-hero-primary-split:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(91 132 78 / 9%);
    background: linear-gradient(135deg, #00313c, #28a7c3);
    color: #ffff;
}

.btn-hero-secondary-split {
    background: #ffffff;
    color: #00313c;
    border: 2px solid #00313c;
}

.btn-hero-secondary-split:hover {
    background: linear-gradient(135deg, #00313c, #0ea3c4);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(57 100 45 / 30%);
}

/* Right Image Carousel */
.hero-image-carousel {
    height: 100vh;
    position: relative;
}

.hero-slider-split {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider-split .swiper-slide {
    height: 100%;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

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

.image-overlay-label {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255,255,255,0.95);
    color: #1a1a1a;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

/* Swiper Navigation for Split Layout - Transparent Glassmorphism Style */
.swiper-button-next-split,
.swiper-button-prev-split {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.25);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.swiper-button-next-split {
    right: 20px;
}

.swiper-button-prev-split {
    left: 20px;
}

.swiper-button-next-split:after,
.swiper-button-prev-split:after {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.swiper-button-next-split:hover,
.swiper-button-prev-split:hover {
    background: rgba(212, 175, 55, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.8);
}

.swiper-button-next-split:hover:after,
.swiper-button-prev-split:hover:after {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
/* Floor Plan Modal Styling */
#floorPlanModal .modal-content {
    background: transparent !important;
}
#floorPlanModal .modal-body {
    /* background: rgba(0, 0, 0, 0.9); */
    border-radius: 8px;
    text-align: center;
}
#floorPlanModal .modal-close {
    z-index: 1050;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}
.modal-nav:hover {
    background: rgba(0,0,0,0.8);
}
.modal-prev {
    left: 20px;
}
.modal-next {
    right: 20px;
}
/* Swiper Pagination with Transparent Glassmorphism Style */
.swiper-pagination-split {
    bottom: 30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.swiper-pagination-split .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    margin: 0 6px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.swiper-pagination-split .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.swiper-pagination-split .swiper-pagination-bullet-active {
    background: rgba(212, 175, 55, 0.6);
    width: 40px;
    border-radius: 7px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Floor Plan Price */
.floor-plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00313c;
    margin-bottom: 1.5rem;
}

/* Responsive Design for Split Hero */
@media (max-width: 991px) {
    .hero-section-split {
        min-height: auto;
        padding-top: 80px;
    }

    .hero-content-wrapper {
        padding: 3rem 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .hero-image-carousel {
        height: 55vh;
        min-height: 400px;
    }

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

    .hero-subtitle-split {
        font-size: 1.15rem;
    }

    .hero-price-split {
        margin: 1.75rem 0;
    }
}

@media (max-width: 768px) {
    .hero-section-split {
        padding-top: 70px;
    }

    .hero-content-wrapper {
        padding: 2.5rem 1.5rem;
        box-shadow: none;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.45rem 1.2rem;
        margin-bottom: 1.2rem;
    }

    .hero-title-split {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle-split {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

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

    .btn-hero-primary-split,
    .btn-hero-secondary-split {
        width: 100%;
        min-width: auto;
        padding: 0.9rem 1.3rem;
        font-size: 0.95rem;
    }

    .hero-image-carousel {
        height: 50vh;
        min-height: 350px;
    }

    .image-overlay-label {
        top: 20px;
        left: 20px;
        font-size: 0.85rem;
        padding: 0.6rem 1.1rem;
    }

    .swiper-button-next-split,
    .swiper-button-prev-split {
        width: 45px;
        height: 45px;
    }

    .swiper-button-next-split {
        right: 15px;
    }

    .swiper-button-prev-split {
        left: 15px;
    }

    .swiper-button-next-split:after,
    .swiper-button-prev-split:after {
        font-size: 18px;
    }

    .swiper-button-next-split:hover,
    .swiper-button-prev-split:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .swiper-pagination-split {
        bottom: 20px !important;
    }

    .swiper-pagination-split .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 4px !important;
    }

    .swiper-pagination-split .swiper-pagination-bullet-active {
        width: 32px;
    }

    .hero-features-list {
        margin: 1.5rem 0;
    }

    .feature-item {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        gap: 0.7rem;
    }

    .feature-item i {
        font-size: 1.1rem;
    }

    .hero-price-split {
        padding: 1.2rem 1.5rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }

    .price-value {
        font-size: 2.5rem;
    }

    /* Stats section mobile improvements */
    .stats-section {
        padding: 2.5rem 1rem;
    }

    .stat-card {
        padding: 1.75rem 1.2rem;
    }

    /* Gallery improvements */
    .gallery-slide {
        height: 250px;
        border-radius: 20px;
    }

    .gallery-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section-split {
        padding-top: 96px;
    }

    .hero-content-wrapper {
        padding: 2rem 1.2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .hero-title-split {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle-split {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-features-list {
        margin: 1.2rem 0;
    }

    .feature-item {
        font-size: 0.88rem;
        margin-bottom: 0.7rem;
        gap: 0.6rem;
    }

    .feature-item i {
        font-size: 1rem;
    }

    .hero-price-split {
        padding: 1rem 1.2rem;
        margin: 1.2rem 0;
        border-radius: 10px;
    }

    .price-label {
        font-size: 0.85rem;
    }

    .price-value {
        font-size: 2rem;
    }

    .price-subtext {
        font-size: 0.88rem;
    }

    .btn-hero-primary-split,
    .btn-hero-secondary-split {
        padding: 0.85rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-image-carousel {
        height: 45vh;
        min-height: 300px;
    }

    .image-overlay-label {
        top: 15px;
        left: 15px;
        font-size: 0.75rem;
        padding: 0.5rem 0.9rem;
    }

    .swiper-pagination-split {
        bottom: 15px !important;
    }

    .swiper-button-next-split,
    .swiper-button-prev-split {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next-split {
        right: 10px;
    }

    .swiper-button-prev-split {
        left: 10px;
    }

    .swiper-button-next-split:after,
    .swiper-button-prev-split:after {
        font-size: 16px;
    }

    .swiper-button-next-split:hover,
    .swiper-button-prev-split:hover {
        transform: translateY(-50%);
    }

    .swiper-pagination-split .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 3px !important;
    }

    .swiper-pagination-split .swiper-pagination-bullet-active {
        width: 28px;
    }

    /* Small mobile improvements */
    .section {
        padding: 3rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .stats-section {
        padding: 2rem 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .gallery-slide {
        height: 220px;
        border-radius: 18px;
    }

    .gallery-title {
        font-size: 0.9rem;
    }

    .floor-plan-card {
        margin-bottom: 1.25rem;
    }

    .floor-plan-content {
        padding: 1.75rem 1.25rem;
    }

    .amenity-card {
        padding: 1.5rem 1.2rem;
    }
}

/* Additional UI Enhancements */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Improve touch targets on mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    a,
    button {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Image loading optimization */
img {
    image-rendering: -webkit-optimize-contrast;
}

/* Prevent text selection on double tap in mobile */
.btn, button, .swiper-button-next-split, .swiper-button-prev-split {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Improve card hover states on touch devices */
@media (hover: hover) and (pointer: fine) {
    .stat-card:hover,
    .overview-card:hover,
    .floor-plan-card:hover,
    .amenity-card:hover,
    .gallery-slide:hover {
        cursor: pointer;
    }
}

/* Better spacing for floor plan price */
.floor-plan-price {
    font-family: 'Playfair Display', serif;
}

/* Enhance modal backdrop */
.modal-backdrop.show {
    opacity: 0.75;
}

/* Improved form validation feedback */
.form-control.is-valid {
    border-color: #28a745;
    background-image: none;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

/* Better navigation active state */
.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Improved section spacing on very small screens */
@media (max-width: 480px) {
    .hero-title-split {
        font-size: 1.6rem;
    }

    .hero-subtitle-split {
        font-size: 0.95rem;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .hero-content-wrapper {
        padding: 1.75rem 1rem;
    }

    .section {
        padding: 2.5rem 0.75rem;
    }

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

    .gallery-slide {
        height: 200px;
    }

    .btn-hero-primary-split,
    .btn-hero-secondary-split {
        font-size: 0.88rem;
        padding: 0.8rem 1.1rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .floating-cta,
    .radial,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination,
    .modal {
        display: none !important;
    }

    .hero-section-split,
    .section {
        page-break-inside: avoid;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* RERA Information Card - Banner Overlay */
.rera-info-card-banner {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    border: 2px solid #fff;
    border-radius: 16px;
    padding: 0.8rem 1rem;
    box-shadow: 0 15px 50px rgba(0, 49, 60, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    max-width: 320px;
}

.rera-info-card-banner:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 49, 60, 0.4);
}

.rera-content-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.rera-text-banner {
    flex: 1;
}

.rera-label-banner {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.rera-label-banner i {
    color: #00313c;
    font-size: 0.9rem;
}

.rera-number-banner {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.3rem;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.rera-website-banner {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 600;
}

.rera-qr-banner {
    text-align: center;
    padding: 0.4rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.qr-code-img-banner {
    width: 75px;
    height: 75px;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    padding: 4px;
    background: white;
}

/* Responsive RERA Card - Banner */
@media (max-width: 1200px) {
    .rera-info-card-banner {
        bottom: 20px;
        right: 20px;
        padding: 1rem 1.2rem;
        /* max-width: 280px; */
    }

    .rera-number-banner {
        font-size: 1rem;
    }

    .qr-code-img-banner {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 991px) {
    .rera-info-card-banner {
        bottom: 15px;
        right: 15px;
        padding: 0.9rem 1rem;
        /* max-width: 260px; */
    }

    .rera-label-banner {
        font-size: 0.7rem;
    }

    .rera-number-banner {
        font-size: 0.65rem;
    }

    .rera-website-banner {
        font-size: 0.65rem;
    }

    .qr-code-img-banner {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .rera-info-card-banner {
        bottom: 10px;
        right: 10px;
        padding: 0.8rem;
        backdrop-filter: unset;
        /* max-width: 240px; */
    }

    .rera-content-banner {
        gap: 0.8rem;
    }

    .rera-label-banner {
        font-size: 0.65rem;
        margin-bottom: 0.4rem;
    }

    .rera-number-banner {
        font-size: 0.85rem;
    }

    .rera-website-banner {
        font-size: 0.6rem;
    }

    .qr-code-img-banner {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 576px) {
    .rera-info-card-banner {
        /* position: relative;
        top: 0;
        left: 0;
        margin: 0.8rem;
        padding: 0.8rem;
        max-width: calc(100% - 1.6rem); */
    }

    .rera-content-banner {
        gap: 0.8rem;
    }

    .rera-label-banner {
        font-size: 0.65rem;
    }

    .rera-number-banner {
        font-size: 0.8rem;
    }

    .qr-code-img-banner {
        width: 50px;
        height: 50px;
    }
}

/* ========================================================================
   PROFESSIONAL & MODERN ATTENTION-GRABBING ANIMATIONS
   ======================================================================== */

/* Elegant Pulse with Glow for Price Section */
@keyframes professional-pulse-glow {
    0%, 100% {
        transform: scale(1) translateY(0);
        box-shadow:
            0 10px 30px rgba(0, 49, 60, 0.2),
            0 0 0 0 rgba(40, 167, 195, 0);
    }
    50% {
        transform: scale(1.03) translateY(-2px);
        box-shadow:
            0 20px 50px rgba(0, 49, 60, 0.35),
            0 0 30px 8px rgba(40, 167, 195, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* Smooth Elevation Pulse for Buttons - No Shadow Animation */
@keyframes smooth-elevation-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.02);
    }
}

/* Professional Glow Pulse - No Shadow Animation */
@keyframes professional-glow {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Elegant Shimmer Effect */
@keyframes elegant-shimmer {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Smooth Gradient Flow */
@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Smooth Lift Animation - No Shadow Animation */
@keyframes smooth-lift {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Modern Border Glow - No Shadow Animation */
@keyframes modern-border-glow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Soft Scale Pulse */
@keyframes soft-scale-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Apply Professional Pulse to Price Section */
.hero-price-split {
    animation: professional-pulse-glow 2.5s ease-in-out infinite;
    position: relative;
    overflow: visible;
}

/* Add elegant animated border around price */
.hero-price-split::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #00313c, #28a7c3, #00a7d4, #28a7c3, #00313c);
    background-size: 300% 300%;
    border-radius: 16px;
    z-index: -1;
    animation: gradient-flow 4s ease infinite;
    opacity: 0.5;
}

/* Primary Button - Professional Elevation + Glow + Shimmer */
.btn-hero-primary-split {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #00313c, #1b7a91, #28a7c3, #1b7a91, #00313c);
    background-size: 300% 300%;
    animation:
        smooth-elevation-pulse 2.5s ease-in-out infinite,
        gradient-flow 4s ease infinite;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 49, 60, 0.2);
    animation: navCtaColorBlink 2s ease-in-out infinite, navCtaPulse 2s ease-in-out infinite;
}

/* Elegant shimmer effect */
.btn-hero-primary-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 12%), rgb(255 255 255 / 24%), rgb(255 255 255 / 8%), transparent);
    transform: skewX(-25deg);
    animation: elegant-shimmer 3s ease-in-out infinite;
    z-index: 2;
}

/* Keep icon and text visible */
.btn-hero-primary-split i,
.btn-hero-primary-split span {
    position: relative;
    z-index: 3;
}

/* Secondary Button - Smooth Lift with Modern Border Glow */
.btn-hero-secondary-split {
    position: relative;
    animation: smooth-lift 2.5s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #00313c;
    box-shadow: 0 4px 15px rgba(0, 49, 60, 0.15);
    
}

.btn-hero-secondary-split::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(135deg, transparent, rgba(40, 167, 195, 0.1), transparent);
    animation: soft-scale-pulse 2.5s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

.btn-hero-secondary-split::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    animation: modern-border-glow 2.5s ease-in-out infinite;
    pointer-events: none;
}

/* Floor Plan Buttons - Professional Glow + Elegant Shimmer */
.btn-floor-plan {
    position: relative;
    overflow: hidden;
    animation: professional-glow 2.8s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 49, 60, 0.2);
}

.btn-floor-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    animation: elegant-shimmer 2s ease-in-out infinite;
    z-index: 2;
}


.btn-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    animation: elegant-shimmer 3.5s ease-in-out infinite;
    z-index: 2;
}

.btn-floor-plan i,
.btn-floor-plan span {
    position: relative;
    z-index: 3;
}

/* Modern Hover Effects - Smooth and Professional */
.hero-price-split:hover {
    animation-play-state: paused;
    transform: scale(1.05) translateY(-3px);
    box-shadow:
        0 25px 60px rgba(0, 49, 60, 0.45),
        0 0 40px rgba(40, 167, 195, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-hero-primary-split:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow:
        0 15px 40px rgba(0, 49, 60, 0.5),
        0 8px 25px rgba(40, 167, 195, 0.4),
        0 0 35px rgba(40, 167, 195, 0.3);
}

.btn-hero-secondary-split:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.03) !important;
    background: linear-gradient(135deg, rgba(0, 49, 60, 0.05), rgba(40, 167, 195, 0.08));
    box-shadow:
        0 12px 30px rgba(0, 49, 60, 0.35),
        0 0 25px rgba(40, 167, 195, 0.3);
}

.btn-floor-plan:hover {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow:
        0 12px 35px rgba(0, 49, 60, 0.5),
        0 0 30px rgba(40, 167, 195, 0.4);
}

/* Mobile Optimizations - Maintain Performance */
@media (max-width: 768px) {
    .hero-price-split {
        animation-duration: 3s;
    }

    .btn-hero-primary-split {
        animation-duration: 3s;
    }

    .btn-hero-secondary-split {
        animation-duration: 3s;
    }

    .btn-floor-plan {
        animation-duration: 3.5s;
    }

    /* Reduce intensity on mobile for performance - No Shadow Animation */
    @keyframes professional-pulse-glow {
        0%, 100% {
            transform: scale(1) translateY(0);
        }
        50% {
            transform: scale(1.02) translateY(-2px);
        }
    }

    @keyframes smooth-elevation-pulse {
        0%, 100% {
            transform: translateY(0) scale(1);
        }
        50% {
            transform: translateY(-2px) scale(1.015);
        }
    }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-price-split,
    .btn-hero-primary-split,
    .btn-hero-secondary-split,
    .btn-floor-plan {
        animation-duration: 2.8s;
    }
}

/* Accessibility - Disable for Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-price-split,
    .hero-price-split::before,
    .btn-hero-primary-split,
    .btn-hero-primary-split::before,
    .btn-hero-secondary-split,
    .btn-hero-secondary-split::before,
    .btn-hero-secondary-split::after,
    .btn-floor-plan,
    .btn-floor-plan::before {
        animation: none !important;
    }

    /* Maintain subtle hover effects for accessibility */
    .btn-hero-primary-split:hover,
    .btn-hero-secondary-split:hover,
    .btn-floor-plan:hover {
        transform: translateY(-2px) !important;
    }
}


 /* Base Button Styles */


/* Solid Background Button (Dark) */
.btn-solid {
    background: #0a4a5c;
    color: white;
    box-shadow: 0 8px 25px rgba(10, 74, 92, 0.4);
}

.btn-solid:hover {
    background: #0d5a70;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(10, 74, 92, 0.5);
}

/* Outline Button (White background with border) */
.btn-outline {
    background: white;
    color: #0a4a5c;
    border: 2px solid #0a4a5c;
    box-shadow: 0 4px 15px rgba(10, 74, 92, 0.15);
}

.btn-outline:hover {
    background: #f8fafc;
    border-color: #0d5a70;
    color: #0d5a70;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 74, 92, 0.25);
}

/* ANIMATION 1: Rapid Shake + Lightning (Solid) */
.shake-lightning {
    animation: rapidShake 3s infinite;
}

.shake-lightning::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.9),
        transparent
    );
    animation: lightningMove 1.5s infinite;
}

@keyframes rapidShake {
    0%, 50%, 100% { transform: translate(0, 0); }
    90% { transform: translate(-3px, -2px); }
    91% { transform: translate(3px, 2px); }
    92% { transform: translate(-2px, -1px); }
    93% { transform: translate(2px, 1px); }
    94% { transform: translate(-1px, -1px); }
    95% { transform: translate(1px, 1px); }
}

@keyframes lightningMove {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

.shake-lightning:hover {
    animation: none;
    transform: scale(1.09);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 15px 50px rgba(10, 74, 92, 0.6);
}

/* ANIMATION 2: Rapid Shake + Lightning (Outline) */
.shake-lightning-outline {
    animation: rapidShakeOutline 3s infinite;
}

.shake-lightning-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(10, 74, 92, 0.3),
        transparent
    );
    animation: lightningMoveOutline 1.5s infinite;
}

@keyframes rapidShakeOutline {
    0%, 50%, 100% { transform: translate(0, 0); }
    90% { transform: translate(-3px, -2px); }
    91% { transform: translate(3px, 2px); }
    92% { transform: translate(-2px, -1px); }
    93% { transform: translate(2px, 1px); }
    94% { transform: translate(-1px, -1px); }
    95% { transform: translate(1px, 1px); }
}

@keyframes lightningMoveOutline {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

.shake-lightning-outline:hover {
    animation: none;
    transform: scale(1.09);
    box-shadow: 0 0 30px rgba(10, 74, 92, 0.4), 0 10px 40px rgba(10, 74, 92, 0.3);
}

/* ANIMATION 3: Vibrate + Glow (Solid) */
.vibrate-glow {
    animation: vibrateGlow 3s infinite;
}

.vibrate-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    filter: blur(10px);
    animation: glowMove 2.5s infinite;
}

@keyframes vibrateGlow {
    0%, 100% { 
        transform: translate(0, 0);
        /* box-shadow: 0 8px 25px rgba(10, 74, 92, 0.4); */
    }
    50% { 
        /* box-shadow: 0 8px 35px rgba(0, 212, 255, 0.6); */
    }
    92%, 96% { transform: translate(-2px, 0); }
    94%, 98% { transform: translate(2px, 0); }
}

@keyframes glowMove {
    0% { left: -100%; }
    100% { left: 200%; }
}

.vibrate-glow:hover {
    animation: none;
    transform: scale(1.08);
    box-shadow: 0 12px 50px rgba(0, 212, 255, 0.7);
}

/* ANIMATION 4: Vibrate + Glow (Outline) */
.vibrate-glow-outline {
    animation: vibrateGlowOutline 3s infinite;
}

.vibrate-glow-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(10, 74, 92, 0.3),
        transparent
    );
    filter: blur(10px);
    animation: glowMoveOutline 2.5s infinite;
}

@keyframes vibrateGlowOutline {
    0%, 100% { 
        transform: translate(0, 0);
        box-shadow: 0 4px 15px rgba(10, 74, 92, 0.15);
    }
    50% { 
        box-shadow: 0 4px 25px rgba(10, 74, 92, 0.35);
    }
    92%, 96% { transform: translate(-2px, 0); }
    94%, 98% { transform: translate(2px, 0); }
}

@keyframes glowMoveOutline {
    0% { left: -100%; }
    100% { left: 200%; }
}

.vibrate-glow-outline:hover {
    animation: none;
    transform: scale(1.08);
    box-shadow: 0 8px 35px rgba(10, 74, 92, 0.4);
}

/* ANIMATION 5: Shake + Shimmer (Solid) */
.shake-shimmer {
    animation: shakeShimmer 3s infinite;
}

.shake-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmerMove 2s infinite;
}

@keyframes shakeShimmer {
    0%, 50%, 100% { transform: translateX(0); }
    55%, 65% { transform: translateX(-3px); }
    60%, 70% { transform: translateX(3px); }
}

@keyframes shimmerMove {
    0% { left: -100%; }
    100% { left: 200%; }
}

.shake-shimmer:hover {
    animation: none;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 45px rgba(10, 74, 92, 0.5);
}

/* ANIMATION 6: Shake + Shimmer (Outline) */
.shake-shimmer-outline {
    animation: shakeShimmerOutline 3s infinite;
}

.shake-shimmer-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(10, 74, 92, 0.2),
        rgba(10, 74, 92, 0.4),
        rgba(10, 74, 92, 0.2),
        transparent
    );
    animation: shimmerMoveOutline 2s infinite;
}

@keyframes shakeShimmerOutline {
    0%, 50%, 100% { transform: translateX(0); }
    55%, 65% { transform: translateX(-3px); }
    60%, 70% { transform: translateX(3px); }
}

@keyframes shimmerMoveOutline {
    0% { left: -100%; }
    100% { left: 200%; }
}

.shake-shimmer-outline:hover {
    animation: none;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(10, 74, 92, 0.35);
}

/* ANIMATION 7: Pulse + Glow (Solid) */
.pulse-glow {
    animation: pulseGlow 2.5s infinite;
}

.pulse-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: pulseShimmer 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(10, 74, 92, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(0, 212, 255, 0.6);
    }
}

@keyframes pulseShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.pulse-glow:hover {
    animation: none;
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.7);
}

/* ANIMATION 8: Pulse + Glow (Outline) */
.pulse-glow-outline {
    animation: pulseGlowOutline 2.5s infinite;
}

.pulse-glow-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(10, 74, 92, 0.3),
        transparent
    );
    animation: pulseShimmerOutline 2s infinite;
}

@keyframes pulseGlowOutline {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(10, 74, 92, 0.15);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(10, 74, 92, 0.35);
    }
}

@keyframes pulseShimmerOutline {
    0% { left: -100%; }
    100% { left: 200%; }
}

.pulse-glow-outline:hover {
    animation: none;
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(10, 74, 92, 0.4);
}



/* Optional: Remove icon */
.no-icon::before {
    content: none;
}

/* ===================================
   Enhanced Enquire Now Button & Limited Slots Modal Styles
   =================================== */

/* Enhanced Enquire Now Button - Color Blinking Animation */
.btn-nav-cta {
    position: relative;
    overflow: hidden;
    animation: navCtaColorBlink 2s ease-in-out infinite, navCtaPulse 2s ease-in-out infinite;
}

/* Complete Color Blink - Teal to Gold */
@keyframes navCtaColorBlink {
    0%, 100% {
        background: linear-gradient(135deg, #00313c 0%, #05728b 100%);
    }
    50% {
        background: linear-gradient(135deg, #a98a48 0%, #dcbe7e 100%);
    }
}

/* Pulse Scale Animation */
@keyframes navCtaPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Shimmer Effect */
.btn-nav-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: navCtaShimmer 2.5s linear infinite;
}

@keyframes navCtaShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Glow Ring Effect */
.btn-nav-cta::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: #a98a48;
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    animation: navCtaGlowRing 2s ease-in-out infinite;
}

@keyframes navCtaGlowRing {
    0%, 100% {
        opacity: 0;
        filter: blur(8px);
    }
    50% {
        opacity: 0.8;
        filter: blur(12px);
    }
}

/* Hover State - Stop All Animations */
.btn-nav-cta:hover {
    transform: translateY(-3px) scale(1.08) !important;
    background: linear-gradient(135deg, #c9a961 0%, #e8d09a 100%) !important;
    box-shadow: 0 10px 40px rgba(169, 138, 72, 0.6), 0 0 30px rgba(220, 190, 126, 0.5) !important;
    animation: none !important;
}

.btn-nav-cta:hover::before,
.btn-nav-cta:hover::after {
    animation: none;
    opacity: 0;
}

/* Icon Animation */
.btn-nav-cta i {
    display: inline-block;
    animation: navCtaIconBounce 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes navCtaIconBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-3px) rotate(-10deg) scale(1.1);
    }
    75% {
        transform: translateY(-3px) rotate(10deg) scale(1.1);
    }
}

/* Text needs z-index */
.btn-nav-cta {
    z-index: 1;
}

.btn-nav-cta * {
    position: relative;
    z-index: 2;
}

/* Limited Slots Modal - Side by Side Design */
.slots-modal-modern {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 49, 60, 0.35);
    background: #fff;
}

.slots-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9999;
    background: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    opacity: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slots-close-btn::after {
    content: '\00d7';
    font-size: 28px;
    font-weight: 300;
    color: #333;
    line-height: 1;
}

.slots-close-btn:hover {
    background: #f0f0f0;
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Left Image Section */
.slots-image-section {
    position: relative;
    min-height: 550px;
    overflow: hidden;
}

.slots-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slots-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(108, 150, 160, 0) 0%, rgb(0 49 60 / 65%) 100%);
}

/* Text Overlay on Image */
.slots-image-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 30px;
    color: white;
    z-index: 10;
}

.slots-overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slots-overlay-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slots-overlay-location {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slots-overlay-location i {
    font-size: 0.9rem;
}

.slots-overlay-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.slots-overlay-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slots-overlay-feature-item i {
    font-size: 0.9rem;
}

/* Right Content Area */
.slots-content-area {
    padding: 45px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slots-header-section {
    margin-bottom: 30px;
}

.slots-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.12);
    color: #00c853;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 200, 83, 0.25);
}

.slots-pulse-dot {
    width: 8px;
    height: 8px;
    background: #00c853;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.slots-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.slots-highlight {
    background: linear-gradient(135deg, #00313c 0%, #05728b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.slots-subtitle-text {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Benefits List */
.slots-benefits-list {
    margin-bottom: 25px;
}

.slots-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: white;
    border-radius: 14px;
    margin-bottom: 12px;
    border: 2px solid #e8eaed;
    transition: all 0.3s ease;
}

.slots-benefit-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 49, 60, 0.12);
}

.slots-benefit-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, #00313c 0%, #05728b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.slots-benefit-text {
    flex: 1;
}

.slots-benefit-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

.slots-benefit-text small {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Urgency Banner */
.slots-urgency-banner {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-left: 4px solid #ffa726;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e65100;
    font-weight: 600;
    font-size: 0.9rem;
    animation: urgencyGlow 2s infinite;
}

@keyframes urgencyGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 167, 38, 0.25);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 167, 38, 0.4);
    }
}

.slots-urgency-banner i {
    font-size: 1.1rem;
    animation: tickClock 1.5s infinite;
}

@keyframes tickClock {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

/* CTA Buttons Container */
.slots-cta-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

/* Base Button Style */
.slots-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 14px;
    border-radius: 18px;
    border: 2px solid transparent;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.slots-action-btn i {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.slots-action-btn span {
    position: relative;
    z-index: 2;
}

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

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

.slots-action-btn:hover {
    transform: translateY(-6px) scale(1.02);
}

.slots-action-btn:hover i {
    transform: scale(1.15);
}

/* Call Button - Theme Teal with Gold Accent */
.slots-btn-call {
    background: linear-gradient(135deg, #00313c 0%, #004b5c 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 49, 60, 0.25);
}

.slots-btn-call i {
    color: #ffd700;
}

.slots-btn-call:hover {
    background: linear-gradient(135deg, #004b5c 0%, #065b6e 100%);
    box-shadow: 0 12px 35px rgba(0, 49, 60, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
    color: white;
}

/* Enquire Button - Gold Gradient (Featured) */
.slots-btn-enquire {
    background: linear-gradient(135deg, #a98a48 0%, #c9a961 50%, #dcbe7e 100%);
    color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(169, 138, 72, 0.35);
    border: 2px solid rgba(220, 190, 126, 0.5);
}

.slots-btn-enquire:hover {
    background: linear-gradient(135deg, #c9a961 0%, #dcbe7e 50%, #e8d09a 100%);
    box-shadow: 0 12px 35px rgba(169, 138, 72, 0.5);
    border-color: rgba(220, 190, 126, 0.8);
    color: #1a1a1a;
}

.slots-btn-enquire i {
    color: #1a1a1a;
}

/* WhatsApp Button - Theme Teal with WhatsApp Accent */
.slots-btn-whatsapp {
    background: linear-gradient(135deg, #00313c 0%, #004b5c 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 49, 60, 0.25);
}

.slots-btn-whatsapp i {
    color: #25D366;
}

.slots-btn-whatsapp:hover {
    background: linear-gradient(135deg, #004b5c 0%, #065b6e 100%);
    box-shadow: 0 12px 35px rgba(0, 49, 60, 0.4);
    border-color: rgba(37, 211, 102, 0.3);
    color: white;
}

.slots-disclaimer-text {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 15px;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    /* Image hidden on mobile, content takes full width */
    .slots-content-area {
        padding: 40px 35px;
    }
    .slots-main-title {
        font-size: 2.2rem;
    }
    .slots-benefit-item {
        padding: 16px;
    }
    .slots-benefit-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
}

@media (max-width: 576px) {
    .slots-modal-modern {
        border-radius: 20px;
    }
    .slots-content-area {
        padding: 30px 25px;
    }
    .slots-main-title {
        font-size: 1.85rem;
    }
    .slots-subtitle-text {
        font-size: 0.95rem;
    }
    .slots-benefit-item {
        padding: 14px;
        gap: 12px;
    }
    .slots-benefit-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.1rem;
    }
    .slots-benefit-text strong {
        font-size: 0.95rem;
    }
    .slots-benefit-text small {
        font-size: 0.8rem;
    }
    .slots-urgency-banner {
        font-size: 0.85rem;
        padding: 12px 15px;
    }
    .slots-cta-buttons {
        gap: 10px;
    }
    .slots-action-btn {
        padding: 16px 8px;
        font-size: 0.8rem;
        gap: 8px;
    }
    .slots-action-btn i {
        font-size: 1.5rem;
    }
    .slots-action-btn:hover {
        transform: translateY(-4px) scale(1.01);
    }
}
/* screen from 992 to 1200 */
@media (min-width: 992px) and (max-width: 1200px) {
    img.nav-logo {
        width: 31%;
    }
}


/* Smooth Color Blink Animations */
@keyframes tealBlink {
    0%, 100% {
        background: linear-gradient(135deg, #00313c 0%, #004b5c 100%);
        box-shadow: 0 6px 20px rgba(0, 49, 60, 0.25);
    }
    50% {
        background: linear-gradient(135deg, #004b5c 0%, #007a8e 100%);
        box-shadow: 0 8px 30px rgba(0, 122, 142, 0.5);
    }
}

@keyframes goldBlink {
    0%, 100% {
        background: linear-gradient(135deg, #a98a48 0%, #c9a961 50%, #dcbe7e 100%);
        box-shadow: 0 6px 20px rgba(169, 138, 72, 0.35);
        border-color: rgba(220, 190, 126, 0.5);
    }
    50% {
        background: linear-gradient(135deg, #dcbe7e 0%, #e8d09a 50%, #f4e4b8 100%);
        box-shadow: 0 10px 35px rgba(220, 190, 126, 0.7);
        border-color: rgba(255, 215, 0, 0.8);
    }
}

@keyframes iconColorBlink {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 0px transparent);
    }
    50% {
        filter: brightness(1.4) drop-shadow(0 0 8px currentColor);
    }
}

/* Apply blink animations to buttons - ALL AT SAME TIME */
.slots-btn-call {
    animation: tealBlink 2s ease-in-out infinite;
}

.slots-btn-call i {
    animation: iconColorBlink 2s ease-in-out infinite;
}

.slots-btn-enquire {
    animation: goldBlink 2s ease-in-out infinite;
}

.slots-btn-enquire i {
    animation: iconColorBlink 2s ease-in-out infinite;
}

.slots-btn-whatsapp {
    animation: tealBlink 2s ease-in-out infinite;
}

.slots-btn-whatsapp i {
    animation: iconColorBlink 2s ease-in-out infinite;
}

/* Pause animation on hover */
.slots-action-btn:hover {
    animation-play-state: paused;
}

.slots-action-btn:hover i {
    animation-play-state: paused;
}