:root {
    --primary-color: #ff7a00;
    --primary-light: #ffb84d;
    --secondary-color: #ffb84d;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --bg-light: #f8fbf9;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

::selection {
    background: var(--primary-color);
    color: var(--white);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Base Grid */
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    /* Using gap instead of margins/padding */
}

.col-md-8,
.col-md-4,
.col-12 {
    position: relative;
    width: 100%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .row {
        flex-wrap: nowrap;
        /* Keep them in line on desktop */
    }

    .col-md-8 {
        flex: 0 0 65%;
    }

    .col-md-4 {
        flex: 0 0 32%;
    }
}

/* Header & Nav */
header {
    background: transparent;
    padding: 0;
    width: 100%;
    top: 0;
    z-index: 1000;
    position: relative;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 100px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

nav#nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    height: 70px;
    background: #ffffff;
    border-radius: 100px;
    padding-left: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

nav#nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 25px;
    position: relative;
}

nav#nav-links a:hover,
nav#nav-links a.active {
    color: var(--primary-color);
}

nav#nav-links a.active::after,
nav#nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 25px;
    right: 25px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.book-btn {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 0 35px !important;
    border-radius: 0 100px 100px 0 !important;
    height: 100% !important;
    margin-left: 5px;
    font-size: 16px !important;
    font-weight: 800 !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.book-btn:hover {
    background: #e66e00 !important;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Toggle Animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 991px) {
    header {
        position: relative;
        padding: 0;
    }

    .nav {
        padding: 15px 0;
    }

    .logo {
        height: 60px;
    }

    .menu-toggle {
        display: flex;
    }

    /* Full Screen Mobile Menu Overlay */
    nav#nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0;
        box-shadow: none;
        padding: 20px;
        gap: 25px;
        display: flex;
    }

    nav#nav-links.active {
        transform: translateX(0);
    }

    nav#nav-links a {
        font-size: 22px;
        width: auto;
        height: auto;
        padding: 15px 30px;
    }

    nav#nav-links a.active::after,
    nav#nav-links a:hover::after {
        bottom: 5px;
        left: 20px;
        right: 20px;
    }

    nav#nav-links .book-btn {
        width: auto;
        min-width: 200px;
        height: 60px !important;
        border-radius: 50px !important;
        justify-content: center;
        margin-top: 10px;
        margin-left: 0;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-light);
    border-radius: 50% / 100% 100% 0 0;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: #ffd700;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 10;
}

.cta-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: var(--primary-color);
}

/* Features */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.box .icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.box h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.box p {
    color: var(--text-light);
    font-size: 15px;
}

/* Visit Banner */
.visit-banner {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.visit-content {
    background: var(--primary-color);
    padding: 60px;
    border-radius: 30px;
    color: var(--white);
}

.visit-content h2 {
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Page Hero (About/Contact) */
.page-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Default to center for simple heros */
}

.page-hero .row {
    text-align: left;
    /* Align left when using grid */
    align-items: center;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
}

.page-hero img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: block;
    margin-left: auto;
}

@media (max-width: 767px) {
    .page-hero {
        text-align: center;
        padding: 60px 0;
    }

    .page-hero p {
        margin: 0 auto;
    }

    .page-hero .col-md-4 {
        margin-top: 40px;
    }

    .page-hero img {
        margin: 0 auto;
        max-width: 80%;
    }
}

/* About Page Content */
.about-content {
    padding: 100px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.text-block h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.text-block p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Contact Page Content */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
    align-items: start;
}

.booking-form-card,
.contact-info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.booking-form-card h2,
.contact-info-card h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 10px;
}

.form-section-title {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(27, 127, 90, 0.1);
}

/* Facilities Checkboxes */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 500;
}

/* Slot Selection Grid - Premium Design */
.slot-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.slot-checkbox {
    position: relative;
    user-select: none;
}

.slot-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.slot-checkbox label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.slot-checkbox label:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    background: #fff8f0;
}

.slot-checkbox input:checked+label {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.2);
}

