/* style.css - 2 Column Layout with Fixed Sidebar - FIXED VERSION */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #1e293b;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-column-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* COLUMN 1: Complete Website Content (Header + Banner) */
.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 (Top to Bottom) - WIDTH REDUCED */
.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 #eef2ff;
}

.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: #752960;
    border-radius: 10px;
}

/* ===== HEADER / NAVBAR - STICKY ON SCROLL ===== */
.main-navbar {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 0.6rem 1.5rem;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 50;
    transition: all 0.3s ease;
    align-self: flex-start;
}

/* Header scroll effect - smooth sticky */
.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, #752960 0%, #9b3d7c 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: #752960;
}

/* ===== BANNER SECTION ===== */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #eef2ff;
    min-height: 600px;
}

/* 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 - SMALLER SIZE */
.info-box {
    position: absolute;
    bottom: 17%;
    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(117, 41, 96, 0.15);
    z-index: 20;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-3px);
}

.status {
    display: inline-block;
    background: linear-gradient(135deg, #752960, #9b3d7c);
    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: #752960;
    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: #752960;
    font-size: 0.75rem;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: 800;
    color: #752960;
    margin: 0.3rem 0;
}

.mb-ext-box h4 {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ===== BUTTONS ===== */
.btn-cta {
    background: linear-gradient(135deg, #752960, #9b3d7c);
    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, #5a1f4a, #752960);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(117, 41, 96, 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.8rem;
    background: #f8fafc;
    border-radius: 20px;
    color: #1e293b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
    padding: 8px 7px;
    flex: 1;
    justify-content: center;
}

.og-links a:hover {
    background: #752960;
    color: white;
}

/* Form Styles */
.enq-form .form-control {
    border-radius: 50px;
    padding: 10px 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
    width: 100%;
    font-size: 0.85rem;
}

.enq-form .form-control:focus {
    border-color: #752960;
    box-shadow: 0 0 0 3px rgba(117, 41, 96, 0.1);
    outline: none;
}

.consent .form-check-label {
    font-size: 0.65rem;
    color: #475569;
}

.section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.8rem;
    border-left: 3px solid #752960;
    padding-left: 10px;
}

.section-heading i {
    color: #752960;
    margin-right: 6px;
}

.trust-badge {
    font-size: 0.65rem;
    color: #752960;
    font-weight: 600;
    padding-top: 8px;
    border-top: 1px solid #eef2ff;
}

/* ===== POPUP MODAL ===== */
.enqPopup .modal-content {
    border-radius: 28px;
    border: none;
    overflow: hidden;
}

.enq-popup-cp-highlights li {
    font-size: 0.75rem;
    background: white;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.enq-popup-pj-highlights {
    background: linear-gradient(135deg, #fef9f5, #fff5f0);
    padding: 12px;
    border-radius: 24px;
}

/* ===== RESPONSIVE: MOBILE/TABLET ===== */
@media (max-width: 1200px) {
    .two-column-layout {
        display: block;
    }
    
    .column-website {
        width: 100%;
        max-width: 100%;
    }
    
    .column-sidebar {
        position: relative;
        width: 100%;
        height: auto;
        box-shadow: none;
        border-left: none;
        border-top: 1px solid #eef2ff;
        margin-top: 0;
        padding: 1.5rem;
    }
    
    /* DETAIL CARD - RESPONSIVE: Charo side se 10px margin, width badhao */
    .info-box {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 10px !important;
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
        transform: none;
        padding: 1.2rem;
    }
    
    .banner {
        margin-bottom: 0;
        min-height: auto;
    }
    
    .glide__slide img {
        min-height: 350px;
    }
    
    .info-box h1 {
        font-size: 1.3rem;
    }
    
    .price-tag {
        font-size: 1.3rem;
    }
    
    /* Card content full dikhega */
    .card-d {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15rem !important;
    }
    
    .offers {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-navbar {
        padding: 0.5rem 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 {
        padding: 1.2rem;
    }
    
    /* Mobile mein bhi charo side 10px margin */
    .info-box {
        padding: 1rem;
        margin: 10px !important;
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
    }
    
    .card-d {
        padding: 0.6rem !important;
        gap: 5rem !important;
    }
    
    .offers li {
        padding: 0.2rem 0.6rem;
        font-size: 0.6rem;
    }
    
    .info-box h1 {
        font-size: 1.2rem;
    }
    
    .info-box h2 {
        font-size: 0.75rem;
    }
    
    .price-tag {
        font-size: 1.2rem;
    }
}

/* Small devices (480px and below) */
@media (max-width: 480px) {
    .info-box {
        margin: 8px !important;
        width: calc(100% - 16px) !important;
        max-width: calc(100% - 16px) !important;
        padding: 0.8rem;
    }
    
    .status {
        font-size: 0.6rem;
    }
    
    .info-box h1 {
        font-size: 1.1rem;
    }
    
    .offers li {
        font-size: 0.55rem;
        padding: 0.15rem 0.5rem;
    }

    .card-d {
        padding: 0.6rem !important;
        gap: 1rem !important;
    }
    
    
    .btn-cta {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Fix for banner not hiding behind header */
.column-website {
    isolation: isolate;
}

.banner {
    position: relative;
    z-index: 1;
}

.main-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
}

/* 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;
}


















/* ===== PRICING SECTION STYLES - WITH BUTTONS SAME LEVEL ===== */
.pricing-section {
    padding: 60px 30px;
    background: linear-gradient(135deg, #faf9ff 0%, #f5f3ff 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: #752960;
    margin-right: 8px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #64748b;
}

/* Pricing Cards Grid */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* PRICE CARD - FLEX COLUMN FOR SAME LEVEL BUTTONS */
.price-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 18px;
    width: calc(33.33% - 20px);
    min-width: 260px;
    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(117, 41, 96, 0.08);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(117, 41, 96, 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: #752960;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 25px;
    letter-spacing: 0.3px;
}

.price-card-badge.gold {
    background: linear-gradient(135deg, #c9a03d, #b8860b);
}

.price-card-icon {
    font-size: 1.8rem;
    color: #752960;
    margin-bottom: 10px;
}

.price-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 5px;
}

.area {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 8px;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #752960;
    margin: 8px 0 2px;
}

.price-note {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-bottom: 12px;
}

/* FEATURES LIST - TAKES REMAINING SPACE */
.price-features {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    flex: 1;
}

.price-features li {
    padding: 5px 0;
    font-size: 0.75rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px dashed #e2e8f0;
}

.price-features li i {
    color: #752960;
    font-size: 0.8rem;
}

.price-features li:last-child {
    border-bottom: none;
}

/* BUTTON - SAME LEVEL FOR ALL CARDS */
.btn-price-enquiry {
    width: 100%;
    background: #752960;
    color: white;
    border: none;
    padding: 8px 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: #5a1f4a;
    transform: translateY(-2px);
}

.payment-scheme {
    background: linear-gradient(135deg, #752960, #9b3d7c);
    color: white;
    padding: 5px 12px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.7rem;
    margin: 10px 0;
}

/* ===== SITE PLAN SECTION STYLES ===== */
.siteplan-section {
    padding: 60px 30px;
    background: #ffffff;
    width: 100%;
}

.siteplan-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    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(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: white;
    border-radius: 20px;
}

.blur-overlay i {
    font-size: 2rem;
}

.blur-overlay span {
    font-size: 1rem;
    font-weight: 600;
}

.blur-overlay small {
    font-size: 0.7rem;
}

.siteplan-blur-effect:hover .blur-overlay {
    background: rgba(117, 41, 96, 0.85);
}

.siteplan-info {
    flex: 1;
    min-width: 280px;
}

.siteplan-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 20px;
    position: relative;
}

.siteplan-info h3:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #752960;
    border-radius: 3px;
}

.siteplan-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.4rem;
    color: #752960;
}

.highlight-text {
    display: flex;
    flex-direction: column;
}

.highlight-text strong {
    font-size: 0.85rem;
    color: #1e293b;
}

.highlight-text span {
    font-size: 0.65rem;
    color: #64748b;
}

.btn-siteplan-download {
    background: transparent;
    border: 2px solid #752960;
    color: #752960;
    padding: 8px 20px;
    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: #752960;
    color: white;
    transform: translateY(-2px);
}

.siteplan-note {
    font-size: 0.65rem;
    color: #94a3b8;
    margin-top: 15px;
}

/* ===== RESPONSIVE FIXES ===== */
@media (min-width: 1200px) {
    .pricing-section,
    .siteplan-section {
        padding-right: 30px;
    }
}

@media (max-width: 1200px) {
    .pricing-section,
    .siteplan-section {
        padding: 50px 20px;
    }
    
    .price-card {
        width: calc(50% - 20px);
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .pricing-section,
    .siteplan-section {
        padding: 35px 15px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .price-card {
        width: 100%;
        min-width: auto;
    }
    
    .price-card h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .siteplan-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .siteplan-highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.2rem;
    }
    
    .price-card {
        padding: 15px;
    }
    
    .btn-siteplan-download {
        width: 100%;
        justify-content: center;
    }
}












/* ===== AMENITIES SECTION - COMPACT ===== */
.amenities-section {
    padding: 50px 30px;
    background: #ffffff;
    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: #752960;
    border-color: #752960;
    transform: translateY(-2px);
}

.amenity-item:hover i {
    color: white;
}

.amenity-item:hover span {
    color: white;
}

.amenity-item i {
    font-size: 1.1rem;
    color: #752960;
}

.amenity-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1e293b;
}

.amenities-cta {
    text-align: center;
}

.btn-amenities {
    background: transparent;
    border: 2px solid #752960;
    color: #752960;
    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: #752960;
    color: white;
    transform: translateY(-2px);
}

/* ===== 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);
        gap: 12px;
    }
    
    .amenity-item {
        padding: 8px 14px;
    }
    
    .amenity-item i {
        font-size: 0.9rem;
    }
    
    .amenity-item span {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .amenity-item {
        justify-content: center;
    }
}














/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 50px 30px;
    background: linear-gradient(135deg, #faf9ff 0%, #ffffff 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(117, 41, 96, 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 #752960;
    color: #752960;
    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: #752960;
    color: white;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1200px) {
    .gallery-section {
        padding-right: 30px;
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .gallery-section {
        padding: 40px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-overlay i {
        font-size: 1.5rem;
    }
    
    .gallery-overlay span {
        font-size: 0.75rem;
    }
    
    .btn-gallery {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
}













/* ===== LOCATION SECTION ===== */
.location-section {
    padding: 50px 30px;
    background: #ffffff;
    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(117, 41, 96, 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(117, 41, 96, 0.95);
    backdrop-filter: blur(5px);
}

.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: #752960;
    transform: translateX(5px);
}

.location-item i {
    font-size: 1.3rem;
    color: #752960;
    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: #64748b;
}

.location-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-location {
    background: linear-gradient(135deg, #752960, #9b3d7c);
    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(117, 41, 96, 0.3);
}

.btn-location-secondary {
    background: transparent;
    border: 2px solid #752960;
    color: #752960;
    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: #752960;
    color: white;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1200px) {
    .location-section {
        padding-right: 30px;
    }
}

@media (max-width: 900px) {
    .location-wrapper {
        flex-direction: column;
    }
    
    .location-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .location-section {
        padding: 40px 20px;
    }
    
    .location-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .location-item {
        padding: 10px;
    }
    
    .location-item i {
        font-size: 1.1rem;
        width: 30px;
    }
    
    .location-cta {
        flex-direction: column;
    }
    
    .btn-location,
    .btn-location-secondary {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
    
    .map-overlay i {
        font-size: 1.5rem;
    }
    
    .map-overlay span {
        font-size: 0.8rem;
    }
}


















/* ===== ABOUT SECTION - SIMPLE & ATTRACTIVE ===== */
.about-section {
    padding: 50px 30px;
    background: #ffffff;
    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: #752960;
}

.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: #752960;
    border-color: #752960;
    transform: translateX(5px);
}

.about-point:hover i {
    color: white;
}

.about-point:hover span {
    color: white;
}

.about-point i {
    font-size: 1rem;
    color: #752960;
}

.about-point span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1e293b;
}

.btn-about {
    background: linear-gradient(135deg, #752960, #9b3d7c);
    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(117, 41, 96, 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: #752960;
    display: flex;
    align-items: center;
    gap: 6px;
}

.about-tag i {
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1200px) {
    .about-section {
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
    }
    
    .about-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .about-point {
        padding: 8px 12px;
    }
    
    .btn-about {
        width: 100%;
        justify-content: center;
    }
}



/* ===== DEVELOPER SECTION - SIMPLE (NO BUTTON) ===== */
.developer-section {
    padding: 50px 30px;
    background: #ffffff;
    width: 100%;
}

.developer-content p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
}

.developer-content p strong {
    color: #752960;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1200px) {
    .developer-section {
        padding-right: 30px;
    }
}

@media (max-width: 600px) {
    .developer-section {
        padding: 40px 20px;
    }
    
    .developer-content p {
        font-size: 0.85rem;
    }
}








/* ===== 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: #752960;
    font-size: 1rem;
    margin-right: 8px;
}

.partner-content p strong {
    color: #752960;
}

.contact-details {
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1200px) {
    .partner-section {
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 40px 20px;
    }
    
    .partner-content p {
        font-size: 0.85rem;
    }
    
    .contact-details {
        padding: 12px 15px;
    }
}

@media (max-width: 600px) {
    .partner-section {
        padding: 30px 15px;
    }
    
    .partner-content p {
        font-size: 0.8rem;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details br {
        display: none;
    }
}









/* ===== FOOTER SECTION - SIMPLE ===== */
.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: #c9a03d;
}

/* ===== 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;
    }
    
    .footer-bottom-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 12px 15px;
    }
    
    .footer-copyright p {
        font-size: 0.6rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.6rem;
    }
}