/* ==================================================
   REAL MENTOR TOURISM — FINAL STYLE v21.0 (PRODUCTION)
   ✅ All CSS in one file — NO inline styles needed
   ✅ Works for Frontend + Admin
   ✅ Compact admin layout
   ✅ Fully responsive
   ✅ Cache-busted via ?v=21.0
   ✅ Nested dropdown support
   ================================================== */

:root {
    --primary: #0A2463;
    --secondary: #1D3B8E;
    --accent: #FF6B35;
    --light: #F5F7FA;
    --dark: #081A46;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --success: #28a745;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 20px; /* Match navbar height */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5em;
}

p, small {
    color: var(--gray);
    margin-bottom: 1em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==================================================
   LAYOUT — FRONTEND PAGES (Homepage)
   ================================================== */

body.homepage .main-content {
    margin-left: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
}

/* ==================================================
   LAYOUT — ADMIN PAGES (Compact)
   ================================================== */

body.admin-page .main-content,
body:not(.homepage) .main-content {
    margin-left: 230px !important;
    padding: 20px !important;
    width: calc(100% - 230px) !important;
    background: var(--light);
    min-height: 100vh;
}

@media (max-width: 991px) {
    body.admin-page .main-content,
    body:not(.homepage) .main-content {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 15px !important;
    }
}

/* ==================================================
   SIDEBAR — ADMIN PANEL (Compact)
   ================================================== */

.sidebar {
    width: 230px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--dark);
    color: white;
    z-index: 1000;
    padding-top: 15px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.sidebar a.nav-link,
aside.sidebar a.nav-link,
.sidebar .nav-link {
    color: #adb5bd !important;
    text-decoration: none;
    padding: 8px 15px !important;
    display: block;
    border-radius: 6px;
    margin: 2px 8px !important;
    transition: all 0.25s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.9rem;
}

.sidebar a.nav-link:hover,
.sidebar a.nav-link.active,
.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background: rgba(255,255,255,0.12) !important;
    color: white !important;
    transform: translateX(4px);
}

.sidebar .nav-link i {
    width: 20px;
    margin-right: 8px;
    font-size: 1rem;
}

.sidebar .nav-link.active {
    background: rgba(10, 36, 99, 0.85) !important;
    border-left: 4px solid var(--accent);
    color: white !important;
    font-weight: 600;
}

.sidebar .nav-link.text-danger {
    color: #f8d7da !important;
}

@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.show {
        transform: translateX(0);
    }
}

/* ==================================================
   NAVBAR & NAVIGATION (UPDATED FOR NESTED DROPDOWN)
   ================================================== */

.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 0.85rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: 70px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.navbar.scrolled {
    box-shadow: 0 2px 25px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 1);
}

.navbar-brand img {
    height: 45px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-item {
    position: relative;
}

/* Vertical Separators */
.navbar-nav .nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--light-gray), transparent);
    margin-left: 15px;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    margin: 0 0.85rem !important;
    padding: 0.6rem 0.5rem !important;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 85%;
}

/* ==================================================
   NESTED DROPDOWN MENU (CRITICAL FOR SUBCATEGORIES)
   ================================================== */

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 12px 0;
    min-width: 240px;
    background: white;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(10,36,99,0.05), transparent);
    color: var(--primary);
    border-left-color: var(--accent);
    padding-left: 25px;
}

.dropdown-header {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 5px;
}

.dropdown-divider {
    border-top: 1px solid var(--light-gray);
    margin: 8px 0;
}

/* Nested Submenu Styles */
.dropdown-menu .dropdown-submenu {
    position: relative;
}

.dropdown-menu .dropdown-submenu .dropdown-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
    min-width: 220px;
    margin-left: 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu .dropdown-submenu > a::after {
    content: "›";
    float: right;
    font-size: 1.2rem;
    margin-left: 10px;
    line-height: 1;
}

/* Desktop Hover for Main Dropdown */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* Mobile Navigation Adjustments */
@media (max-width: 991px) {
    .navbar-nav .nav-item:not(:last-child)::after {
        display: none;
    }
    
    .nav-link {
        margin: 0.5rem 0 !important;
        padding: 0.75rem 1rem !important;
    }
    
    .dropdown-menu {
        box-shadow: none;
        border: 1px solid var(--light-gray);
        margin-left: 15px;
    }
    
    .dropdown-menu .dropdown-submenu .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-left: 20px;
    }
    
    body {
        padding-top: 60px;
    }
}

/* ==================================================
   HERO SECTION
   ================================================== */

.hero-section {
    background: url('../../assets/images/hero-bg.jpg') center/cover no-repeat;
    height: 520px;
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0 !important;
}

