/* Updated CSS with new components */
:root {
    --primary-color: #0891b2;
    --primary-dark: #2e59d9;
    --secondary-color: #f8f9fc;
    --accent-color: #2e59d9;
    --text-color: #5a5c69;
    --dark-color: #2a2b3c;
    --light-color: #f8f9fa;
    --border-color: #e3e6f0;
    --shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    --radius: 10px;
    --blue-color: #042A4A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* Header Styles */
.main-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mobile-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding-top: env(safe-area-inset-top);
}

.main-navigation {
    background: var(--blue-color);
}

.main-navigation .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-navigation .nav-link.active,
.main-navigation .nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
}

.header-contact {
    background: var(--light-color);
    padding: 10px 20px;
    border-radius: var(--radius);
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    font-size: 1.5rem;
}

/* Mobile Navigation */
/* Mobile Navigation Menu */
.mobile-nav-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-nav-menu.active {
    transform: translateY(0);
}

/* NEW: Sticky mobile footer navigation */
.sticky-mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    display: none;
}

/* Mobile Sidebar Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 1100;
    transition: left 0.3s ease;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding-top: env(safe-area-inset-top);
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar-header {
    padding: 20px 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-logo i {
    font-size: 1.8rem;
}

.sidebar-logo h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.sidebar-logo small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    position: absolute;
    right: 15px;
    top: 20px;
}

.sidebar-user {
    padding: 20px 15px;
    background: var(--light-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.sidebar-nav {
    padding: 10px 0;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    color: var(--text-color);
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.sidebar-nav-item i {
    width: 22px;
    text-align: center;
    margin-right: 12px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.sidebar-nav-item span {
    flex: 1;
    font-weight: 500;
}

.sidebar-nav-item.active {
    background: rgba(10, 100, 194, 0.1);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.sidebar-nav-item:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05);
    color: var(--dark-color);
}

.sidebar-divider {
    height: 1px;
    background: var(--border-color);
    margin: 10px 0;
}

.sidebar-footer {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

/* Update mobile header for sidebar button */
.mobile-header {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.menu-toggle-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    padding: 0;
    margin-right: 15px;
}

/* Adjust main content when sidebar is open */
body.sidebar-open {
    overflow: hidden;
}

/* Update existing mobile header styles */
.mobile-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 10px 15px;
    padding-top: env(safe-area-inset-top);
}

.mobile-logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.mobile-logo i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.mobile-logo span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}




@media (max-width: 991.98px) {
    .sticky-mobile-footer {
        display: block;
    }
    
    /* Adjust main content to account for sticky footer */
    .main-content {
        padding-bottom: 70px;
    }
    
    /* Remove old mobile nav menu styles */
    .mobile-nav-menu {
        display: none;
    }
}

/* Sticky footer navigation items */
.sticky-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
}

.sticky-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    padding: 5px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
}

.sticky-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.sticky-nav-item span {
    font-size: 11px;
    font-weight: 500;
}

.sticky-nav-item.active {
    color: #0891b2;
    background: rgba(13, 110, 253, 0.1);
}

.sticky-nav-item:hover {
    color: #0d6efd;
}

/* Booking Container (Updated) */
.booking-container {
    max-width: 1200px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.booking-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.booking-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.booking-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
}

/* Progress Steps (Enhanced) */
.booking-steps {
    background: var(--light-color);
    padding: 20px 10px;
    position: relative;
}

.progress-bar-steps {
    position: absolute;
    top: 60px;
    left: 50px;
    right: 50px;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 0;
}

.progress-bar-steps .progress {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 2px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 5px rgba(78, 115, 223, 0.2);
}

.step.completed .step-number {
    background-color: #28a745;
    color: white;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step.active .step-title {
    color: var(--primary-color);
    font-weight: 700;
}

.step.completed .step-title {
    color: #28a745;
}

/* Booking Content */
.booking-content {
    padding: 20px;
    min-height: 500px;
    background: white;
}

/* Cards */
.category-card,
.service-card,
.employee-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: var(--radius);
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.category-card::before,
.service-card::before,
.employee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before,
.service-card:hover::before,
.employee-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover,
.service-card:hover,
.employee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-card.selected,
.service-card.selected,
.employee-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.05), rgba(46, 89, 217, 0.1));
    box-shadow: 0 5px 20px rgba(78, 115, 223, 0.2);
}

