:root {
    --primary-color: #00bcd4;
    /* Cyan/Blue like 'Dust Busters' usually implies fresh */
    --secondary-color: #2c3e50;
    /* Dark blue/gray for text */
    --accent-color: #f1c40f;
    /* Yellow for highlights */
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --text-color: #333;
    --font-main: 'Inter', sans-serif;
    --max-width: 1200px;
    --grey: #f4f4f4;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9em;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 80px;
    width: auto;
    margin-right: 15px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary-color);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.btn-book {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-book:hover {
    filter: brightness(0.9);
}

/* Mobile Menu Toggle (Hidden by default) */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Add JS toggle later */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Footer Styles */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9em;
}

/* ================================
   SECTIONS & LAYOUTS
================================ */
.section-padding {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -20px auto 40px;
    color: #666;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ================================
   HERO SECTION
================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a3a5c 0%, #0d1f3c 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.hero .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #0097a7;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ================================
   PAGE HEADERS
================================ */
.page-header {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d1f3c 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ================================
   CARDS
================================ */
.service-card,
.room-card,
.promise-card,
.feature-box,
.pricing-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.room-card:hover,
.promise-card:hover,
.feature-box:hover,
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card i,
.room-card i,
.promise-card i,
.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h3,
.room-card h3,
.promise-card h3,
.feature-box h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

/* ================================
   PRICING CARDS
================================ */
.pricing-category {
    margin-bottom: 50px;
}

.pricing-category h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.pricing-category h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    position: relative;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    overflow: hidden;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.pricing-card .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.pricing-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ================================
   FEATURES SECTION
================================ */
.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item h4 {
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
}

/* ================================
   SERVICE AREAS
================================ */
.area-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.area-list li {
    background: var(--light-bg);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
}

/* ================================
   CTA SECTION
================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0097a7 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

/* ================================
   CALLBACK / FORMS
================================ */
.callback-section {
    background: var(--light-bg);
}

.callback-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.callback-form-wrapper h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.form-style .form-group {
    margin-bottom: 20px;
}

.form-style label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.required-asterisk {
    color: #ff0000;
    margin-left: 3px;
    font-weight: bold;
}

.form-style input,
.form-style select,
.form-style textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-style input:focus,
.form-style select:focus,
.form-style textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-style .row {
    display: flex;
    gap: 15px;
}

.form-style .row input {
    flex: 1;
}

.contact-details {
    padding: 30px;
}

.contact-details h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.phone-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hours-box {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
}

.hours-box h4 {
    margin-bottom: 10px;
}

/* ================================
   ABOUT PAGE
================================ */
.about-story {
    max-width: 800px;
    margin: 0 auto;
}

.about-story h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-story h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-story p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.expert-list {
    max-width: 400px;
    margin: 0 auto;
}

.expert-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.expert-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Experts Section */
.experts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .experts-grid {
        grid-template-columns: 1fr;
    }

    .experts-image {
        margin-bottom: 20px;
    }
}

.experts-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .mission-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-image {
        margin-bottom: 20px;
    }
}

.mission-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mission-content .section-title.text-left {
    text-align: left;
    margin-bottom: 25px;
}

.mission-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.mission-highlights {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.highlight-item span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Beliefs Section */
.beliefs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

@media (max-width: 992px) {
    .beliefs-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .beliefs-grid {
        grid-template-columns: 1fr;
    }

    .beliefs-image {
        order: -1;
        margin-bottom: 20px;
    }
}

.beliefs-content .section-title.text-left {
    text-align: left;
    margin-bottom: 25px;
}

.beliefs-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.beliefs-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.beliefs-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value-item:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #f0f0f0;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0097a7 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

.value-icon i {
    color: white;
    font-size: 1.5rem;
}

.value-text h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.value-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ================================
   COMMERCIAL PAGE
================================ */
.service-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.service-list li {
    padding: 12px 0;
    font-size: 1.05rem;
}

.service-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.commercial-price-box {
    text-align: center;
    background: var(--grey);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.price-highlight {
    margin-bottom: 20px;
}

.price-highlight .label {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
}

.price-highlight .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.commercial-price-box p {
    margin-bottom: 25px;
    color: #666;
}

/* ================================
   BOOKING PAGE
================================ */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 992px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
}

.booking-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.booking-form-container h2 {
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 600px) {
    .extras-grid {
        grid-template-columns: 1fr;
    }
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 15px;
    background: var(--light-bg);
    border-radius: 5px;
    transition: background 0.3s;
}

.checkbox-label:hover {
    background: #e8f4f8;
}

.checkbox-label input {
    width: auto;
    margin-right: 10px;
}

.slot-info {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 0.85rem;
}

.slot-message {
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.slot-message.info {
    background: #e3f2fd;
    color: #1976d2;
}

.slot-message.success {
    background: #e8f5e9;
    color: #388e3c;
}

/* Slot Counter Styles */
.slot-counter {
    margin-top: 15px;
}

.counter-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4edda 100%);
    border-radius: 10px;
    border: 1px solid #c3e6cb;
}

