/* style.css - 2 Column Layout with Fixed Sidebar - ADVAIT | A NEW BEGINNING */

:root {
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #F5F3FF;
    --text-dark: #0f172a;
    --text-light: #475569;
    --border: #e2e8f0;
    --whatsapp-green: #25D366;
    --bg-light: #F8FAFC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #ffffff;
    color: #1e2a3a;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-column-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* COLUMN 1: Complete Website Content */
.column-website {
    flex: 1;
    width: calc(100% - 320px);
    max-width: calc(100% - 320px);
    overflow-x: visible;
    overflow-y: visible;
    height: 100%;
    position: relative;
    z-index: 1;
    background: #ffffff;
}

/* COLUMN 2: Fixed Sidebar (Desktop Only) */
.column-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
    z-index: 100;
    padding: 1.5rem;
    border-left: 1px solid var(--border);
}

.sidebar-inner {
    width: 100%;
}

/* Custom scrollbar for sidebar */
.column-sidebar::-webkit-scrollbar {
    width: 4px;
}

.column-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.column-sidebar::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* ===== HEADER / NAVBAR ===== */
.main-navbar {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 0.6rem 1.5rem;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

/* Header scroll effect */
.main-navbar.sticky-scroll {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: #5a6e7c;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0.2rem;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.navbar-nav .nav-link i {
    font-size: 1.1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

/* ===== BANNER SECTION ===== */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #fefaf5 0, #fff 50%, #f8f4ff 100%);
    min-height: 550px;
}

/* Glide Slider Container */
.glide {
    position: relative;
    width: 100%;
}

.glide__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    min-height: 550px;
}

/* Info Box Overlay */
.info-box {
    position: absolute;
    bottom: 8%;
    left: 10%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    max-width: 400px;
    width: 85%;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.15);
    z-index: 20;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-3px);
}

.status {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.info-box h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e1e2f;
    margin-bottom: 0.15rem;
}

.info-box h2 {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 0.3rem;
}

.card-d {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    justify-content: space-between;
    font-size: 0.7rem;
    text-align: center;
    padding: 0.8rem !important;
    gap: 0.5rem !important;
}

.card-d div i {
    color: var(--primary);
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

.card-d div strong {
    font-size: 0.75rem;
}

.offers {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-left: 0;
    margin-top: 0.8rem !important;
}

.offers li {
    background: #f1f5f9;
    padding: 0.25rem 0.7rem;
    border-radius: 25px;
    font-size: 0.65rem;
    font-weight: 500;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.offers li i {
    color: var(--primary);
    font-size: 0.75rem;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.3rem 0;
}

.mb-ext-box h4 {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ===== BUTTONS ===== */
.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 40px;
    color: white;
    letter-spacing: 0.3px;
    font-size: 0.85rem;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(139, 92, 246, 0.3);
    color: white;
}

.btn-wp-icon {
    background: #25D366;
    color: white;
    border-radius: 50px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: 0.2s;
    text-decoration: none;
}

.btn-wp-icon:hover {
    background: #128C7E;
    transform: scale(1.05);
    color: white;
}

/* ===== SIDEBAR STYLES ===== */
.og-links a {
    text-decoration: none;
    font-size: 0.7rem;
    background: #f8fafc;
    border-radius: 20px;
    color: #1e293b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
    padding: 8px 12px;
    flex: 1;
    justify-content: center;
}

.og-links a:hover {
    background: var(--primary);
    color: white;
}

/* Form Styles */
.enq-form .form-control {
    border-radius: 25px;
    padding: 10px 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
    width: 100%;
    font-size: 0.85rem;
}

.enq-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    outline: none;
}

/* Textarea Styles */
.enq-form textarea {
    border-radius: 20px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.85rem;
    font-family: inherit;
    resize: vertical;
    background: #ffffff;
    line-height: 1.5;
}

.enq-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    outline: none;
}

.enq-form textarea::placeholder {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 400;
}

.consent .form-check-label {
    font-size: 0.65rem;
    color: #475569;
    cursor: pointer;
}

