/* Aayusman Care Stylesheet */

/* --- 1. Global Variables & Design Tokens --- */
:root {
    --primary-blue: #0a74b9;
    --primary-blue-dark: #075990;
    --primary-blue-light: #e6f1f8;
    --accent-orange: #f37421;
    --accent-orange-dark: #d15b11;
    --accent-red: #db2428;
    --accent-red-light: #fdeeee;
    --success-green: #25d366;
    --dark: #22252a;
    --dark-light: #4b5563;
    --light: #f4f8fa;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 10px 30px rgba(10, 116, 185, 0.08);
    --shadow-lg: 0 20px 40px rgba(10, 116, 185, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Poppins', sans-serif;
}

/* --- 2. Base Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- 3. Layout Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light);
}

.text-center {
    text-align: center;
}

.margin-top-md {
    margin-top: 20px;
}

.text-accent-red { color: var(--accent-red); }
.text-accent-orange { color: var(--accent-orange); }
.text-primary-blue { color: var(--primary-blue); }
.text-success-green { color: var(--success-green); }

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-blue));
    border-radius: 2px;
}

.section-title p {
    color: var(--dark-light);
    margin-top: 15px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    box-shadow: 0 5px 15px rgba(10, 116, 185, 0.3);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--accent-orange-dark);
    box-shadow: 0 5px 15px rgba(243, 116, 33, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

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

.w-100 { width: 100%; }

/* --- 4. Top Info Bar & Header --- */
.top-bar {
    background-color: var(--primary-blue-light);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-contact i {
    margin-right: 5px;
}

.top-contact a:hover {
    color: var(--primary-blue-dark);
}

.separator {
    color: var(--border);
}

.top-socials {
    display: flex;
    gap: 15px;
}

.top-socials a {
    color: var(--dark-light);
    font-size: 0.95rem;
}

.top-socials a:hover {
    color: var(--primary-blue);
}

.top-socials .whatsapp-btn:hover {
    color: var(--success-green);
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
}

.brand-accent {
    color: var(--accent-orange);
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--dark-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu ul {
    display: flex;
    gap: 20px;
}

.nav-menu ul a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    padding: 5px 0;
    position: relative;
}

.nav-menu ul a:hover, .nav-menu ul a.active {
    color: var(--primary-blue);
}

.nav-menu ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: var(--transition);
}

.nav-menu ul a:hover::after, .nav-menu ul a.active::after {
    width: 100%;
}

.nav-book-btn {
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 10px;
    transition: var(--transition);
}

/* --- 5. Mobile Navigation Drawer --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: var(--white);
    z-index: 1002;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.drawer-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.drawer-close {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--dark-light);
    cursor: pointer;
}

.drawer-menu {
    margin-top: 30px;
    flex-grow: 1;
}

.drawer-menu li {
    margin-bottom: 15px;
}

.drawer-menu a {
    font-size: 1.05rem;
    font-weight: 500;
    display: block;
    padding: 5px 0;
}

.drawer-menu a.active, .drawer-menu a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.drawer-cta {
    margin-top: 30px;
}

.drawer-footer {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--dark-light);
}

.drawer-footer p {
    margin-bottom: 5px;
}

/* --- 6. Hero & Parallax Section --- */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-blue-light);
    overflow: hidden;
}

/* Parallax background using background attachment */
.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(230, 241, 248, 0.85), rgba(230, 241, 248, 0.95)), url('../images/logo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue-dark);
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent-orange);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--dark-light);
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 7. Features Grid & Info Cards --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card.diagnostic-card:hover { border-top-color: var(--primary-blue); }
.feature-card.doctor-card:hover { border-top-color: var(--accent-orange); }
.feature-card.equipment-card:hover { border-top-color: var(--accent-red); }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.diagnostic-card .feature-icon { background-color: var(--primary-blue-light); color: var(--primary-blue); }
.doctor-card .feature-icon { background-color: #fdf2e9; color: var(--accent-orange); }
.equipment-card .feature-icon { background-color: var(--accent-red-light); color: var(--accent-red); }

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-blue-dark);
}

.feature-card p {
    color: var(--dark-light);
    margin-bottom: 20px;
}

/* --- 8. Pathology Packages Page & Grid --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-poster {
    height: 200px;
    position: relative;
    background-color: var(--primary-blue-light);
}

.package-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.package-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 10px;
}

.package-desc {
    font-size: 0.9rem;
    color: var(--dark-light);
    margin-bottom: 15px;
}

.package-tests-list {
    margin-bottom: 20px;
    background-color: var(--light);
    padding: 15px;
    border-radius: 8px;
}

.package-tests-list h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-light);
    margin-bottom: 8px;
}

.package-tests-list ul {
    font-size: 0.85rem;
}

.package-tests-list li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-tests-list i {
    color: var(--primary-blue);
}

.package-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.package-mrp {
    text-decoration: line-through;
    color: var(--dark-light);
    font-size: 0.95rem;
}

.package-offer {
    color: var(--accent-red);
    font-size: 1.5rem;
    font-weight: 700;
}

/* --- 9. About Page Styles --- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
}

.about-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--dark-light);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-item i {
    font-size: 1.4rem;
    color: var(--accent-orange);
}

.highlight-item span {
    font-weight: 600;
}

/* --- 10. Services Area Page & Branch Badges --- */
.coverage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.coverage-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.coverage-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.coverage-card i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.coverage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.coverage-card p {
    font-size: 0.9rem;
    color: var(--dark-light);
}

/* --- 11. Gallery Page Layout & Lightbox --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 116, 185, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 1.8rem;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 2.2rem;
    cursor: pointer;
    background: transparent;
    border: none;
}

/* --- 12. Appointment Booking (book.php) --- */
.booking-layout {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 40px;
}