.counter-box i {
    font-size: 1.5rem;
    color: #27ae60;
}

.counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    line-height: 1;
}

.counter-text {
    font-size: 0.95rem;
    color: #555;
}

.counter-box.counter-available {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-color: #a5d6a7;
}

.counter-box.counter-available i,
.counter-box.counter-available .counter-number {
    color: #27ae60;
}

.counter-box.counter-warning {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-color: #ffe082;
}

.counter-box.counter-warning i,
.counter-box.counter-warning .counter-number {
    color: #f39c12;
}

.counter-box.counter-low {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-color: #ef9a9a;
}

.counter-box.counter-low i,
.counter-box.counter-low .counter-number {
    color: #e74c3c;
}

.counter-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
}

.counter-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.fully-booked-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #ef5350;
    border-radius: 10px;
    margin-top: 15px;
    color: #c62828;
}

.fully-booked-message i {
    font-size: 1.8rem;
    color: #e53935;
}

.fully-booked-message span {
    font-weight: 500;
    line-height: 1.4;
}

.slot-message.error {
    background: #ffebee;
    color: #d32f2f;
}

.price-summary {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.price-summary h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.price-breakdown .price-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.price-breakdown .price-line.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    padding-top: 15px;
}

.booking-sidebar .sidebar-box {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.booking-sidebar .sidebar-box h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.booking-sidebar .sidebar-box ul li {
    padding: 8px 0;
}

.booking-sidebar .sidebar-box ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.booking-sidebar .contact-box {
    background: linear-gradient(135deg, var(--primary-color), #0097a7);
    color: var(--white);
}

.booking-sidebar .contact-box h4 {
    color: var(--white);
}

.booking-sidebar .contact-box .phone-large {
    color: var(--white);
}

.booking-success {
    text-align: center;
    padding: 40px;
}

.booking-success i {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.booking-success h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.booking-success p {
    margin-bottom: 10px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .booking-form-container {
        padding: 25px;
    }

    .service-list-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid,
    .about-story-grid,
    .experts-grid,
    .commercial-services-grid {
        grid-template-columns: 1fr;
    }

    .experts-image {
        order: -1;
    }
}

/* ================================
   IMAGE STYLING
================================ */

/* Hero Background Image Support */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.85) 0%, rgba(13, 31, 60, 0.9) 100%);
}