.consent .form-check-label a {
    color: var(--primary);
    text-decoration: none;
}

.consent .form-check-label a:hover {
    text-decoration: underline;
}

.section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.8rem;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.section-heading i {
    color: var(--primary);
    margin-right: 6px;
}

.trust-badge {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 600;
    padding-top: 8px;
    border-top: 1px solid #eef2ff;
}

/* ===== POPUP MODAL ===== */
.enqPopup .modal-content {
    border-radius: 28px;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.enq-popup-cp-highlights {
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.enq-popup-cp-highlights li {
    font-size: 0.75rem;
    background: white;
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    list-style: none;
    flex: 1;
    text-align: center;
}

.enq-popup-pj-highlights {
    background: linear-gradient(135deg, #fef9f5, #fff5f0);
    padding: 12px;
    border-radius: 24px;
}

/* ========================================================================
   9. RESPONSIVE (Mobile/Tablet) - Sidebar becomes normal section
   ======================================================================== */
@media (max-width: 1200px) {
    .two-column-layout {
        display: block;
    }
    
    .column-website {
        width: 100%;
        max-width: 100%;
    }
    
    .column-sidebar {
        position: relative !important;
        width: 100%;
        height: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border-left: none;
        border-top: 1px solid #eef2ff;
        border-radius: 24px;
        margin: 20px auto;
        padding: 1.5rem;
        right: auto;
        top: auto;
        z-index: 10;
        background: #ffffff;
    }
    
    .info-box {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 20px !important;
        width: calc(100% - 40px) !important;
        max-width: none !important;
        transform: none;
        padding: 1.8rem;
        border-radius: 24px;
        box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.25);
    }
    
    .banner {
        margin-bottom: 0;
        min-height: auto;
        z-index: 1;
    }
    
    .glide__slide img {
        min-height: 400px;
    }
    
    .info-box h1 {
        font-size: 1.6rem;
    }
    
    .info-box h2 {
        font-size: 1rem;
    }
    
    .price-tag {
        font-size: 1.6rem;
    }
    
    .card-d {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10rem !important;
    }
    
    .offers {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-navbar {
        padding: 0.5rem 1rem;
        padding-right: 1rem;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.55rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.4rem 0;
        font-size: 0.85rem;
    }
    
    .column-sidebar {
        margin: 15px auto;
        padding: 1.2rem;
        width: calc(100% - 30px);
        border-radius: 20px;
        z-index: 10;
    }
    
    .info-box {
        margin: 15px !important;
        width: calc(100% - 30px) !important;
        max-width: none !important;
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .status {
        font-size: 0.7rem;
        padding: 0.25rem 1rem;
    }
    
    .info-box h1 {
        font-size: 1.5rem;
    }
    
    .info-box h2 {
        font-size: 0.9rem;
    }
    
    .card-d {
        gap: 10rem !important;
    }
    
    .price-tag {
        font-size: 1.5rem;
    }
}

@media (max-width: 645px) {
    .card-d {
        gap: 5rem !important;
    }
}

@media (max-width: 480px) {
    .column-sidebar {
        margin: 12px auto;
        padding: 1rem;
        width: calc(100% - 20px);
        border-radius: 18px;
        z-index: 10;
    }
    
    .info-box {
        margin: 10px !important;
        width: calc(100% - 20px) !important;
        max-width: none !important;
        padding: 1.2rem;
        border-radius: 18px;
    }
    
    .status {
        font-size: 0.65rem;
    }
    
    .info-box h1 {
        font-size: 1.3rem;
    }
    
    .info-box h2 {
        font-size: 0.8rem;
    }
    
    .price-tag {
        font-size: 1.3rem;
    }
    
    .btn-cta {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .card-d {
        gap: 4rem !important;
    }
}

@media (max-width: 435px) {
    .card-d {
        gap: 2rem !important;
    }
}

@media (max-width: 400px) {
    .card-d {
        gap: 1rem !important;
    }
}

/* Fix for banner not hiding behind header */
.column-website {
    isolation: isolate;
}

.banner {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-box, .column-sidebar {
    animation: fadeInUp 0.5s ease-out;
}

/* ========================================================================
   10. PRICING SECTION - COMPLETE
   ======================================================================== */

.pricing-section {
    padding: 60px 30px;
    background: linear-gradient(135deg, #F8FAFC 0%, #ffffff 100%);
    width: 100%;
}

.section-container {
    max-width: 100%;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 10px;
}

.section-title i {
    color: var(--primary);
    margin-right: 8px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #000000;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.price-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 18px;
    width: calc(33.33% - 14px);
    min-width: 250px;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.08);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.1);
}

.price-card.grand {
    border: 2px solid #c9a03d;
    background: linear-gradient(135deg, #fffdf8, #ffffff);
}

.price-card-badge {
    position: absolute;
    top: 12px;
    right: 15px;
    background: var(--primary);
    color: #000000;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 25px;
    letter-spacing: 0.5px;
}

.price-card-badge.gold {
    background: linear-gradient(135deg, #c9a03d, #b8860b);
}

.price-card-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.price-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 5px;
}

.area {
    font-size: 0.75rem;
    color: #000000;
    margin-bottom: 8px;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0 2px;
}

.price-note {
    font-size: 0.7rem;
    color: #000000;
    margin-bottom: 12px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    flex: 1;
}

.price-features li {
    padding: 6px 0;
    font-size: 0.75rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px dashed #e2e8f0;
}

.price-features li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.btn-price-enquiry {
    width: 100%;
    background: var(--primary);
    color: #000000;
    border: none;
    padding: 10px 12px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 15px;
}

.btn-price-enquiry:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.payment-scheme {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 6px 14px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.7rem;
    margin: 12px 0;
}

/* Pricing Responsive */
@media (min-width: 992px) and (max-width: 1199px) {
    .pricing-section {
        padding: 50px 20px;
    }
    .pricing-cards {
        justify-content: space-between;
        gap: 15px;
    }
    .price-card {
        width: calc(33.33% - 15px);
        min-width: 250px;
    }
    .price-card h3 {
        font-size: 1.1rem;
    }
    .price {
        font-size: 1.3rem;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .pricing-section {
        padding: 50px 20px;
    }
    .pricing-cards {
        justify-content: center;
        gap: 20px;
    }
    .price-card {
        width: calc(50% - 20px);
        min-width: 250px;
    }
}

@media (min-width: 600px) and (max-width: 768px) {
    .pricing-section {
        padding: 40px 20px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .pricing-cards {
        justify-content: center;
        gap: 15px;
    }
    .price-card {
        width: calc(50% - 15px);
        min-width: 220px;
        padding: 15px;
    }
    .price-card h3 {
        font-size: 1rem;
    }
    .price {
        font-size: 1.3rem;
    }
}

@media (max-width: 599px) {
    .pricing-section {
        padding: 35px 15px;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .section-subtitle {
        font-size: 0.8rem;
    }
    .pricing-cards {
        flex-direction: column;
        gap: 20px;
    }
    .price-card {
        width: 100%;
        min-width: auto;
        padding: 15px;
    }
    .price-card h3 {
        font-size: 1rem;
    }
    .price {
        font-size: 1.3rem;
    }
    .price-features li {
        font-size: 0.7rem;
        padding: 4px 0;
    }
    .btn-price-enquiry {
        margin-top: 15px;
        padding: 10px 12px;
    }
}

@media (max-width: 400px) {
    .pricing-section {
        padding: 25px 12px;
    }
    .price-card {
        padding: 12px;
    }
    .price-card-icon {
        font-size: 1.4rem;
    }
    .price-card h3 {
        font-size: 0.9rem;
    }
    .price {
        font-size: 1.1rem;
    }
    .price-features li {
        font-size: 0.65rem;
        padding: 3px 0;
    }
    .btn-price-enquiry {
        padding: 8px 10px;
        font-size: 0.7rem;
    }
}

/* ========================================================================
   11. SITE PLAN SECTION
   ======================================================================== */
.siteplan-section {
    padding: 60px 30px;
    background: #ffffff;
    width: 100%;
}

.siteplan-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.siteplan-image {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.siteplan-blur-effect {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.siteplan-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.blur-overlay i {
    font-size: 2rem;
}

.blur-overlay span {
    font-size: 1rem;
    font-weight: 600;
}

.blur-overlay small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.siteplan-blur-effect:hover .blur-overlay {
    background: rgba(139, 92, 246, 0.95);
}

.siteplan-info {
    flex: 1;
    min-width: 280px;
}

.siteplan-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 25px;
    position: relative;
}

.siteplan-info h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.siteplan-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
}

.highlight-item:hover {
    background: #ffffff;
    border-color: var(--primary);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.highlight-text {
    display: flex;
    flex-direction: column;
}

.highlight-text strong {
    font-size: 0.85rem;
    color: #000000;
}

.highlight-text span {
    font-size: 0.7rem;
    color: #000000;
}

.btn-siteplan-download {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-siteplan-download:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.siteplan-note {
    font-size: 0.7rem;
    color: #000000;
    margin-top: 18px;
}

/* Site Plan Responsive */
@media (min-width: 1200px) {
    .siteplan-section {
        padding-right: 30px;
    }
}

@media (max-width: 900px) {
    .siteplan-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .siteplan-section {
        padding: 40px 20px;
    }
    .siteplan-highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================
   12. AMENITIES SECTION
   ======================================================================== */
.amenities-section {
    padding: 50px 30px;
    background: linear-gradient(145deg, #fff 0, #F8FAFC 100%);
    width: 100%;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 35px 0 30px;
}

.amenity-item {
    background: #f8fafc;
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
}

.amenity-item:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.amenity-item:hover i,
.amenity-item:hover span {
    color: white;
}

.amenity-item i {
    font-size: 1.1rem;
    color: var(--primary);
}

.amenity-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1e293b;
}

.amenities-cta {
    text-align: center;
}

.btn-amenities {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-amenities:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Amenities Responsive */
@media (min-width: 1200px) {
    .amenities-section {
        padding-right: 30px;
    }
}

@media (max-width: 900px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .amenities-section {
        padding: 40px 20px;
    }
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================
   13. GALLERY SECTION
   ======================================================================== */
.gallery-section {
    padding: 50px 30px;
    background: linear-gradient(145deg, #fff 0, #F8FAFC 100%);
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 35px 0 30px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
}

.gallery-overlay i {
    font-size: 2rem;
}

.gallery-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
}

.btn-gallery {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gallery:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Gallery Responsive */
@media (min-width: 1200px) {
    .gallery-section {
        padding-right: 30px;
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-section {
        padding: 40px 20px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================
   14. LOCATION SECTION
   ======================================================================== */
.location-section {
    padding: 50px 30px;
    background: linear-gradient(145deg, #fff 0, #F8FAFC 100%);
    width: 100%;
}

.location-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 35px 0 30px;
}

.location-map {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.map-blur-effect {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.location-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.85);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.map-overlay i {
    font-size: 2.2rem;
}

.map-overlay span {
    font-size: 1rem;
    font-weight: 600;
}

.map-overlay small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.map-blur-effect:hover .map-overlay {
    background: rgba(139, 92, 246, 0.95);
}

.location-info {
    flex: 1;
    min-width: 280px;
}

.location-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
}

.location-item:hover {
    background: #ffffff;
    border-color: var(--primary);
    transform: translateX(5px);
}

.location-item i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 35px;
}

.location-item div {
    display: flex;
    flex-direction: column;
}

.location-item strong {
    font-size: 0.8rem;
    color: #1e293b;
    margin-bottom: 2px;
}

.location-item span {
    font-size: 0.7rem;
    color: #000000;
}

.location-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-location {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-location:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.btn-location-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-location-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Location Responsive */
@media (min-width: 1200px) {
    .location-section {
        padding-right: 30px;
    }
}

@media (max-width: 900px) {
    .location-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .location-section {
        padding: 40px 20px;
    }
    .location-highlights {
        grid-template-columns: 1fr;
    }
    .location-cta {
        flex-direction: column;
    }
    .btn-location,
    .btn-location-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================================================
   15. ABOUT SECTION
   ======================================================================== */
.about-section {
    padding: 50px 30px;
    background: linear-gradient(145deg, #fff 0, #F8FAFC 100%);
    width: 100%;
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-text p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-text p strong {
    color: var(--primary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
}

.about-point:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateX(5px);
}

.about-point:hover i,
.about-point:hover span {
    color: white;
}

.about-point i {
    font-size: 1rem;
    color: var(--primary);
}

.about-point span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1e293b;
}

.btn-about {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.about-image {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* About Responsive */
@media (min-width: 1200px) {
    .about-section {
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
    }
    .about-wrapper {
        flex-direction: column;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .btn-about {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================================================
   17. AUTHORISED CHANNEL PARTNER SECTION
   ======================================================================== */
.partner-section {
    padding: 50px 30px;
    background: #ffffff;
    width: 100%;
}

.partner-content p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
}

.partner-content p i {
    color: var(--primary);
    font-size: 1rem;
    margin-right: 8px;
}

.partner-content p strong {
    color: var(--primary);
}

.partner-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    background: #f8fafc;
    border-radius: 24px;
    padding: 25px;
}

.partner-contact-info {
    flex: 0.4;
    min-width: 240px;
}

.partner-contact-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 20px;
    position: relative;
}

.partner-contact-info h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    transform: translateX(5px);
    background: rgba(139, 92, 246, 0.05);
    padding-left: 10px;
    border-radius: 12px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.contact-item:hover .contact-icon i {
    color: white;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text span {
    font-size: 0.7rem;
    color: #000000;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.contact-text strong {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-text span {
    color: var(--primary);
}

.contact-item:hover .contact-text strong {
    color: var(--primary);
}

.partner-map {
    flex: 1;
    min-width: 200px;
}

.partner-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Partner Responsive */
@media (min-width: 1200px) {
    .partner-section {
        padding-right: 30px;
    }
}

@media (max-width: 992px) {
    .partner-contact-info {
        flex: 0.6;
    }
    .partner-map {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 40px 20px;
    }
    .partner-content p {
        font-size: 0.85rem;
    }
    .partner-contact-wrapper {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .partner-contact-info {
        flex: 1;
        width: 100%;
    }
    .partner-contact-info h3 {
        font-size: 1.1rem;
    }
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    .contact-icon i {
        font-size: 1.1rem;
    }
    .contact-text strong {
        font-size: 0.85rem;
    }
    .partner-map {
        width: 100%;
    }
    .partner-map iframe {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .partner-section {
        padding: 30px 15px;
    }
    .partner-content p {
        font-size: 0.8rem;
    }
    .partner-contact-wrapper {
        padding: 15px;
    }
    .contact-item {
        padding: 10px 0;
    }
    .partner-map iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .partner-section {
        padding: 25px 12px;
    }
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    .contact-icon i {
        font-size: 1rem;
    }
    .contact-text span {
        font-size: 0.6rem;
    }
    .contact-text strong {
        font-size: 0.75rem;
    }
    .partner-map iframe {
        height: 220px;
    }
}

@media (max-width: 400px) {
    .partner-map {
        width: 100%;
        margin: 0 auto;
    }
    .partner-map iframe {
        height: 220px;
    }
    .partner-contact-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* ========================================================================
   18. FOOTER SECTION
   ======================================================================== */
.footer-section {
    background: #1a1a2e;
    padding: 20px 30px;
    width: 100%;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.footer-copyright p {
    font-size: 0.7rem;
    color: #a0a0b0;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.7rem;
    color: #a0a0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Footer Responsive */
@media (min-width: 1200px) {
    .footer-section {
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 15px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 12px 15px;
    }
    .footer-copyright p,
    .footer-bottom-links a {
        font-size: 0.6rem;
    }
}