/* ==================== DUO ESCORTS SECTION ==================== */
.duo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
    border-radius: 14px;
}

/* Header */
.duo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.duo-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #38bdf8;
    letter-spacing: 0.5px;
}

.duo-view-all {
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.duo-view-all::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #22c55e;
    transition: width 0.3s ease;
}

.duo-view-all:hover::after {
    width: 100%;
}

/* Grid */
.duo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Mobile Fix */
@media (max-width: 480px) {
    .duo-grid {
        flex-direction: column;
        gap: 20px;
    }
}

/* Card */
.duo-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.duo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #38bdf8;
    box-shadow: 0 20px 50px rgba(56,189,248,0.25);
}

/* Image Area */
.duo-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.duo-images {
    display: flex;
    height: 100%;
}

.duo-img-left,
.duo-img-right {
    width: 50%;
    overflow: hidden;
    position: relative;
}

/* Divider line */
.duo-img-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 2px;
    background: rgba(255,255,255,0.15);
}

.duo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.9);
}

/* Hover Animation */
.duo-card:hover .duo-img-left .duo-img {
    transform: scale(1.15) rotate(-2deg);
}

.duo-card:hover .duo-img-right .duo-img {
    transform: scale(1.15) rotate(2deg);
}

/* Optional overlay */
.duo-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}/* ==================== BADGES (NEW STYLE) ==================== */
.pricing-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    color: #022c22;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    z-index: 20;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(34,197,94,0.4);
}

.bi-duo-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 23, 42, 0.9);
    color: #38bdf8;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56,189,248,0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 30;
}

.availability-dot {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e, 0 0 25px rgba(34,197,94,0.6);
    z-index: 25;
}

/* ==================== BOTTOM INFO ==================== */
.duo-bottom-info {
    background: linear-gradient(135deg, #020617, #111827);
    padding: 22px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.duo-info-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.duo-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f1f5f9;
}

.duo-price {
    font-size: 0.9rem;
    color: #38bdf8;
    font-weight: 500;
}

.duo-location {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 5px;
}

.duo-separator {
    width: 2px;
    background: linear-gradient(to bottom, transparent, #38bdf8, transparent);
    height: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .duo-image-wrapper {
        height: 240px;
    }
}


/* ==================== LOCATION GROUP (NEW DESIGN) ==================== */
.location-group {
    margin: 25px 15px;
}

.location-group-title {
    color: #e2e8f0;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-left: 4px solid #38bdf8;
    padding-left: 12px;
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Button Style */
.location-btn {
    background: #ffffff10;
    color: #cbd5f5;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-btn:hover {
    background: #38bdf8;
    color: #020617;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(56,189,248,0.4);
}

/* Responsive */
@media (max-width: 640px) {
    .location-grid {
        justify-content: center;
    }

    .location-btn {
        flex: 1 1 45%;
        text-align: center;
        font-size: 0.85rem;
        padding: 12px;
    }
}
/* ==================== SOUTH BANGALORE LOCATIONS - COMPLETELY NEW ==================== */
.sb-location-group {
    margin: 60px 0;
    padding: 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 12px;
}

.sb-title {
    color: #38bdf8;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.sb-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #38bdf8;
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* Grid Layout */
.sb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

/* Buttons */
.sb-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #020617;
    color: #e2e8f0;
    padding: 18px 12px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #334155;
    transition: all 0.35s ease;
    text-align: center;
}

.sb-btn:hover {
    background: #38bdf8;
    color: #020617;
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
    border-color: transparent;
}

/* ==================== INFO TABS SECTION ==================== */
.info-tabs-section {
    background: linear-gradient(135deg, #020617, #1e293b);
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
}

/* Tabs Buttons */
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.tab-btn {
    flex: 1;
    min-width: 140px;
    padding: 14px 20px;
    background: #0f172a;
    color: #94a3b8;
    border: 1px solid #1e293b;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #38bdf8;
    color: #020617;
    border-color: #38bdf8;
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.4);
}

.tab-btn:hover:not(.active) {
    background: #1e293b;
    color: #e2e8f0;
}

/* Tab Content */
.tab-panel {
    background: #020617;
    padding: 28px;
    border-radius: 10px;
    color: #cbd5f5;
    line-height: 1.8;
    border: 1px solid #1e293b;
    min-height: 160px;
}

.tab-panel h2 {
    color: #38bdf8;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .sb-title {
        font-size: 1.5rem;
    }

    .sb-grid {
        gap: 15px;
    }

    .sb-btn {
        padding: 14px 10px;
        font-size: 0.9rem;
    }

    .tab-btn {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .tab-panel {
        padding: 20px;
    }
}/* ==================== IMAGE + TEXT SECTION (COMPLETELY NEW) ==================== */
.image-text-section {
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 50px 20px;
    border-radius: 14px;
}

/* Wrapper */
.image-text-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    align-items: center;
}

/* Image Side */
.image-column {
    width: 100%;
}

.section-image {
    width: 100%;
    height: 100%;
    max-height: 420px;
    border-radius: 14px;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.95);
    transition: all 0.4s ease;
}

.section-image:hover {
    transform: scale(1.04);
    filter: brightness(1.05);
}

/* Text Side */
.text-column {
    width: 100%;
}

/* Title */
.section-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 18px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #38bdf8;
    margin-top: 8px;
}