.slot-time {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.slot-name {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.slot-checkbox input:checked+label .slot-name {
    opacity: 1;
}

/* Declaration */
.declaration-group {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.declaration-group label {
    font-weight: 500;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(15, 81, 50, 0.2);
}

.submit-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 81, 50, 0.3);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    font-size: 24px;
    background: var(--bg-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
}

.footer-logo span {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Admin Dashboard Styles */
.admin-main {
    padding-bottom: 60px;
}

.dashboard-header {
    background: var(--white);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-header h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.dashboard-stats {
    margin-top: -40px;
    z-index: 10;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
}

.stat-icon {
    font-size: 32px;
    background: var(--bg-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.stat-info h3 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.bookings-list {
    margin-top: 40px;
}

.table-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.table-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.refresh-btn {
    background: var(--bg-light);
    border: 1px solid #eee;
    padding: 8px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.refresh-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    padding: 20px 30px;
    background: #fafafa;
    color: var(--text-light);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

td {
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.slot-badge {
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.status-badge.confirmed {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
}

.status-badge.pending {
    background: rgba(255, 171, 0, 0.1);
    color: #ffab00;
}

.logout-btn {
    background: #ff4757 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
    }

    nav.active {
        transform: translateY(0);
        visibility: visible;
    }

    nav a {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    .book-btn {
        width: 200px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .content-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .table-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


.hero-v2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 550px;
    background: #f4f0ed;
    position: relative;
    overflow: hidden;
}

.hero-left {
    padding: 80px 5% 40px 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    color: var(--primary-green);
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.hero-title-v2 {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.hero-title-v2 span {
    color: var(--primary-orange);
    display: block;
    font-size: 4.5rem;
}

.hero-script {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-green);
    font-size: 32px;
    margin-bottom: 30px;
}

.hero-dest {
    font-size: 20px;
    color: #333;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-orange);
    padding-left: 15px;
}

.hero-dest b {
    color: var(--primary-orange);
}

.hero-dest span {
    color: var(--primary-green);
    font-weight: bold;
}

.hero-cta-v2 {
    background: linear-gradient(90deg, #ff9d00, #ff7a00);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-cta-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.4);
}

.hero-right-v2 {
    position: relative;
    /* background: url('study_hall_hero.png') center/cover no-repeat; */
    background: url('hero.jpg') center/cover no-repeat;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Feature Bar */
.feature-bar {
    background: white;
    padding: 25px 40px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid #ff88005c;
}

.f-item:last-child {
    border: none;
}

.f-icon {
    font-size: 30px;
}

.f-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

/* Banner Split */
.banner-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-top: 80px;
    padding-bottom: 60px;
}

.visit-info h2 {
    color: var(--primary-orange);
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.visit-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.visit-card .v-icon {
    font-size: 24px;
    color: var(--primary-green);
}

.v-details h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.v-details p {
    color: #666;
    font-size: 16px;
}

/* Redesigned Book Now Card */
.book-now-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
}

.book-advance {
    background: var(--primary-orange);
    color: white;
    padding: 50px 30px 40px;
    text-align: center;
    position: relative;
    border-radius: 0 40px 0 0;
    border: 6px solid white;
    border-bottom: none;
    clip-path: polygon(0 35%, 15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.limited-badge {
    background: var(--primary-green);
    color: white;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.book-now-text {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.in-advance-wrap {
    display: inline-block;
    background: white;
    padding: 8px 35px;
    border-radius: 8px;
    transform: skewX(-15deg);
    margin-top: 5px;
}

.in-advance-text {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    transform: skewX(15deg);
    display: block;
}

.success-strip-v2 {
    background: var(--primary-green);
    color: white;
    padding: 20px 30px;
    border-radius: 0 0 40px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin-top: -5px;
    /* Slight overlap to prevent seam */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0 40%);
}

.s-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.s-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.s-icon {
    font-size: 20px;
}

@media (max-width: 991px) {
    .book-now-card {
        margin: 40px auto 0;
    }

    .hero-left {
        padding: 80px 5% 40px 10%;
    }
}

@media (max-width: 991px) {
    .hero-v2 {
        grid-template-columns: 1fr;
    }

    .hero-right-v2 {
        display: none;
    }

    .feature-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
    }

    .banner-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .feature-bar {
        grid-template-columns: 1fr;
    }

    .hero-title-v2 {
        font-size: 3.5rem;
    }

    .hero-title-v2 span {
        font-size: 3rem;
    }
}

/* Fixed Mobile Book Now Button */
.fixed-booking-btn-container {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 12px 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}

@media (max-width: 991px) {
    .fixed-booking-btn-container {
        display: block;
    }

    body {
        padding-bottom: 75px !important;
    }
}

.fixed-booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #ff9d00, #ff7a00);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.fixed-booking-btn span {
    font-size: 20px;
}