:root {
    --primary: #0056b3; 
    --accent: #ffcc00;  
    --white: #ffffff;
    --dark: #1a1a1a;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); line-height: 1.6; }

/* --- Navbar (Compact & Fix) --- */
.navbar-container {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 15px; /* Chota Header Height */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem; /* Thoda chota logo */
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
}

.logo span { color: var(--primary); }

.nav-links { 
    list-style: none; 
    display: flex; 
    align-items: center; 
    gap: 15px; /* Gap kam kiya mobile ke liye */
}

.nav-links a { 
    text-decoration: none; 
    color: var(--dark); 
    font-weight: 600; 
    font-size: 0.85rem; /* Font chota kiya taki mobile me fit ho */
}

.btn-contact {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 14px; /* Chota button */
    border-radius: 5px;
    transition: 0.3s ease;
}

/* --- Hero Section (TERA ORIGINAL STYLE) --- */
.hero {
    height: 90vh;
    position: relative;
    /* Yahan apni image ka naam likh */
    background: url('images/ent.jpeg') center/cover no-repeat; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.strip-tag {
    position: absolute;
    z-index: 10;
    padding: 12px 25px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.left-edge {
    top: 20%;
    left: 0;
    background: var(--primary);
    border-radius: 0 30px 30px 0;
}

.price-val { color: var(--accent); font-size: 1.1rem; }

.right-edge {
    bottom: 20%;
    right: 0;
    background: var(--dark);
    border-radius: 30px 0 0 30px;
    border-left: 4px solid var(--primary);
}

.hero-center-content {
    position: relative;
    z-index: 5;
    width: 90%;
    max-width: 800px;
}

.hero-center-content h1 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-btns {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.main-btn, .secondary-btn {
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
    display: inline-block;
}

.main-btn { background: var(--primary); color: #fff; }
.secondary-btn { 
    background: rgba(255,255,255,0.1); 
    color: #fff; 
    border: 2px solid #fff; 
    backdrop-filter: blur(5px);
}

/* --- Mobile Fixes (Strictly for Header & Strips) --- */
@media (max-width: 768px) {
    .hero { height: 85vh; }
    
    /* Yahan About Us ko wapas laya gaya hai */
    .nav-links li { display: block !important; } 
    .nav-links { gap: 10px; }
    .nav-links a { font-size: 0.75rem; }
    .btn-contact { padding: 6px 10px; }

    .strip-tag {
        font-size: 0.65rem;
        padding: 8px 15px;
    }
    
    .left-edge { top: 15%; }
    .right-edge { bottom: 10%; }

    .hero-center-content h1 { font-size: 1.7rem !important; }

    .hero-btns { flex-direction: row; gap: 10px; } /* Buttons side-by-side on mobile */
    .main-btn, .secondary-btn { padding: 10px 15px; font-size: 0.75rem; }
}



/* --- High Impact Heading --- */
.section-heading-v2 {
    text-align: center;
    padding: 40px 0 30px;
}
.section-heading-v2 h2 {
    font-size: 2.5rem; /* Bada and Bold */
    font-weight: 900;
    color: #000;
    margin-top: 10px;
    letter-spacing: -1px;
}
.bold-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
}

/* --- Grid with Spacing --- */
.property-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px; /* Card ke beech gap */
    padding: 20px;
}

/* --- Card with Boundary --- */
.new-pg-card {
    background: #fff;
    border: 2px solid #eef0f2; /* Boundary/Border */
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}
.new-pg-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-img-wrapper {
    height: 200px;
    position: relative;
    cursor: pointer;
}
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* View More Badge */
.view-more-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 5px;
}

/* --- Black Bold Content --- */
.card-content { padding: 20px; }
.black-bold { color: #000 !important; font-size: 1.3rem; font-weight: 800; margin-bottom: 5px; }
.black-text { color: #000 !important; font-weight: 600; font-size: 0.85rem; opacity: 0.9; }

/* Sharing Table */
.sharing-table {
    display: flex;
    justify-content: space-between;
    background: #f4f7f9;
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
}
.s-item { text-align: center; }
.s-item span { display: block; font-size: 0.65rem; color: #444; font-weight: 700; text-transform: uppercase; }
.s-item strong { font-size: 1rem; color: var(--primary); font-weight: 800; }

/* Amenities Pills */
.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.p-pill {
    background: #fff;
    border: 1px solid #ddd;
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Compact Buttons with WA Logo */
.card-action {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.call-btn-v2, .wa-btn-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
}
.call-btn-v2 { background: var(--primary); color: #fff; }
.wa-btn-v2 { 
    background: transparent; 
    color: #25d366; 
    border: 2px solid #25d366;
}
.wa-btn-v2:hover { background: #25d366; color: #fff; }

/* Mobile View */
@media (max-width: 600px) {
    .section-heading-v2 h2 { font-size: 1.8rem; }
    .property-grid-container { gap: 20px; padding: 10px; }
    .card-img-wrapper { height: 180px; }
}

/* --- Card Image Swiper Fix --- */
.card-img-wrapper {
    position: relative;
    height: 190px; /* Fixed Height */
    overflow: hidden;
}

.pg-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease; /* Smooth Fade */
}

/* Controls Container */
.swiper-controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    z-index: 10;
    opacity: 0; /* Default hidden */
    transition: opacity 0.3s ease;
}

.card-img-wrapper:hover .swiper-controls {
    opacity: 1; /* Show on hover */
}

.swiper-btn {
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    backdrop-filter: blur(2px);
    transition: 0.2s;
}

.swiper-btn:hover { background: #fff; transform: scale(1.1); }

/* Mobile View for Controls */
@media (max-width: 768px) {
    .swiper-controls { opacity: 1; } /* Always visible on mobile */
    .swiper-btn { width: 25px; height: 25px; font-size: 0.8rem; background: rgba(255,255,255,0.8); }
}




/* --- Enquiry Modal Overlay --- */
#enquiry-modal {
    display: none; /* JS control karega display: flex */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75); /* Darker backdrop for focus */
    backdrop-filter: blur(8px); /* Modern blur effect */
    z-index: 1000000; /* Sabse upar */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* --- Modal Content Box --- */
.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    position: relative;
    padding: 40px 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    /* Entrance Animation */
    animation: anviPopUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes anviPopUp {
    from { transform: translateY(30px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

/* --- Close Button (Top Right) --- */
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.close-modal:hover {
    background: #ff4d4d;
    color: #fff;
    transform: rotate(90deg);
}

/* --- Form Heading --- */
.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.modal-header p {
    font-size: 0.9rem;
    color: #666;
}

/* --- Form Inputs Styling --- */
#enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#enquiry-form input, 
#enquiry-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    transition: 0.3s;
}

#enquiry-form input:focus, 
#enquiry-form select:focus {
    border-color: var(--primary);
    background: #f9fbff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* --- Submit Button --- */
.submit-btn {
    background: var(--primary); /* Tera blue color */
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

.submit-btn:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* --- Mobile Fixes --- */
@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .modal-header h3 {
        font-size: 1.5rem;
    }
}


/* --- Amenities Section --- */
.amenities-premium {
    padding: 60px 20px;
    background: #fcfcfc;
}

.amenities-container {
    max-width: 1100px;
    margin: 0 auto;
}

.premium-header {
    text-align: center;
    margin-bottom: 40px;
}

.premium-header h2 {
    font-size: 2.2rem;
    color: #000;
    font-weight: 900;
    margin: 10px 0;
}

.sub-text {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* --- Grid Wrapper --- */
.amenities-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* --- Glass Card Design --- */
.amenity-glass-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.amenity-glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.a-icon-wrap {
    background: #f0f7ff;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.a-icon-wrap img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.a-text h4 {
    font-size: 1.1rem;
    color: #000;
    font-weight: 800;
    margin-bottom: 5px;
}

.a-text p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    font-weight: 500;
}

/* --- Mobile Fixes --- */
@media (max-width: 600px) {
    .premium-header h2 { font-size: 1.8rem; }
    .amenity-glass-card { padding: 15px; }
    .a-icon-wrap { width: 55px; height: 55px; }
    .a-icon-wrap img { width: 30px; }
}



/* --- Why Us Section (Clean White) --- */
.why-us-premium {
    padding: 60px 20px;
    background: #ffffff; /* Suthra White Background */
    color: #333;
}

.why-us-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.why-header-pop {
    margin-bottom: 40px;
}

.why-header-pop h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.seo-subtext {
    color: #666;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Compact Grid --- */
.why-flex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Chote dabbe */
    gap: 20px;
}

.why-mini-card {
    background: #fdfdfd;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.why-mini-card:hover {
    background: #fff;
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.highlight-border {
    border: 1px solid #e0e7ff; /* Halka blueish border */
    background: #f9faff;
}

/* Icons */
.why-icon-box {
    margin-bottom: 15px;
}
.why-icon-box img {
    width: 40px; /* Icons chote kar diye */
    height: 40px;
}

.why-mini-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.why-mini-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

/* Rating Box Fix */
.big-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}
.gold-stars {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Mobile Fixes */
@media (max-width: 600px) {
    .why-header-pop h2 { font-size: 1.8rem; }
    .why-flex-grid { grid-template-columns: 1fr 1fr; } /* Mobile par 2 columns */
}

/* --- Rooms Engine Styles --- */
.rooms-engine { padding: 60px 20px; background: #fff; }
.budget-header { text-align: center; margin-bottom: 30px; }
.budget-header h2 { font-size: 2.2rem; font-weight: 900; color: #000; margin-bottom: 5px; }
.gold-line-center { width: 60px; height: 4px; background: var(--primary); margin: 0 auto; }

/* Category Tabs */
.category-select-area { text-align: center; margin-bottom: 40px; }
.select-label { display: block; font-weight: 700; color: #666; font-size: 0.85rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }

.room-tabs { display: inline-flex; background: #f0f4f8; padding: 6px; border-radius: 50px; gap: 5px; }
.tab-btn {
    padding: 12px 25px;
    border: none;
    background: transparent;
    color: #444;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}
.tab-btn.active { background: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3); }

/* Room Cards */
.rooms-vertical-list { min-height: 300px; position: relative; max-width: 900px; margin: 0 auto; }

.room-card-horizontal {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    animation: fadeIn 0.5s ease-out;
}

.r-img { width: 40%; height: 200px; object-fit: cover; }
.r-info { width: 60%; padding: 20px; display: flex; flex-direction: column; justify-content: center; }

.r-price-tag { font-size: 1.5rem; font-weight: 900; color: var(--primary); margin-bottom: 5px; }
.r-title { font-size: 1.2rem; font-weight: 800; color: #000; }
.r-loc { font-size: 0.8rem; color: #777; margin-bottom: 15px; font-weight: 600; }

.r-action-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
}

/* Locked State */
.lock-state-premium {
    text-align: center;
    padding: 80px 20px;
    border: 2px dashed #ddd;
    border-radius: 15px;
    background: #fafafa;
}
.lock-icon { font-size: 2.5rem; margin-bottom: 15px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile */
@media (max-width: 700px) {
    .room-card-horizontal { flex-direction: column; }
    .r-img { width: 100%; height: 180px; }
    .r-info { width: 100%; }
    .room-tabs { flex-direction: column; width: 100%; border-radius: 15px; }
}



/* --- Mobile First Essentials --- */
.container { width: 92%; margin: 0 auto; }

/* About Section */
.mobile-luxe-about { padding: 40px 0; background: #fff; }
.about-card { 
    background: #f8faff; 
    padding: 30px; 
    border-radius: 25px; 
    margin-bottom: 20px;
    border: 1px solid #eef2f7;
}
.about-card h2 { font-size: 1.8rem; font-weight: 900; line-height: 1.2; margin: 10px 0; }

.mobile-stats-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px; 
    margin-top: 25px; 
    text-align: center;
}
.m-stat strong { font-size: 1.4rem; color: var(--primary); display: block; }
.m-stat span { font-size: 0.65rem; text-transform: uppercase; color: #777; font-weight: 700; }

.about-image-card { position: relative; border-radius: 25px; overflow: hidden; height: 250px; }
.about-image-card img { width: 100%; height: 100%; object-fit: cover; }
.floating-badge { 
    position: absolute; top: 15px; right: 15px; 
    background: var(--primary); color: #fff; 
    padding: 8px 15px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; 
}

/* Transit Swipe (Very Important for Mobile) */
.transit-mobile { padding: 40px 0; background: #000; color: #fff; }
.transit-mobile h3 { margin-bottom: 20px; font-size: 1.3rem; }
.swipe-container { 
    display: flex; 
    overflow-x: auto; 
    gap: 12px; 
    padding-bottom: 10px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}
.swipe-container::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome */

.transit-pill { 
    flex: 0 0 auto; 
    background: #1a1a1a; 
    padding: 12px 20px; 
    border-radius: 50px; 
    font-size: 0.85rem; 
    border: 1px solid #333;
}
.transit-pill.gold { border-color: var(--primary); background: rgba(0, 86, 179, 0.2); }

/* FAQ Mobile */
.faq-mobile { padding: 50px 0; }
.faq-box { border-bottom: 1px solid #eee; padding: 20px 0; }
.q-row { font-weight: 800; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; }
.a-row { 
    max-height: 0; overflow: hidden; transition: 0.3s; 
    color: #666; font-size: 0.95rem; margin-top: 0; 
}
.faq-box.active .a-row { max-height: 100px; margin-top: 10px; }
.faq-box.active .icon { transform: rotate(45deg); color: var(--primary); }

/* --- Transit & Marquee Styles --- */
.transit-section-wrapper {
    padding: 30px 0 0;
    background: #fff;
}

.transit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.transit-header h3 {
    font-size: 0.9rem;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    height: 8px;
    width: 8px;
    background-color: #ff4d4d; /* Live Red */
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink { 0% {opacity: 1;} 50% {opacity: 0.3;} 100% {opacity: 1;} }

.moving-transit {
    background: #111;
    padding: 15px 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: slide-left 25s linear infinite;
}

.t-item {
    color: #eee;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 25px;
    white-space: nowrap;
}

.t-item.gold { color: #FFD700; font-weight: 800; }

@keyframes slide-left { from {transform: translateX(0);} to {transform: translateX(-50%);} }

/* --- Compact FAQ Styles --- */
.faq-compact { padding: 40px 0; background: #fff; }

.faq-title-area { margin-bottom: 20px; }
.section-title-sm { font-size: 1.2rem; font-weight: 900; color: #000; margin-bottom: 5px; }
.title-line { width: 40px; height: 3px; background: var(--primary); }

.faq-list-wrapper { border-top: 1px solid #f0f0f0; }

.faq-box {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
    cursor: pointer;
    transition: 0.3s;
}

.q-row {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-icon { font-size: 1.1rem; color: #999; transition: 0.4s; }

.a-row {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
}

.a-row p {
    padding-top: 10px;
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

.faq-box.active .f-icon { transform: rotate(45deg); color: var(--primary); }
.faq-box.active .a-row { max-height: 200px; transition: all 0.3s ease-in; }

/* --- 1. VIDEO TOUR SECTION (Cinema Style) --- */
.video-tour-section {
    padding: 60px 20px;
    background: #000; /* Dark background for video focus */
    color: #fff;
}

.video-layout {
    display: flex;
    flex-direction: column; /* Mobile first */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.2);
}

.video-frame iframe {
    width: 100%;
    height: 100%;
}

.video-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.video-points {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.video-points li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #bbb;
}

.main-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary); /* Tera Blue/Gold color */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* --- 2. CONNECTIVITY SECTION (Compact Grid) --- */
.connectivity-section {
    padding: 60px 20px;
    background: #fff;
}

.connectivity-header h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 35px;
    color: #000;
}

.transit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns on mobile */
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.transit-card {
    background: #f9f9f9;
    padding: 20px 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
}

.transit-card.highlighted {
    border: 2px solid var(--primary);
    background: #f0f7ff;
}

.location-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #888;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.transit-info h4 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.transit-badge, .transit-badge-gold {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.transit-badge { background: #ddd; color: #333; }
.transit-badge-gold { background: var(--primary); color: #fff; }

/* --- 3. MAIN FOOTER (Sleek & Professional) --- */
/* --- UPDATED PREMIUM FOOTER --- */
.main-footer {
    background: #0f0f0f;
    color: #fff;
    padding-top: 50px; /* Thoda kam kiya mobile ke liye */
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-direction: column; /* Mobile first stack */
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* LOGO COLOR CHANGE */
.brand-col .logo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffffff; /* 'PGs' ka color white */
    letter-spacing: -1px;
}

.brand-col .logo span {
    color: #FFD700; /* 'ANVI' ka color ab Gold/Yellow hai - Isse yahan change karein */
    text-transform: uppercase;
}

.brand-col p {
    font-size: 0.9rem;
    color: #cccccc; /* Pure white se halka grey kiya taaki aankhon ko chubhe na */
    line-height: 1.6;
    max-width: 350px;
}

.social-logos-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-img-link img {
    width: 28px;
    height: 28px;
    transition: 0.3s ease;
    filter: brightness(0) invert(1); /* Icons ko white karne ke liye */
}

.social-img-link:hover img {
    transform: translateY(-5px);
    filter: none; /* Hover par asli color dikhega */
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #FFD700; /* Heading color gold se match kiya */
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { 
    margin-bottom: 10px; 
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* ADDRESS CARD (CLEAN & COMPACT) */
.contact-info .map-box {
    background: #1a1a1a;
    padding: 18px;
    border-radius: 15px;
    border: 1px solid #333;
    margin-top: 15px;
    transition: 0.3s;
}

.contact-info .map-box:hover {
    border-color: #FFD700;
}

.map-placeholder span {
    color: #FFD700;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* FOOTER BOTTOM */
.footer-bottom {
    background: #000;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-bottom p {
    color: #666;
    font-size: 0.75rem;
    margin: 5px 0;
    letter-spacing: 0.5px;
}

.footer-bottom strong {
    color: #FFD700; /* Nelka Digital Agency gold mein chamkega */
}

/* --- DESKTOP BREAKPOINTS --- */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row; /* Desktop par side-by-side */
        justify-content: space-between;
        padding: 0 40px 60px;
    }
    
    .footer-col {
        flex: 1;
    }
    
    .footer-bottom-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* --- BRANDED WhatsApp Fixed Button --- */
.whatsapp-branded-fixed {
    position: fixed; /* Screen par chipka rahega */
    bottom: 25px;    /* Niche se distance */
    right: 0px;      /* EDGE-TO-EDGE: Ekdum corner se touch karega */
    background-color: #25d366;
    width: 65px;     /* Bada logo aur text ke liye jagah */
    height: 60px;
    border-radius: 30px 0 0 30px; /* Modern half-pill shape, right se straight */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -5px 10px 25px rgba(0,0,0,0.3);
    z-index: 10000;  /* Sabse upar dikhega */
    transition: all 0.3s ease;
    animation: bounceOriginal 2s infinite;
}

.whatsapp-branded-fixed:hover {
    transform: translateX(-10px) scale(1.05); /* Hover par thoda left aur upar uthega */
    background-color: #128c7e;
}

/* Original Logo Styles */
.whatsapp-branded-fixed img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

/* Red Notification Badge */
.wa-notification {
    position: absolute;
    top: -5px;
    right: 40px; /* Icon ke upar, text se pehle */
    background: #ff3b30;
    color: white;
    font-size: 10px;
    padding: 4px 7px;
    border-radius: 50%;
    font-weight: 800;
    border: 2px solid white;
    line-height: 1;
}

/* Bouncing Animation (Original Style) */
@keyframes bounceOriginal {
    0%, 20%, 50%, 80%, 100% {transform: translateX(0px);}
    40% {transform: translateX(-15px);} /* Left ki taraf edge se dur bounce karega */
    60% {transform: translateX(-5px);}
}

/* Desktop Only: Branded Tooltip */
.wa-tooltip-branded {
    position: absolute;
    right: 80px;
    background: #fff;
    color: #333;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 1; /* By default dikhega aur 2s baad hide ho sakta hai script se */
    transition: 0.3s;
}

/* Mobile Friendly Adjustments */
@media (max-width: 768px) {
    .whatsapp-branded-fixed {
        bottom: 15px; /* Mobile par thoda upar */
        width: 60px;
        height: 55px;
        border-radius: 30px 0 0 30px; /* Still edge-to-edge but slightly smaller */
    }
    .whatsapp-branded-fixed img {
        width: 32px;
        height: 32px;
    }
    .wa-notification {
        right: 35px;
    }
    .wa-tooltip-branded {
        display: none; /* Mobile par hata diya taaki cleaner screen dikhe */
    }
}