@media (max-width: 767px) {
    .hero-section {
        height: 420px;
    }
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 26, 70, 0.4) 0%, rgba(8, 26, 70, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 1.5rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.65);
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: white !important;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto 1.75rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
    font-weight: 300;
    color: white !important;
    opacity: 0.95;
}

@media (max-width: 767px) {
    .hero-content {
        top: 52%;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .hero-content p {
        font-size: 1.05rem;
    }
}

/* ==================================================
   HERO SERVICE BUTTONS
   ================================================== */

.hero-service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    min-height: 110px;
    border-radius: 16px !important;
    background: rgba(255,255,255,0.15) !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    color: white !important;
    transition: all 0.35s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25) !important;
}

.hero-service-btn:hover {
    background: rgba(255,255,255,0.25) !important;
    transform: translateY(-4px);
    border-color: white !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
}

.hero-service-btn i {
    font-size: 2.1rem;
    margin-bottom: 8px;
    display: block;
}

.hero-service-btn .btn-text {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    display: block;
    margin-top: 4px;
}

@media (min-width: 576px) {
    .hero-service-btn { min-height: 125px; padding: 20px 15px; }
    .hero-service-btn i { font-size: 2.3rem; }
}
@media (min-width: 768px) {
    .hero-service-btn { min-height: 140px; padding: 22px 18px; }
    .hero-service-btn i { font-size: 2.5rem; }
    .hero-service-btn .btn-text { font-size: 1.05rem; }
}

/* ==================================================
   SECTIONS
   ================================================== */

/*.section {
    padding: 40px 0 !important;
}*/

.section-title {
    text-align: center;
    margin: 50px 0 35px !important;
    position: relative;
}

.section-title h2 {
    font-size: 2.4rem;
    color: var(--dark);
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    margin-top: 10px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 1.15rem;
}

@media (max-width: 767px) {
    .section {
        padding: 30px 0 !important;
    }
    .section-title {
        margin: 40px 0 30px !important;
    }
    .section-title h2 {
        font-size: 2.0rem;
    }
    .section-title p {
        font-size: 1.05rem;
    }
}

/* ==================================================
   CARDS
   ================================================== */

.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(8, 26, 70, 0.09);
    transition: all 0.35s ease;
    background: white;
    overflow: hidden;
    margin-bottom: 25px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(8, 26, 70, 0.18);
}

.card-body {
    padding: 28px;
}

.card-header {
    border-bottom: none;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    border-radius: 16px 16px 0 0 !important;
    padding: 22px 28px;
    font-weight: 600;
    font-size: 1.25rem;
}

/* ==================================================
   STAT CARDS
   ================================================== */

.stat-card,
.service-card,
.booking-card,
.tour-card,
.restaurant-card,
.hotel-card {
    background: white;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(8, 26, 70, 0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.06);
}

body.admin-page .stat-card {
    padding: 14px 10px !important;
    border-radius: 10px !important;
}

body.admin-page .stat-icon {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.6rem !important;
    margin: 0 auto 10px !important;
}

body.admin-page .stat-value {
    font-size: 1.4rem !important;
    margin: 4px 0 3px !important;
}

body.admin-page .stat-label {
    font-size: 0.8rem !important;
}

.stat-card:hover,
.service-card:hover,
.booking-card:hover,
.tour-card:hover,
.restaurant-card:hover,
.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(8, 26, 70, 0.15);
    border-color: rgba(10, 36, 99, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 2.8rem;
    color: white;
    box-shadow: 0 6px 16px rgba(10, 36, 99, 0.25);
}

.stat-value {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--dark);
    margin: 12px 0 8px;
    line-height: 1.2;
}

.stat-label {
    font-size: 1.05rem;
    color: var(--gray);
    font-weight: 500;
}

/* ==================================================
   BUTTONS
   ================================================== */

.btn {
    border-radius: 52px !important;
    padding: 0.82rem 1.65rem !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.28s !important;
    box-shadow: 0 5px 16px rgba(10, 36, 99, 0.22) !important;
    border: none !important;
    font-size: 1.02rem !important;
}

.btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 7px 20px rgba(10, 36, 99, 0.32) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #081a46, #152d7a) !important;
    color: white !important;
}

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

.btn-accent:hover {
    background: #e05a2a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35) !important;
}

.btn-outline-primary {
    border: 2.5px solid var(--primary) !important;
    color: var(--primary) !important;
    background: transparent !important;
}

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

.btn-light {
    background: var(--light) !important;
    color: var(--dark) !important;
    border: 2px solid var(--light) !important;
}

.btn-light:hover {
    background: #e6e9f0 !important;
    transform: translateY(-2px) !important;
}

/* ==================================================
   BADGES & TEXT
   ================================================== */