.category-card.selected::before,
.service-card.selected::before,
.employee-card.selected::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

/* Calendar */
.table-calendar {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
}

.table-calendar th {
    font-weight: 600;
    color: var(--text-color);
    padding: 10px;
    text-align: center;
}

.table-calendar td {
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.calendar-day:hover:not(.disabled) {
    background-color: rgba(78, 115, 223, 0.1);
    transform: scale(1.1);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(78, 115, 223, 0.3);
}

.calendar-day.today {
    background-color: rgba(78, 115, 223, 0.2);
    border: 2px solid var(--primary-color);
}

/* Time Slots */
.time-slot {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    margin: 5px;
    text-align: center;
    min-width: 100px;
    background: white;
    position: relative;
    overflow: hidden;
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.time-slot > * {
    position: relative;
    z-index: 1;
}

.time-slot:hover:not(.disabled) {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(78, 115, 223, 0.3);
}

.time-slot.selected::before {
    opacity: 1;
}

.time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f8f9fa;
    transform: none !important;
}

/* Partners Section */
.partners-section {
    background: white;
}

.partner-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

/* Features */
.feature-card {
    background: white;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(78, 115, 223, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--blue-color), #1a1b2e);
}

.footer a.text-white-50:hover {
    color: white !important;
    text-decoration: underline;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

#back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-slide-in {
    animation: slideIn 0.5s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Badges */
.badge-premium {
    background: linear-gradient(135deg, #ffd700, #ff9500);
    color: #000;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.badge-popular {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-container {
        border-radius: 15px;
    }
    
    .booking-header {
        padding: 20px 15px;
    }
    
    .booking-header h2 {
        font-size: 1.8rem;
    }
    
    .booking-steps {
        padding: 20px 10px;
    }
    
    .step {
        flex: 1;
        margin-right: 5px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 12px;
    }
    
    .progress-bar-steps {
        left: 15%;
        right: 15%;
        top: 45px;
    }
    
    .booking-content {
        padding: 10px 15px;
        min-height: 400px;
    }
    
    .mobile-header {
        display: block;
    }
    
    .main-content {
        padding-top: 60px;
    }
}

@media (max-width: 576px) {
    .booking-container {
        margin-top:5px;
    }
    
    .step-title {
        font-size: 10px;
    }
    
    .progress-bar-steps {
        left: 10%;
        right: 10%;
    }
    
    .time-slot {
        min-width: 80px;
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .booking-footer,
    .mobile-header,
    .main-header,
    .main-navigation,
    .footer,
    #back-to-top {
        display: none !important;
    }
    
    .booking-container {
        box-shadow: none;
        margin: 0;
    }
}

/* Navigation Search Styles */
.navigation-search {
    position: relative;
    width: 250px;
}

.search-group {
    position: relative;
}

.search-input {
    border: 1px solid var(--border-color);
    border-radius: 20px 0 0 20px;
    padding: 8px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    height: 40px;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(10, 100, 194, 0.25);
    outline: none;
}

.search-btn {
    border-radius: 0 20px 20px 0;
    border: 1px solid var(--border-color);
    border-left: none;
    height: 40px;
    padding: 0 15px;
    background-color: white;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    margin-top: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-header {
    background: var(--secondary-color);
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.search-header h6 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.search-body {
    padding: 10px;
}

.search-item {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
}

.search-item:hover {
    background-color: rgba(10, 100, 194, 0.05);
    border-color: rgba(10, 100, 194, 0.1);
    transform: translateX(5px);
}

.search-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(10, 100, 194, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary-color);
}

.search-item-content h6 {
    font-size: 14px;
    margin-bottom: 2px;
    font-weight: 600;
}

.search-item-content p {
    font-size: 12px;
    color: var(--text-color);
    margin: 0;
}

.search-footer {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-all:hover {
    text-decoration: underline;
}

/* Search Loading State */
.search-loading {
    padding: 20px;
    text-align: center;
    color: var(--text-color);
}

/* No Results State */
.search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-color);
}

/* Mobile Search (optional for future use) */
@media (max-width: 991.98px) {
    .navigation-search {
        display: none;
    }
    
    .mobile-search {
        display: block;
        padding: 10px 15px;
        background: white;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-search .search-group {
        width: 100%;
    }
}

/* Animation for dropdown */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-dropdown.show {
    display: block;
    animation: fadeInDown 0.3s ease;
}


/* Language and Theme Switcher Styles */
.lang-switcher, .theme-switcher {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    margin: 5px 0;
    border-radius: 8px;
    background: var(--light-color);
    border: 1px solid var(--border-color);
}

.lang-switcher:hover, .theme-switcher:hover {
    background: rgba(10, 100, 194, 0.05);
    cursor: pointer;
}

.lang-options, .theme-options {
    display: flex;
    gap: 8px;
}

.lang-btn, .theme-btn {
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: white;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.lang-btn.active, .theme-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.lang-btn:not(.active):hover, .theme-btn:not(.active):hover {
    background: rgba(10, 100, 194, 0.1);
}


/* App Section - Clean Background */
.app-section {
    /* Subtle, professional background gradient */
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

/* Container Spacing for professionalism */
@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}


/* Device Preview - Modern and Sharp */
.device-preview {
    /* Max width for smaller devices and desktop */
    max-width: 320px;
    position: relative;
    /* Centered on mobile, aligned right on desktop (using mx-auto me-lg-0 in HTML) */
}

.app-mockup-img {
    border-radius: 36px;
    /* Elevated, crisp shadow for professional look */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 
                0 0 0 1px rgba(0, 0, 0, 0.05);
    /* Subtle light border to highlight the phone frame */
    border: 4px solid #ffffff; 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.device-preview:hover .app-mockup-img {
    /* More pronounced hover effect */
    transform: translateY(-8px);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.35);
}

/* Feature List */
.feature-list {
    /* Max width for better readability on desktop */
    max-width: 450px;
}

.feature-list li {
    padding: 0; /* Remove old padding */
    transition: background-color 0.2s;
    border-radius: 4px;
}

.feature-list i {
    color: #3b82f6; /* Use a defined primary color */
}


/* Download Button */
.download-btn {
    width: 180px;
    /* Explicit height to prevent layout shift */
    height: 65px; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-cta a {
    display: inline-block;
    padding: 0; /* Let the image define the tap target */
    border-radius: 8px;
}

.download-cta a:hover .download-btn {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-cta a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 4px;
    border-radius: 12px;
}

/* Mobile-Specific Adjustments (Under 992px) */
@media (max-width: 991.98px) {
    .display-5 {
        font-size: 2.25rem;
    }

    .feature-list {
        /* Centered on mobile for consistency */
        max-width: 350px;
    }
}




/* FAQ Section Styles */
.faq-section {
    /* Slightly lighter background for contrast */
    background-color: #fcfcfc;
}

/* Accordion Styling for a clean look */
.accordion-item {
    border: none;
    border-bottom: 1px solid #e5e7eb; /* Light separator */
    background-color: transparent;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    /* Custom font styles */
    font-size: 1.15rem;
    font-weight: 600; /* Semi-bold for questions */
    color: #1f2937; /* Dark text */
    padding: 1.5rem 0;
    transition: color 0.2s ease, background-color 0.2s ease;
    
    /* Removes default Bootstrap button styling */
    background-color: transparent;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #3b82f6; /* Highlight active question */
    background-color: transparent;
}

/* Arrow icon customization */
.accordion-button:not(.collapsed)::after {
    /* Rotates arrow/chevron for open state */
    filter: invert(30%) sepia(90%) saturate(1000%) hue-rotate(200deg) brightness(100%); 
}

.accordion-button::after {
    /* Larger and repositioned arrow */
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 1rem;
    background-size: 100%;
}

.accordion-body {
    padding: 0 0 1.5rem 0; /* Align body content */
    color: #4b5563; /* Subtle text color */
}

/* Final border removal for the last item */
.accordion-item:last-of-type {
    border-bottom: none;
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {
    .accordion-button {
        font-size: 1rem;
        padding: 1.25rem 0;
    }
    .accordion-body {
        font-size: 0.95rem;
    }
}