@media(max-width: 768px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
}

.booking-form-panel {
    background-color: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

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

@media(max-width: 576px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 116, 185, 0.1);
}

/* Booking Checklist Cart selector */
.checklist-box {
    border: 1px solid var(--border);
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
}

.checklist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex-grow: 1;
}

.checklist-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
}

.checklist-price-info {
    text-align: right;
}

.checklist-mrp {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--dark-light);
    margin-right: 5px;
}

.checklist-offer {
    font-weight: 700;
    color: var(--accent-red);
}

/* Floating Cart / Running Total Panel */
.booking-cart-panel {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cart-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    border-bottom: 2px solid var(--primary-blue-light);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.cart-items-list {
    margin-bottom: 20px;
    max-height: 250px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px dotted var(--border);
}

.cart-item-remove {
    color: var(--accent-red);
    cursor: pointer;
    margin-left: 8px;
}

.cart-total-section {
    border-top: 2px solid var(--border);
    padding-top: 15px;
    margin-bottom: 25px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
}

.cart-total-price {
    color: var(--accent-orange-dark);
}

/* Receipt Screen */
.receipt-box {
    max-width: 600px;
    margin: 40px auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--success-green);
}

.receipt-header {
    text-align: center;
    margin-bottom: 30px;
}

.receipt-icon {
    font-size: 3rem;
    color: var(--success-green);
    margin-bottom: 15px;
}

.receipt-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.receipt-table th, .receipt-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

/* --- 13. Policy & Legal Content --- */
.policy-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.policy-box h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary-blue-dark);
}

.policy-box p, .policy-box li {
    color: var(--dark-light);
    margin-bottom: 15px;
}

.policy-box ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

/* --- 14. Floating Elements --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--success-green);
    color: var(--white);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp .tooltip-text {
    position: absolute;
    right: 75px;
    background-color: var(--dark);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.floating-whatsapp:hover .tooltip-text {
    opacity: 1;
}

/* --- 15. Footer Section Styling --- */
.footer {
    background-color: #0b1a2d;
    color: var(--white);
    padding: 70px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media(max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-orange);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #a0aec0;
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.brand-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.brand-col .footer-logo img {
    height: 40px;
}

.brand-desc {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 1rem;
}

.footer-socials a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.areas-list li {
    color: #a0aec0;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.areas-list i {
    margin-right: 5px;
}

.contact-col p {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.contact-col a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    background-color: #06101c;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #a0aec0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media(max-width: 576px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.credits-text a {
    color: var(--white);
    font-weight: 600;
}

.credits-text a:hover {
    color: var(--accent-orange);
}

/* --- 16. Admin Panel Styling --- */
.admin-login-body {
    background-color: var(--light);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-card {
    background-color: var(--white);
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 40px 30px;
    border-top: 5px solid var(--primary-blue);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.admin-login-header img {
    height: 60px;
    margin: 0 auto 15px auto;
}

.admin-login-header h2 {
    color: var(--primary-blue-dark);
}

/* Admin Dashboard Layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background-color: #0b1a2d;
    color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    flex-shrink: 0;
}

.admin-sidebar-header {
    padding: 0 25px;
    margin-bottom: 40px;
}

.admin-sidebar-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.admin-sidebar-header h2 span {
    color: var(--accent-orange);
}

.admin-sidebar-menu li {
    margin-bottom: 5px;
}

.admin-sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: #a0aec0;
    font-weight: 500;
    font-size: 0.95rem;
}

.admin-sidebar-menu a:hover, .admin-sidebar-menu a.active {
    color: var(--white);
    background-color: rgba(255,255,255,0.05);
    border-left: 4px solid var(--accent-orange);
}

.admin-content-area {
    flex-grow: 1;
    background-color: var(--light);
    padding: 40px;
    overflow-y: auto;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header-row h1 {
    font-size: 1.8rem;
    color: var(--primary-blue-dark);
    font-weight: 700;
}

/* Dashboard Cards widget */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
}

.stat-info h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--dark-light);
    margin-bottom: 5px;
}

.stat-info .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: var(--primary-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.stat-card:nth-child(2) .stat-icon {
    background-color: #fdf2e9;
    color: var(--accent-orange);
}

.stat-card:nth-child(3) .stat-icon {
    background-color: var(--accent-red-light);
    color: var(--accent-red);
}

.stat-card:nth-child(4) .stat-icon {
    background-color: #e6f9ed;
    color: var(--success-green);
}

/* Admin Tables */
.admin-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 30px;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.admin-table th, .admin-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    background-color: var(--light);
    color: var(--primary-blue-dark);
    font-weight: 600;
}

.admin-table tr:hover {
    background-color: #f9fbfd;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.status-pending { background-color: #fef3c7; color: #d97706; }
.status-contacted { background-color: var(--primary-blue-light); color: var(--primary-blue); }
.status-completed { background-color: #d1fae5; color: #059669; }
.status-cancelled { background-color: #fee2e2; color: #dc2626; }

/* Booking Details Modal styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: 8px;
    width: 90%;
    max-width: 650px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--dark-light);
    cursor: pointer;
}

/* responsive controls */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-nav-toggle { display: flex; }
    .hero-content h1 { font-size: 2.2rem; }
    .about-split { grid-template-columns: 1fr; }
    .admin-wrapper { flex-direction: column; }
    .admin-sidebar { width: 100%; padding: 20px 0; }
    .admin-sidebar-header { margin-bottom: 20px; }
    .admin-content-area { padding: 20px; }
}