.badge {
    font-weight: 600 !important;
    padding: 0.45em 0.85em !important;
    border-radius: 8px !important;
    font-size: 0.92rem !important;
}

.status-badge,
.role-badge,
.document-badge {
    font-weight: 600;
    text-transform: capitalize;
}

.text-muted { color: var(--gray) !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-success { color: var(--success) !important; }
.text-info { color: var(--info) !important; }
.text-warning { color: var(--warning) !important; }
.text-danger { color: var(--danger) !important; }
.text-light { color: var(--light) !important; }
.text-dark { color: var(--dark) !important; }

.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-success { background-color: var(--success) !important; }
.bg-info { background-color: var(--info) !important; }
.bg-warning { background-color: var(--warning) !important; }
.bg-danger { background-color: var(--danger) !important; }
.bg-light { background-color: var(--light) !important; }
.bg-dark { background-color: var(--dark) !important; }

.border-primary { border-color: var(--primary) !important; }
.border-secondary { border-color: var(--secondary) !important; }
.border-success { border-color: var(--success) !important; }
.border-info { border-color: var(--info) !important; }
.border-warning { border-color: var(--warning) !important; }
.border-danger { border-color: var(--danger) !important; }
.border-light { border-color: var(--light) !important; }
.border-dark { border-color: var(--dark) !important; }

.rounded { border-radius: 0.35rem !important; }
.rounded-1 { border-radius: 0.25rem !important; }
.rounded-2 { border-radius: 0.5rem !important; }
.rounded-3 { border-radius: 0.75rem !important; }
.rounded-4 { border-radius: 1rem !important; }
.rounded-5 { border-radius: 1.25rem !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 50rem !important; }

/* ==================================================
   TABLES & LISTS
   ================================================== */

.table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(8, 26, 70, 0.08);
}

.table th,
.table td {
    vertical-align: middle;
    padding: 1.15rem 1.25rem;
    border-color: rgba(0,0,0,0.06) !important;
}

.table thead th {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 600;
    border: none !important;
}

.table-hover tbody tr:hover {
    background-color: rgba(10, 36, 99, 0.04) !important;
    transform: scale(1.003);
}

.list-group-item {
    border: 1px solid var(--light-gray);
    border-radius: 12px !important;
    margin-bottom: 8px;
    padding: 16px 20px;
    transition: all 0.25s ease;
}

.list-group-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
    border-color: var(--primary);
}

/* ==================================================
   FOOTER
   ================================================== */

.footer {
    background: linear-gradient(180deg, var(--dark), #061538);
    color: #adb5bd;
    padding: 50px 0 30px !important;
    margin-top: 0 !important;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 500;
}

.footer a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-logo img {
    height: 48px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer h5 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer p {
    color: #8a94a6;
    margin-bottom: 12px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.35);
}

.copyright {
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.95rem;
    color: #7a869d;
    text-align: center;
    margin-top: 25px;
}

/* ==================================================
   CTA SECTION
   ================================================== */

.section.bg-primary,
.section.cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    text-align: center;
    padding: 60px 0 35px !important;
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.section.bg-primary h2,
.section.bg-primary p,
.section.cta h2,
.section.cta p {
    color: white !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55) !important;
    position: relative;
    z-index: 2;
}

.section.bg-primary::before,
.section.cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
}

@media (max-width: 767px) {
    .section.bg-primary h2,
    .section.cta h2 {
        font-size: 2.3rem;
    }
    .section.bg-primary p,
    .section.cta p {
        font-size: 1.15rem;
    }
    .section.bg-primary,
    .section.cta {
        padding: 50px 0 30px !important;
    }
}

/* ==================================================
   FEATURE ICONS
   ================================================== */

.feature-icon {
    width: 75px;
    height: 75px;
    background: rgba(10, 36, 99, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.1rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .feature-icon {
    background: rgba(10, 36, 99, 0.15);
    transform: scale(1.1);
    color: var(--accent);
}

/* ==================================================
   BAKU EXPLORER
   ================================================== */

.baku-explorer {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.baku-explorer h3,
.baku-explorer .lead,
.baku-explorer p {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6) !important;
    position: relative;
    z-index: 2;
}

.baku-explorer::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

/* ==================================================
   CATEGORY CARDS
   ================================================== */

.category-card .card-header {
    color: white !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
}

.category-card .card-header i {
    color: white !important;
}

/* ==================================================
   PLACE CARDS
   ================================================== */

.place-card {
    background: white;
    border-radius: 16px;
    padding: 20px 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.place-card:hover {
    background: #f8f9ff;
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 6px 15px rgba(10,36,99,0.12);
}

.place-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.place-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--accent);
    box-shadow: 0 6px 15px rgba(0,0,0,0.18);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    margin: 0 auto;
}

.place-image i {
    font-size: 3.2rem;
    color: var(--primary);
}

.place-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.4;
    min-height: 2.2em;
}