/* Description */
.section-desc {
    font-size: 1rem;
    color: #cbd5f5;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* List */
.hotel-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* List Items */
.hotel-list li {
    padding: 12px 16px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hotel-list li:hover {
    background: rgba(56, 189, 248, 0.15);
    transform: translateX(6px);
}

/* Highlight text */
.hotel-list strong {
    color: #facc15;
    font-weight: 600;
}

/* ==================== DESKTOP ==================== */
@media (min-width: 992px) {
    .image-text-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-image {
        max-height: 500px;
    }
}

/* ==================== MOBILE ==================== */
@media (max-width: 991px) {
    .section-image {
        max-height: 300px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }
}/* ==================== CUSTOM TABLE - COMPLETELY NEW ==================== */
.table-section {
    background: linear-gradient(135deg, #020617, #0f172a);
    padding: 40px 15px;
    border-radius: 14px;
}

/* Wrapper */
.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.9);
    padding: 10px;
    border: 1px solid #1e293b;
}

/* Table */
.custom-table {
    width: 100%;
    min-width: 680px;
    border-collapse: separate;
    border-spacing: 0;
    color: #e2e8f0;
}

/* Header */
.custom-table th {
    background: #38bdf8;
    color: #020617;
    padding: 14px 16px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cells */
.custom-table td {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-bottom: 1px solid #1e293b;
}

/* Alternate rows */
.custom-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

/* Hover */
.custom-table tr:hover td {
    background: rgba(56, 189, 248, 0.1);
}

/* ==================== MOBILE ==================== */
@media (max-width: 768px) {
    .custom-table {
        min-width: 600px;
    }

    .custom-table th,
    .custom-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

/* ==================== PHOTO TEXT SECTION - NEW STYLE ==================== */
.photo-text-section {
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 40px 20px;
    border-radius: 14px;
}

/* Wrapper */
.photo-text-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    align-items: center;
}

/* Content */
.photo-text-content {
    width: 100%;
}

/* Title */
.photo-text-title {
    font-size: 2rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 18px;
}

/* Subtitle */
.photo-text-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #facc15;
    margin: 20px 0 12px;
}

/* Description */
.photo-text-desc {
    font-size: 0.95rem;
    color: #cbd5f5;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* Items */
.photo-grid-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* Image */
.photo-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover */
.photo-grid-item:hover .photo-grid-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* ==================== DESKTOP ==================== */
@media (min-width: 992px) {
    .photo-text-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .photo-text-title {
        font-size: 2.4rem;
    }
}

/* ==================== MOBILE ==================== */
@media (max-width: 991px) {
    .photo-text-title {
        font-size: 1.6rem;
    }

    .photo-grid {
        gap: 6px;
    }
}
/* ==================== NORMAL TEXT SECTION (COMPLETELY NEW) ==================== */
.normal-text-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #020617, #0f172a);
    border-radius: 14px;
}

/* Container */
.normal-text-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Heading */
.normal-text-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    color: #38bdf8;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* Paragraphs */
.normal-text-section p {
    font-size: 1rem;
    line-height: 1.9;
    color: #cbd5f5;
    margin-bottom: 20px;
}

/* Highlight text */
.normal-text-section strong,
.normal-text-section b {
    color: #facc15;
    font-weight: 700;
}

/* Links */
.normal-text-section a {
    color: #38bdf8;
    text-decoration: none;
    border-bottom: 1px dashed #38bdf8;
    transition: all 0.3s ease;
}

.normal-text-section a:hover {
    color: #facc15;
    border-color: #facc15;
}

/* ==================== BULLET LIST ==================== */
.responsive-ul-bullet {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

/* List Items */
.responsive-ul-bullet li {
    padding: 14px 16px 14px 44px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    color: #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
}

/* Custom Bullet (Glow Dot) */
.responsive-ul-bullet li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 10px #38bdf8;
}

/* Hover Effect */
.responsive-ul-bullet li:hover {
    background: rgba(56, 189, 248, 0.12);
    transform: translateX(6px);
}

/* ==================== MOBILE ==================== */
@media (max-width: 768px) {
    .normal-text-section {
        padding: 40px 15px;
    }

    .normal-text-section h2 {
        font-size: 1.8rem;
    }

    .normal-text-section p {
        font-size: 0.95rem;
    }

    .responsive-ul-bullet li {
        font-size: 0.92rem;
        padding: 14px 14px 14px 42px;
    }

    .responsive-ul-bullet li:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .normal-text-section h2 {
        font-size: 1.6rem;
    }

    .responsive-ul-bullet li {
        font-size: 0.9rem;
        padding: 13px 12px 13px 40px;
    }
}