/* Page Header Background Images */
.page-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.8) 0%, rgba(13, 31, 60, 0.9) 100%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Introduction Section Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Service Card Images */
.service-image {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Room Card Images */
.room-image {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.room-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

/* About Story Grid */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-story-content h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-story-content h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-story-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-story-image img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Experts Grid */
.experts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.experts-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.experts-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.experts-content .expert-list {
    max-width: 100%;
}

/* Commercial Services Grid */
.commercial-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.commercial-services-content .section-title {
    text-align: left;
    margin-bottom: 15px;
}

.commercial-services-content .section-subtitle {
    text-align: left;
    margin: 0 0 25px 0;
}

.commercial-services-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Booking Sidebar Image */
.sidebar-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ================================
   ADMIN STYLES
================================ */

/* Admin Body */
.admin-body {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d1f3c 100%);
    min-height: 100vh;
}

/* Admin Login */
.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.admin-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.admin-login-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.admin-login-header h1 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.admin-login-header p {
    color: #666;
    font-size: 0.9rem;
}

.admin-login-form .form-group {
    margin-bottom: 20px;
}

.admin-login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.admin-login-form label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.admin-login-form input {
    width: 100%;
    padding: 14px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.admin-login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.admin-login-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.admin-login-footer a {
    color: var(--primary-color);
    font-weight: 500;
}

.admin-login-footer a:hover {
    text-decoration: underline;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 1.2rem;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

/* Admin Dashboard Layout */
.admin-container {
    display: flex;
    min-height: 100vh;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 260px;
    background: #1a2a3a;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-header h2 i {
    color: var(--primary-color);
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-left: 3px solid var(--primary-color);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Admin Main Content */
.admin-main {
    flex: 1;
    background: #f5f7fa;
    padding: 30px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h1 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-header h1 i {
    color: var(--primary-color);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-tabs a {
    padding: 10px 20px;
    background: var(--white);
    border-radius: 8px;
    font-weight: 500;
    color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tabs a:hover {
    background: #e8f4f8;
}

.filter-tabs a.active {
    background: var(--primary-color);
    color: var(--white);
}

.filter-tabs .badge {
    background: rgba(0, 0, 0, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.filter-tabs a.active .badge {
    background: rgba(255, 255, 255, 0.2);
}

.badge-pending {
    background: #fff3cd !important;
    color: #856404;
}

.badge-approved {
    background: #d4edda !important;
    color: #155724;
}

.badge-rejected {
    background: #f8d7da !important;
    color: #721c24;
}

/* Table Container */
.table-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: #f8f9fa;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e9ecef;
}

.admin-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.admin-table tr:hover {
    background: #fafbfc;
}

.admin-table a {
    color: var(--primary-color);
}

.admin-table small {
    color: #888;
    display: block;
    margin-top: 3px;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Action Buttons */
.actions {
    white-space: nowrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    margin-right: 5px;
    transition: all 0.3s;
}

.btn-approve {
    background: #e8f5e9;
    color: #2e7d32;
}

.btn-approve:hover {
    background: #2e7d32;
    color: white;
}

.btn-reject {
    background: #ffebee;
    color: #c62828;
}

.btn-reject:hover {
    background: #c62828;
    color: white;
}

.btn-reset {
    background: #fff3e0;
    color: #ef6c00;
}

.btn-reset:hover {
    background: #ef6c00;
    color: white;
}

.btn-delete {
    background: #fce4ec;
    color: #c2185b;
}

.btn-delete:hover {
    background: #c2185b;
    color: white;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state p {
    font-size: 1.1rem;
}

/* Responsive Admin */
@media (max-width: 992px) {
    .admin-container {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
    }

    .sidebar-nav {
        display: flex;
        padding: 0;
        overflow-x: auto;
    }

    .sidebar-nav a {
        padding: 15px 20px;
        white-space: nowrap;
    }

    .sidebar-footer {
        display: none;
    }

    .admin-table {
        font-size: 0.9rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 12px 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   ENHANCED ADMIN STYLES
================================ */

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
}

.stat-card.stat-total {
    border-left-color: var(--primary-color);
}

.stat-card.stat-pending {
    border-left-color: #f39c12;
}

.stat-card.stat-approved {
    border-left-color: #27ae60;
}

.stat-card.stat-rejected {
    border-left-color: #e74c3c;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-total .stat-icon {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    color: white;
}

.stat-pending .stat-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.stat-approved .stat-icon {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

.stat-rejected .stat-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}

/* Appointments List */
.appointments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.appointment-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-left: 5px solid #ddd;
}

.appointment-card.status-border-pending {
    border-left-color: #f39c12;
}

.appointment-card.status-border-approved {
    border-left-color: #27ae60;
}

.appointment-card.status-border-rejected {
    border-left-color: #e74c3c;
}

.appointment-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.appointment-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0097a7 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    min-width: 80px;
}

.appointment-date-badge .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.appointment-date-badge .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.appointment-date-badge .year {
    font-size: 0.75rem;
    opacity: 0.8;
}

.appointment-time {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.appointment-time i {
    color: var(--primary-color);
    margin-right: 8px;
}

.appointment-header .status-badge {
    margin-left: auto;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.appointment-body {
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .appointment-body {
        grid-template-columns: 1fr;
    }
}

.appointment-customer h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.appointment-customer h3 i {
    color: var(--primary-color);
}

.customer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.customer-contact a {
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.customer-contact a:hover {
    color: var(--primary-color);
}

.customer-contact i {
    width: 20px;
    color: var(--primary-color);
}

.customer-address {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.customer-address i {
    color: var(--primary-color);
    margin-top: 3px;
}

.appointment-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 576px) {
    .appointment-details {
        grid-template-columns: 1fr;
    }
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-item.full-width {
    grid-column: 1 / -1;
}

.detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    font-weight: 600;
}

.detail-value {
    font-size: 1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-value i {
    color: var(--primary-color);
}

.detail-value.service-type {
    font-weight: 600;
    color: var(--primary-color);
}

.extras-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.extra-tag {
    background: #e8f4f8;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.detail-value.notes {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    font-style: italic;
    color: #555;
    border-left: 3px solid var(--primary-color);
}

.appointment-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
}

.appointment-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.appointment-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-action-lg.btn-approve {
    background: #e8f5e9;
    color: #2e7d32;
}

.btn-action-lg.btn-approve:hover {
    background: #2e7d32;
    color: white;
}

.btn-action-lg.btn-reject {
    background: #ffebee;
    color: #c62828;
}

.btn-action-lg.btn-reject:hover {
    background: #c62828;
    color: white;
}

.btn-action-lg.btn-reset {
    background: #fff3e0;
    color: #ef6c00;
}

.btn-action-lg.btn-reset:hover {
    background: #ef6c00;
    color: white;
}

.btn-action-lg.btn-delete {
    background: #fce4ec;
    color: #c2185b;
    padding: 10px 15px;
}

.btn-action-lg.btn-delete:hover {
    background: #c2185b;
    color: white;
}

.appointment-meta {
    padding: 10px 25px;
    background: #fafafa;
    border-top: 1px solid #eee;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.appointment-meta small {
    display: flex;
    align-items: center;
    gap: 8px;
}

.appointment-id {
    margin-left: 20px;
    font-family: monospace;
    background: #eee;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Settings Container */
.settings-container {
    max-width: 600px;
}

.settings-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.settings-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.settings-card h3 i {
    color: var(--primary-color);
}

.settings-form .form-group {
    margin-bottom: 22px;
}

.settings-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.settings-form label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.settings-form input {
    width: 100%;
    padding: 14px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.settings-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.settings-form small {
    display: block;
    margin-top: 6px;
    color: #888;
    font-size: 0.85rem;
}

/* Forgot Password Link */
.forgot-link {
    text-align: right;
    margin-top: -10px !important;
    margin-bottom: 20px !important;
}

.forgot-link a {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.forgot-link a:hover {
    text-decoration: underline;
}

/* Demo Reset Box */
.demo-reset-box {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
}

.demo-reset-box p {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Help Text */
.help-text {
    text-align: center;
    margin-top: 20px;
    color: #888;
}

.help-text i {
    color: var(--primary-color);
}

/* Empty State Enhancement */
.empty-state h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* ================================
   USER-FRIENDLY APPOINTMENT STYLES
================================ */

/* Card Hover Effects */
.appointment-card {
    transition: all 0.3s ease;
    position: relative;
}

.appointment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.appointment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #0097a7 100%);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.appointment-card:hover::before {
    opacity: 1;
}

/* Status-specific card styling */
.appointment-card.status-border-pending {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {

    0%,
    100% {
        border-left-color: #f39c12;
    }

    50% {
        border-left-color: #e67e22;
    }
}

/* Enhanced Date Badge */
.appointment-date-badge {
    position: relative;
    overflow: hidden;
}

.appointment-date-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Enhanced Status Badges */
.status-badge {
    transition: all 0.3s ease;
    cursor: default;
}

.status-badge:hover {
    transform: scale(1.05);
}

.status-badge.status-pending {
    animation: glow-pending 2s ease-in-out infinite;
}

@keyframes glow-pending {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(243, 156, 18, 0.3);
    }

    50% {
        box-shadow: 0 0 15px rgba(243, 156, 18, 0.6);
    }
}

/* Customer Info Enhancement */
.appointment-customer {
    position: relative;
    padding-right: 20px;
}

.appointment-customer::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

@media (max-width: 768px) {
    .appointment-customer::after {
        display: none;
    }
}

.customer-contact a {
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.customer-contact a:hover {
    background: #e8f4f8;
    transform: translateX(5px);
}

/* Action Buttons Enhancement */
.btn-action-lg {
    position: relative;
    overflow: hidden;
}

.btn-action-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s;
}

.btn-action-lg:hover::before {
    left: 100%;
}

.btn-action-lg:active {
    transform: scale(0.95);
}

/* Tooltip for Actions */
.btn-action-lg[title] {
    position: relative;
}

/* Price Highlight */
.price-value {
    position: relative;
    display: inline-block;
}

.price-value::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

/* Appointment Meta Enhancement */
.appointment-meta {
    transition: background 0.3s;
}

.appointment-card:hover .appointment-meta {
    background: #f0f0f0;
}

.appointment-id {
    transition: all 0.2s;
    cursor: pointer;
}

.appointment-id:hover {
    background: var(--primary-color);
    color: white;
}

/* Service Type Badge */
.detail-value.service-type {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4edda 100%);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
}

/* Extra Tags Animation */
.extra-tag {
    transition: all 0.2s ease;
    cursor: default;
}

.extra-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 188, 212, 0.3);
}

/* Notes Section */
.detail-value.notes {
    position: relative;
    overflow: hidden;
}

.detail-value.notes::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 5px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* Stats Cards Enhancement */
.stat-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Empty State Animation */
.empty-state {
    animation: fadeIn 0.5s ease;
}

.empty-state i {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filter Tabs Enhancement */
.filter-tabs a {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.filter-tabs a:hover {
    transform: translateY(-2px);
}

.filter-tabs a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.filter-tabs a:hover::after {
    width: 80%;
}

.filter-tabs a.active::after {
    width: 100%;
    background: white;
}

/* Scrollbar Styling for Admin */
.admin-main::-webkit-scrollbar {
    width: 8px;
}

.admin-main::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.admin-main::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.admin-main::-webkit-scrollbar-thumb:hover {
    background: #0097a7;
}

/* Mobile Appointment Cards */
@media (max-width: 576px) {
    .appointment-card {
        margin: 0 -15px;
        border-radius: 0;
        border-left-width: 4px;
    }

    .appointment-header {
        padding: 15px;
    }

    .appointment-date-badge {
        padding: 8px 15px;
    }

    .appointment-date-badge .day {
        font-size: 1.5rem;
    }

    .appointment-body {
        padding: 15px;
    }

    .appointment-footer {
        padding: 15px;
        flex-direction: column;
        align-items: stretch;
    }

    .appointment-actions {
        justify-content: center;
        margin-top: 10px;
    }

    .btn-action-lg {
        flex: 1;
        justify-content: center;
        padding: 12px 15px;
    }

    .appointment-meta {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .appointment-id {
        margin-left: 0;
    }
}

/* Print Styles for Appointments */
@media print {

    .admin-sidebar,
    .appointment-actions,
    .filter-tabs,
    .stats-grid,
    .admin-header .btn {
        display: none !important;
    }

    .admin-main {
        padding: 0;
    }

    .appointment-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-bottom: 20px;
    }
}

/* =======================================================
   MISSION & BELIEFS SECTION (Ensuring Verification)
======================================================= */
/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .mission-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-image {
        margin-bottom: 20px;
    }
}

.mission-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mission-content .section-title.text-left {
    text-align: left;
    margin-bottom: 25px;
}

.mission-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.mission-highlights {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.highlight-item span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Beliefs Section */
.beliefs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

@media (max-width: 992px) {
    .beliefs-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .beliefs-grid {
        grid-template-columns: 1fr;
    }

    .beliefs-image {
        order: -1;
        margin-bottom: 20px;
    }
}

.beliefs-content .section-title.text-left {
    text-align: left;
    margin-bottom: 25px;
}

.beliefs-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.beliefs-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.beliefs-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value-item:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #f0f0f0;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0097a7 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.2);
}

.value-icon i {
    color: white;
    font-size: 1.5rem;
}

.value-text h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.value-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ================================
   ANIMATIONS
================================ */

/* Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Grid Delays */
.reveal-grid .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal-grid.active .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.reveal-grid.active .reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-grid.active .reveal-item:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-grid.active .reveal-item:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-grid.active .reveal-item:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-grid.active .reveal-item:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-grid.active .reveal-item:nth-child(6) {
    transition-delay: 0.6s;
}

/* Pulse Animation for CTA */
@keyframes pulse-soft {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 188, 212, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0);
    }
}

.btn-pulse {
    animation: pulse-soft 2s infinite;
}