@media (max-width: 767px) {
    .place-image {
        width: 130px;
        height: 130px;
        border-width: 3px;
    }
    .place-name {
        font-size: 1rem;
    }
    .place-card {
        padding: 15px 10px;
    }
}

/* ==================================================
   SERVICE SUBCARDS
   ================================================== */

.service-subcard {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(8, 26, 70, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.service-subcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(8, 26, 70, 0.15);
}

.subcard-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.subcard-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,36,99,0.1) 0%, rgba(10,36,99,0.3) 100%);
}

.service-subcard .card-body {
    padding: 1.25rem;
}

.service-subcard .card-title {
    font-size: 1.25rem;
    color: var(--dark);
}

.service-subcard .card-text {
    min-height: 48px;
    font-size: 0.95rem;
}

/* ==================================================
   5-CARD GRID FOR ADMIN DASHBOARD
   ================================================== */

@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* ==================================================
   ANIMATION CLASSES
   ================================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================================================
   PRINT STYLES
   ================================================== */

@media print {
    .sidebar, .navbar, .footer {
        display: none !important;
    }
    .main-content {
        margin-left: 0 !important;
        padding: 20px !important;
    }
}

/* ==================================================
   SERVICE PAGES SPECIFIC
   ================================================== */

.service-page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 40px;
}

.service-page-header h1 {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.service-detail-section {
    margin-bottom: 40px;
}

.service-detail-section h3 {
    color: var(--primary);
    border-left: 4px solid var(--accent);
    padding-left: 15px;
    margin-bottom: 20px;
}

.pricing-box {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.pricing-box .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
}

/* ==================================================
   BOOKING FORMS
   ================================================== */

.booking-form {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.booking-form .form-control {
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    padding: 12px 15px;
}

.booking-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

/* ==================================================
   RESPONSIVE UTILITIES
   ================================================== */

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .stat-card {
        padding: 20px 15px !important;
    }
    
    .stat-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 2rem !important;
    }
    
    .stat-value {
        font-size: 1.6rem !important;
    }
}
/* ==================================================
   ABOUT PAGE SPECIFIC STYLES
   ================================================== */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 100px 0 80px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.about-hero h1 {
  color: white !important;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.about-hero p {
  color: white !important;
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
}

/* Mission & Vision Cards */
.mission-vision-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s ease;
  border-left: 5px solid var(--accent);
}

.mission-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.mission-vision-card h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.mission-vision-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.timeline-year {
  font-weight: 800;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.timeline-content h4 {
  color: var(--dark);
  margin-bottom: 10px;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.value-card i {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.value-card h4 {
  color: var(--dark);
  margin-bottom: 15px;
}

/* Team Member Cards */
.team-member-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.team-member-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--light), var(--light-gray));
}

.team-member-info {
  padding: 25px;
}

.team-member-info h4 {
  color: var(--dark);
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.team-member-info p {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
}

.social-links-team {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-links-team a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.social-links-team a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
}

/* About Page Responsive */
@media (max-width: 767px) {
  .about-hero {
    padding: 80px 0 60px;
  }
  
  .about-hero h1 {
    font-size: 2.2rem;
  }
  
  .mission-vision-card {
    padding: 30px 20px;
  }
  
  .team-member-img {
    height: 220px;
  }
  
  .timeline-item {
    padding-left: 35px;
  }
  
  .timeline-year {
    font-size: 1.2rem;
  }
}
/* ==================================================
   CONTACT PAGE SPECIFIC STYLES
   ================================================== */

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 100px 0 80px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.contact-hero h1 {
  color: white !important;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.contact-hero p {
  color: white !important;
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

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

/* Contact Info Card */
.contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--light-gray);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-content h4 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-info-content p {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

/* Social Links - Contact Page */
.social-links-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.35);
}

/* Map Container */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* FAQ Accordion */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.accordion-button {
  font-weight: 600;
  color: var(--dark);
  background: white;
  padding: 18px 25px;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(10, 36, 99, 0.05);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.15);
}

.accordion-body {
  padding: 20px 25px;
  color: var(--gray);
  line-height: 1.7;
}

/* Contact Page Responsive */
@media (max-width: 767px) {
  .contact-hero {
    padding: 80px 0 60px;
  }
  
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  
  .contact-form-card,
  .contact-info-card {
    padding: 30px 20px;
  }
  
  .contact-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .social-links-contact {
    justify-content: center;
  }
}
/* ==================================================
   DEALS OF THE MONTH PAGE SPECIFIC STYLES
   ================================================== */

/* Deals Hero Section */
.deals-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 100px 0 80px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.deals-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.deals-hero h1 {
  color: white !important;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.deals-hero p {
  color: white !important;
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
}

/* Deals Filter */
.deals-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 25px;
  border: 2px solid var(--primary);
  background: white;
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Deal Card */
.deal-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.deal-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: white;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.deal-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.deal-image-placeholder {
  background: linear-gradient(135deg, var(--light), var(--light-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 4rem;
}

.deal-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.deal-type-badge {
  display: inline-block;
  background: rgba(10, 36, 99, 0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

.deal-title {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.deal-description {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.deal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.deal-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: 0.9rem;
}

.deal-meta-item i {
  color: var(--primary);
}

.deal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.deal-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.price-period {
  color: var(--gray);
  font-size: 0.85rem;
}

/* Newsletter Form */
.newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-control {
  border-radius: 50px 0 0 50px;
  padding: 12px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.newsletter-form .form-control:focus {
  background: rgba(255,255,255,0.2);
  border-color: white;
  box-shadow: none;
}

.newsletter-form .btn-accent {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form .btn-accent:hover {
  background: #e05a2a;
  transform: translateX(-2px);
}

/* Deals Page Responsive */
@media (max-width: 767px) {
  .deals-hero {
    padding: 80px 0 60px;
  }
  
  .deals-hero h1 {
    font-size: 2.2rem;
  }
  
  .deals-filter {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-btn {
    width: 100%;
  }
  
  .deal-image {
    height: 180px;
  }
  
  .deal-footer {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .deal-price {
    justify-content: center;
  }
  
  .newsletter-form .input-group {
    flex-direction: column;
  }
  
  .newsletter-form .form-control,
  .newsletter-form .btn-accent {
    border-radius: 50px;
    width: 100%;
  }
}
/* ==================================================
   BECOME PARTNER PAGE SPECIFIC STYLES
   ================================================== */

/* Partner Hero Section */
.partner-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 100px 0 80px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.partner-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.partner-hero h1 {
  color: white !important;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.partner-hero p {
  color: white !important;
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
}

/* Partner Benefit Cards */
.partner-benefit-card {
  background: white;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.partner-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.partner-benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2.5rem;
}

.partner-benefit-card h4 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Partner Type Cards */
.partner-type-card {
  background: white;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.partner-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.partner-type-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent), #e05a2a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 2rem;
}

.partner-type-card h4 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.partner-requirements {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  border-top: 1px solid var(--light-gray);
  padding-top: 20px;
}

.partner-requirements li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--gray);
  font-size: 0.9rem;
}

.partner-requirements li i {
  color: var(--success);
  font-size: 1rem;
}

/* Partner Form Card */
.partner-form-card {
  background: white;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.partner-application-form .form-section-title {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
}

.partner-application-form .form-section-title:first-child {
  margin-top: 0;
}

.partner-application-form .form-control,
.partner-application-form .form-select {
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.partner-application-form .form-control:focus,
.partner-application-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

.partner-application-form .form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.partner-application-form .form-check-label {
  color: var(--gray);
  font-size: 0.95rem;
}

.partner-application-form .form-check-label a {
  color: var(--primary);
  text-decoration: none;
}

.partner-application-form .form-check-label a:hover {
  text-decoration: underline;
}

/* Partner Page Responsive */
@media (max-width: 767px) {
  .partner-hero {
    padding: 80px 0 60px;
  }
  
  .partner-hero h1 {
    font-size: 2.2rem;
  }
  
  .partner-benefit-card,
  .partner-type-card,
  .partner-form-card {
    padding: 30px 20px;
  }
  
  .partner-benefit-icon,
  .partner-type-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
}
/* ==================================================
   AUTH PAGES (LOGIN, REGISTER, FORGOT PASSWORD)
   ================================================== */

.auth-page {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-container {
  width: 100%;
  max-width: 450px;
}

.auth-card {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.auth-header {
  text-align: center;
  margin-bottom: 35px;
}

.auth-logo {
  display: inline-block;
  margin-bottom: 25px;
}

.auth-logo img {
  transition: transform 0.3s ease;
}

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

.auth-header h1 {
  color: var(--dark);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.auth-header p {
  color: var(--gray);
  font-size: 1rem;
}

/* Auth Form */
.auth-form .form-group {
  margin-bottom: 25px;
}

.auth-form .form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  display: block;
}

.auth-form .input-group {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.auth-form .input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

.auth-form .input-group-text {
  background: var(--light);
  border: none;
  color: var(--primary);
  font-size: 1.1rem;
}

.auth-form .form-control {
  border: none;
  padding: 12px 15px;
  font-size: 1rem;
}

.auth-form .form-control:focus {
  box-shadow: none;
}

.auth-form #togglePassword {
  border-left: 1px solid var(--light-gray);
  background: white;
  color: var(--gray);
}

.auth-form #togglePassword:hover {
  background: var(--light);
  color: var(--primary);
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-check-label {
  color: var(--gray);
  font-size: 0.9rem;
  cursor: pointer;
}

.forgot-link {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.forgot-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Auth Button */
.btn-auth {
  padding: 14px 30px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 36, 99, 0.3);
}

/* Auth Divider */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
  color: var(--gray);
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--light-gray);
}

.auth-divider span {
  padding: 0 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Auth Footer */
.auth-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
}

.auth-footer p {
  margin-bottom: 10px;
  color: var(--gray);
}

.auth-footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.auth-footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Alert Messages */
.auth-card .alert {
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 12px 15px;
  font-size: 0.95rem;
}

/* Auth Page Responsive */
@media (max-width: 575px) {
  .auth-page {
    padding: 20px 15px;
  }
  
  .auth-card {
    padding: 35px 25px;
  }
  
  .auth-header h1 {
    font-size: 1.6rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .auth-footer {
    margin-top: 20px;
    padding-top: 20px;
  }
}
/* ==================================================
   ADMIN DASHBOARD SPECIFIC STYLES
   ================================================== */

/* Admin Page Layout */
body.admin-page {
  background: var(--light);
  min-height: 100vh;
}

.admin-page .main-content {
  margin-left: 250px;
  padding: 30px;
  transition: margin-left 0.3s ease;
}

@media (max-width: 991px) {
  .admin-page .main-content {
    margin-left: 0;
    padding: 20px;
  }
}

/* Page Header */
.page-header {
  background: white;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.page-header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}

/* Admin Stat Cards */
.admin-page .stat-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.admin-page .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.admin-page .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.admin-page .stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 5px;
}

.admin-page .stat-label {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.admin-page .stat-change {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Admin Cards */
.admin-page .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.admin-page .card-header {
  background: white;
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  border-radius: 16px 16px 0 0 !important;
}

.admin-page .card-body {
  padding: 25px;
}

.admin-page .card-footer {
  background: white;
  border-top: 1px solid var(--light-gray);
  padding: 15px 25px;
  border-radius: 0 0 16px 16px !important;
}

/* Admin Tables */
.admin-page .table {
  margin-bottom: 0;
}

.admin-page .table thead th {
  background: var(--light);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 20px;
  border: none;
}

.admin-page .table tbody td {
  padding: 15px 20px;
  vertical-align: middle;
  border-color: var(--light-gray);
}

.admin-page .table-hover tbody tr:hover {
  background-color: rgba(10, 36, 99, 0.03);
}

/* Avatar Circle */
.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

/* Pending Actions List */
.pending-actions-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pending-action-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pending-action-item:hover {
  background: rgba(10, 36, 99, 0.05);
}

.pending-action-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pending-action-icon.bg-warning {
  background: linear-gradient(135deg, #ffc107, #ff9800);
}

.pending-action-icon.bg-info {
  background: linear-gradient(135deg, #0dcaf0, #0d9488);
}

.pending-action-icon.bg-success {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.pending-action-icon.bg-danger {
  background: linear-gradient(135deg, #dc3545, #e05a2a);
}

.pending-action-icon.bg-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.pending-action-content {
  flex-grow: 1;
}

.pending-action-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.pending-action-count {
  color: var(--gray);
  font-size: 0.85rem;
}

/* Quick Action Cards */
.quick-action-card {
  display: block;
  padding: 25px 20px;
  background: white;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.quick-action-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(10, 36, 99, 0.15);
  text-decoration: none;
}

.quick-action-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.quick-action-card:hover .quick-action-icon {
  transform: scale(1.1);
}

.quick-action-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.quick-action-desc {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Badge Styles */
.badge {
  padding: 6px 12px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.75rem;
}

.badge-success {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

.badge-warning {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

.badge-secondary {
  background: rgba(108, 117, 125, 0.15);
  color: #6c757d;
}

.badge-info {
  background: rgba(13, 202, 240, 0.15);
  color: #0dcaf0;
}

.badge-danger {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

/* Admin Responsive */
@media (max-width: 767px) {
  .admin-page .main-content {
    padding: 15px;
  }
  
  .page-header {
    padding: 20px;
  }
  
  .page-header h1 {
    font-size: 1.5rem;
  }
  
  .admin-page .stat-card {
    padding: 20px;
  }
  
  .admin-page .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .admin-page .stat-value {
    font-size: 1.6rem;
  }
  
  .pending-action-item {
    flex-direction: column;
    text-align: center;
  }
  
  .pending-action-content {
    margin: 10px 0;
  }
}
/* ==================================================
   ADMIN SIDEBAR STYLES
   ================================================== */

/* Sidebar Container */
.sidebar {
  width: 250px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--dark);
  color: white;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

@media (max-width: 991px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .sidebar.show {
    transform: translateX(0);
  }
}

/* Sidebar Header */
.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  display: block;
}

.sidebar-logo img {
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}

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

.sidebar-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

@media (max-width: 991px) {
  .sidebar-toggle {
    display: block;
  }
}

/* Sidebar User Info */
.sidebar-user {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e05a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
}

.user-info {
  flex-grow: 1;
  overflow: hidden;
}

.user-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-role {
  font-size: 0.8rem;
  color: #adb5bd;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sidebar Navigation */
.sidebar-nav {
  flex-grow: 1;
  padding: 15px 0;
  overflow-y: auto;
}

.nav-section {
  margin-bottom: 25px;
}

.nav-section-title {
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c757d;
  margin-bottom: 8px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  gap: 12px;
}

.sidebar-nav .nav-link:hover {
  color: white;
  background: rgba(255,255,255,0.05);
}

.sidebar-nav .nav-link.active {
  color: white;
  background: rgba(10, 36, 99, 0.85);
  border-left: 4px solid var(--accent);
}

.sidebar-nav .nav-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-nav .nav-link span {
  flex-grow: 1;
  font-size: 0.9rem;
  font-weight: 500;
}

.sidebar-nav .nav-link.text-danger {
  color: #f8d7da;
}

.sidebar-nav .nav-link.text-danger:hover {
  background: rgba(220, 53, 69, 0.15);
  color: #ff6b6b;
}

/* Badge Notification */
.badge-notification {
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  min-width: 20px;
  text-align: center;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.sidebar-footer .nav-link {
  padding: 12px 20px;
}

/* Scrollbar Styling */
.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.3);
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1099;
}

@media (max-width: 991px) {
  .sidebar-overlay.show {
    display: block;
  }
}
/* ==================================================
   VISA REQUESTS PAGE SPECIFIC STYLES
   ================================================== */

/* Visa Status Badges */
.badge-secondary {
  background: rgba(108, 117, 125, 0.15);
  color: #6c757d;
}

.badge-warning {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

.badge-info {
  background: rgba(13, 202, 240, 0.15);
  color: #0dcaf0;
}

.badge-success {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

.badge-danger {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

/* Admin Page Enhancements */
.admin-page .stat-icon.bg-warning {
  background: linear-gradient(135deg, #ffc107, #ff9800) !important;
}

.admin-page .stat-icon.bg-info {
  background: linear-gradient(135deg, #0dcaf0, #0d9488) !important;
}

.admin-page .stat-icon.bg-success {
  background: linear-gradient(135deg, #28a745, #20c997) !important;
}

.admin-page .stat-icon.bg-secondary {
  background: linear-gradient(135deg, #6c757d, #495057) !important;
}

/* Visa Table Specific */
.admin-page .table code {
  background: var(--light);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.admin-page .avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Modal Enhancements */
.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.modal-header {
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 25px;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid var(--light-gray);
  padding: 15px 25px;
}

/* Filter Card */
.admin-page .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.admin-page .card-header {
  background: white;
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  border-radius: 16px 16px 0 0 !important;
}

.admin-page .card-body {
  padding: 25px;
}

.admin-page .card-footer {
  background: white;
  border-top: 1px solid var(--light-gray);
  padding: 15px 25px;
  border-radius: 0 0 16px 16px !important;
}

/* Pagination */
.pagination .page-link {
  border-radius: 8px;
  margin: 0 3px;
  border: 1px solid var(--light-gray);
  color: var(--primary);
  padding: 8px 15px;
}

.pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.pagination .page-link:hover {
  background: var(--light);
  border-color: var(--primary);
}

/* Responsive */
@media (max-width: 767px) {
  .admin-page .main-content {
    padding: 15px;
  }
  
  .page-header {
    padding: 20px;
  }
  
  .admin-page .stat-card {
    padding: 20px;
  }
  
  .table-responsive {
    font-size: 0.85rem;
  }
  
  .modal-dialog {
    margin: 10px;
  }
}
/* Badge Styles */
.badge-secondary {
  background: rgba(108, 117, 125, 0.15);
  color: #6c757d;
}

.badge-warning {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

.badge-info {
  background: rgba(13, 202, 240, 0.15);
  color: #0dcaf0;
}

.badge-success {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}

.badge-danger {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

/* Admin Page Enhancements */
.admin-page .stat-icon.bg-warning {
  background: linear-gradient(135deg, #ffc107, #ff9800) !important;
}

.admin-page .stat-icon.bg-info {
  background: linear-gradient(135deg, #0dcaf0, #0d9488) !important;
}

.admin-page .stat-icon.bg-success {
  background: linear-gradient(135deg, #28a745, #20c997) !important;
}

.admin-page .stat-icon.bg-secondary {
  background: linear-gradient(135deg, #6c757d, #495057) !important;
}

/* Admin Table Specific */
.admin-page .table code {
  background: var(--light);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.admin-page .avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Modal Enhancements */
.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.modal-header {
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 25px;
}

.modal-body {
  padding: 25px;
}

.modal-footer {
  border-top: 1px solid var(--light-gray);
  padding: 15px 25px;
}

/* Admin Cards */
.admin-page .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.admin-page .card-header {
  background: white;
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  border-radius: 16px 16px 0 0 !important;
}

.admin-page .card-body {
  padding: 25px;
}

.admin-page .card-footer {
  background: white;
  border-top: 1px solid var(--light-gray);
  padding: 15px 25px;
  border-radius: 0 0 16px 16px !important;
}

/* Pagination */
.pagination .page-link {
  border-radius: 8px;
  margin: 0 3px;
  border: 1px solid var(--light-gray);
  color: var(--primary);
  padding: 8px 15px;
}

.pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.pagination .page-link:hover {
  background: var(--light);
  border-color: var(--primary);
}

/* Responsive */
@media (max-width: 767px) {
  .admin-page .main-content {
    padding: 15px;
  }
  
  .page-header {
    padding: 20px;
  }
  
  .admin-page .stat-card {
    padding: 20px;
  }
  
  .table-responsive {
    font-size: 0.85rem;
  }
  
  .modal-dialog {
    margin: 10px;
  }
}
/* ==================================================
   SERVICE PAGES SPECIFIC STYLES
   ================================================== */

/* Service Page Header */
.service-page-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 100px 0 80px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.service-page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.service-page-header h1 {
  color: white !important;
  font-size: 2.8rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.service-page-header .lead {
  color: white !important;
  opacity: 0.95;
}

.service-page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.service-page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.service-page-header .breadcrumb-item a:hover {
  color: white;
}

.service-page-header .breadcrumb-item.active {
  color: white;
}

.service-page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
}

/* Service Description */
.service-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
}

/* Feature Items */
.feature-item {
  padding: 15px;
  background: var(--light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Pricing Card */
.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  border: 2px solid var(--light-gray);
}

.price-large {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

/* Service Sidebar */
.service-sidebar .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.service-sidebar .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.service-sidebar .list-group-item {
  border: none;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.service-sidebar .list-group-item:hover {
  background: var(--light);
  padding-left: 10px;
}

.service-sidebar .list-group-item a {
  color: var(--dark);
  text-decoration: none;
}

.service-sidebar .list-group-item a:hover {
  color: var(--primary);
}

/* Section Title */
.section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
  font-weight: 700;
  color: var(--dark);
}

.section-title span {
  position: relative;
  z-index: 1;
}

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

/* Service Subcards */
.service-subcard {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(8, 26, 70, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: none;
}

.service-subcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(8, 26, 70, 0.15);
}

.subcard-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.subcard-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,36,99,0.1) 0%, rgba(10,36,99,0.3) 100%);
}

/* Responsive */
@media (max-width: 767px) {
  .service-page-header {
    padding: 80px 0 60px;
  }
  
  .service-page-header h1 {
    font-size: 2.2rem;
  }
  
  .price-large {
    font-size: 2.5rem;
  }
  
  .service-sidebar {
    position: static !important;
    margin-top: 30px;
  }
}
/* ==================================================
   PROFILE PAGE SPECIFIC STYLES
   ================================================== */

/* Profile Avatar Large */
.profile-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(10, 36, 99, 0.3);
}

/* Profile Stats */
.profile-stats .stat-item {
  padding: 10px;
  background: var(--light);
  border-radius: 8px;
}

.profile-stats .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.profile-stats .stat-label {
  color: var(--gray);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Admin Page Cards */
.admin-page .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.admin-page .card-header {
  background: white;
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  border-radius: 16px 16px 0 0 !important;
}

.admin-page .card-body {
  padding: 25px;
}

/* Form Styling */
.admin-page .form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.admin-page .form-control,
.admin-page .form-select {
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.admin-page .form-control:focus,
.admin-page .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

.admin-page .form-control:disabled {
  background: var(--light);
  cursor: not-allowed;
}

/* Security Tips Card */
.admin-page .card-header.bg-info {
  background: linear-gradient(135deg, var(--info), #0d9488) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .profile-avatar-large {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .admin-page .main-content {
    padding: 15px;
  }
  
  .page-header {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .profile-stats .stat-value {
    font-size: 1.2rem;
  }
  
  .profile-avatar-large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}