:root {
    --main-color: #1d2750;
    --secondary-color: #fdd74e;
    --white-color: #fefefe;
    --black-color: #000000;
    --accent-color: #e74c3c;
    --gradient-primary: linear-gradient(135deg, #1d2750 0%, #0066cc 50%, #1d2750 100%);
    --shadow-soft: 0 10px 40px rgba(15, 21, 51, 0.15);
    --shadow-medium: 0 15px 50px rgba(15, 21, 51, 0.2);
    --shadow-glow: 0 0 30px rgba(253, 215, 78, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--white-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Top Bar */
.top-bar {
    background: var(--gradient-primary);
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 215, 78, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.top-contact {
    display: flex;
    gap: 25px;
}

.contact-item {
    color: var(--white-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 14px;
}

.contact-item:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

.top-social {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transform: scale(0);
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    color: var(--main-color);
    transform: translateY(-3px);
}

.social-link i {
    position: relative;
    z-index: 1;
}

/* Main Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.header-scrolled .main-navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
    padding: 5px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 6px rgba(15, 21, 51, 0.2));
}

.header-scrolled .logo-img {
    height: 45px;
}

.navbar-nav {
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--main-color) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 25px 18px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-icon {
    font-size: 16px;
    color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.nav-text {
    position: relative;
}

.nav-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-item:hover .nav-text::after,
.nav-item.active .nav-text::after {
    width: 100%;
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--secondary-color) !important;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
    color: var(--main-color);
    transform: scale(1.2);
}

.user-nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.user-nav-item > div {
    display: contents;
}

.user-nav-item a.user-dropdown-toggle.nav-link {
    background: none !important;
    color: var(--main-color) !important;
    gap: 2px;
    font-size: 10px;
    padding: 5px !important;
}

.user-nav-item .user-dropdown-toggle.nav-link .nav-icon {
    color: inherit !important;
    transform: none !important;
    font-size: 16px;
}

/* Guest user icon  */
.user-nav-link.nav-link {
    background: var(--gradient-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
}

.user-nav-link.nav-link i {
    color: white !important;
    font-size: 16px;
}

.mega-menu {
    width: 700px;
    padding: 25px;
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    background: white;
    margin-top: 0 !important;
    animation: menuSlide 0.3s ease-out;
}

@keyframes menuSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--main-color);
    padding: 0 0 10px 0;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.dropdown-item {
    padding: 10px 15px;
    font-size: 13px;
    color: #555;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.dropdown-item i {
    color: var(--secondary-color);
    width: 20px;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(253, 215, 78, 0.1) 0%, rgba(253, 215, 78, 0.2) 100%);
    color: var(--main-color);
    transform: translateX(-5px);
}

.mega-menu-featured {
    background: var(--gradient-primary);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mega-menu-featured img {
    height: 60px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.mega-menu-featured p {
    color: white;
    font-size: 13px;
    margin-bottom: 15px;
}

.mega-menu-featured .btn {
    background: var(--gradient-secondary);
    border: none;
    color: var(--main-color);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
}

.header-spacer {
    height: 140px;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 45px;
    height: 45px;
    position: relative;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.toggler-icon span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.navbar-toggler.active .toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-sidebar-toggle {
    display: none;
    border: none;
    padding: 0;
    width: 45px;
    height: 45px;
    position: relative;
    background: var(--gradient-primary);
    border-radius: 10px;
    cursor: pointer;
}

.mobile-sidebar-toggle .toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.mobile-sidebar-toggle .toggler-icon span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(15, 21, 51, 0.2);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: var(--gradient-primary);
}

.mobile-logo {
    height: 45px;
    filter: brightness(0) invert(1);
}

.mobile-sidebar-close {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-sidebar-close:hover {
    background: var(--secondary-color);
    color: var(--main-color);
}

.mobile-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-user-section {
    margin: 10px 15px;
    padding: 20px;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: white;
    position: relative;
    overflow: hidden;
}

.mobile-user-section::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.mobile-user-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.mobile-user-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    font-size: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-user-name {
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.mobile-user-email {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    direction: ltr;
}

.mobile-user-actions {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.mobile-user-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-user-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.mobile-user-btn-logout {
    background: rgba(239, 68, 68, 0.2);
    color: #fecaca;
}

.mobile-user-btn-logout:hover {
    background: rgba(239, 68, 68, 0.3);
}

.mobile-user-logout-form {
    flex: 1;
    margin: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.mobile-nav-link i:first-child {
    color: var(--secondary-color);
    font-size: 18px;
    width: 25px;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(253, 215, 78, 0.1) 0%, rgba(253, 215, 78, 0.2) 100%);
    color: var(--main-color);
    padding-right: 30px;
}

.mobile-nav-dropdown .mobile-nav-link {
    justify-content: flex-start;
}

.mobile-dropdown-arrow {
    margin-right: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #f8f9fa;
}

.mobile-dropdown-menu.active {
    max-height: 500px;
}

.mobile-dropdown-section {
    padding: 15px 20px;
    border-bottom: 1px dashed #ddd;
}

.mobile-dropdown-section:last-child {
    border-bottom: none;
}

.mobile-dropdown-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.mobile-dropdown-item i {
    color: var(--secondary-color);
    font-size: 14px;
}

.mobile-dropdown-item:hover {
    background: white;
    color: var(--main-color);
    transform: translateX(-5px);
}

.mobile-sidebar-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.mobile-social-link:hover {
    background: var(--secondary-color);
    color: var(--main-color);
    transform: translateY(-3px);
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 21, 51, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.desktop-nav {
    display: flex !important;
}

.navbar-toggler {
    display: none;
    border: none;
    padding: 0;
    width: 45px;
    height: 45px;
    position: relative;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@media (max-width: 1199px) {
    .mega-menu {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .header-spacer {
        height: 120px;
    }

    .top-contact {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .top-social {
        justify-content: center;
        margin-top: 10px;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: var(--shadow-medium);
        margin-top: 15px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-link {
        padding: 15px !important;
        border-bottom: 1px solid #eee;
    }

    .mega-menu {
        width: 100%;
        box-shadow: none;
        border-radius: 10px;
        background: #f8f9fa;
    }

    .desktop-nav {
        display: none !important;
    }

    .mobile-sidebar-toggle {
        display: block;
    }

    .navbar-toggler {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 40px;
    }

}

/* Header User Section */
.header-user-section {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.header-user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.user-dropdown-toggle .user-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown-toggle i:first-child {
    font-size: 20px;
}

.user-dropdown-toggle .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-dropdown.active .user-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.user-nav-item .user-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    left: auto;
    min-width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0;
}

.user-nav-item .user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.user-dropdown-name {
    color: var(--main-color);
    font-weight: 700;
    font-size: 14px;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    text-align: right;
}

.user-dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    padding-right: 25px;
}

.user-dropdown-item i {
    width: 20px;
    color: var(--primary-color);
}

.user-dropdown-logout-form {
    margin: 0;
}

.user-dropdown-item.logout-item {
    color: #e74c3c;
}

.user-dropdown-item.logout-item:hover {
    background: #fef2f2;
    color: #c0392b;
}

.user-dropdown-item.logout-item i {
    color: #e74c3c;
}

/* Footer */
.main-footer {
    position: relative;
}

.footer-content {
    background: var(--gradient-primary);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,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'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
}

.footer-widget {
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-title {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-title i {
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.footer-links a::before {
    content: '\f104';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-right: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.footer-social .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transform: scale(0);
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.footer-social .social-link:hover {
    color: var(--main-color);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.footer-social .social-link:hover::before {
    transform: scale(1);
}

.footer-social .social-link i {
    position: relative;
    z-index: 1;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.footer-contact li i {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 8px;
    background: rgba(253, 215, 78, 0.15);
    border: 1px solid rgba(253, 215, 78, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 14px;
}

.footer-contact li span,
.footer-contact li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background: #050717;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.copyright span {
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-payments i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer-payments i:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}
/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slider-item.active {
    opacity: 1;
    visibility: visible;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: var(--bg-desktop);
    transform: scale(1.1);
    transition: transform 4s ease;
}

.hero-slider-item.active .hero-slider-bg {
    transform: scale(1);
}

.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-slider-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: right;
    color: #fff;
    max-width: 600px;
    z-index: 10;
}

.hero-slider-number {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    display: block;
}

.hero-slider-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.hero-slider-item.active .hero-slider-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider-desc {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.hero-slider-item.active .hero-slider-desc {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: #1a1a1a;
    padding: 18px 40px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.4s;
}

.hero-slider-btn:hover {
    background: #d4af37;
    color: #fff;
}

.hero-slider-item.active .hero-slider-btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-slider-btn.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.hero-slider-btn.btn-whatsapp:hover {
    background: #128c7e;
    color: #fff;
}

.hero-slider-controls {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 20;
}

.hero-slider-prev,
.hero-slider-next {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
}

.hero-slider-dots {
    display: flex;
    gap: 12px;
}

.hero-slider-dot {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 20;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: #fff;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(60px);
    }
}

/* Services */
.services {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

/* Section Header */
.section-header {
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-line {
    width: 60px;
    height: 1px;
    background: #d4af37;
    margin: 0 auto 25px;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

.services-grid-about-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card-about-page {
    position: relative;
    background: #fff;
    padding: 0;
    text-align: center;
    transition: var(--transition-bounce);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.service-card-about-page:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
}

.service-card-inner {
    position: relative;
    z-index: 2;
    padding: 30px 25px;
    background: #fff;
    transition: var(--transition-smooth);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(29, 39, 80, 0.4) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card-about-page:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-about-page:hover .service-image img {
    transform: scale(1.15);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.service-card-about-page:hover .service-title {
    color: var(--secondary-color);
}

.service-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--main-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 10px 20px;
    border-radius: 30px;
    background: #f8f9fa;
}

.service-link i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.service-link:hover {
    background: var(--gradient-primary);
    color: #fff;
}

.service-link:hover i {
    transform: translateX(-5px);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-about-page:hover .service-bg {
    transform: scaleX(1);
}

/* Why Choose Us */
.why-choose-us {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9fb 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 215, 78, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(29, 39, 80, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.why-content {
    position: relative;
    z-index: 5;
    padding-left: 30px;
}

.why-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.why-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--main-color);
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--main-color) 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 45px;
}

.why-features {
    display: grid;
    gap: 20px;
}

.why-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    flex-direction: row-reverse;
}

.why-feature-item:hover {
    transform: translateX(-10px);
    background: #fff;
    box-shadow: 0 15px 40px rgba(15, 21, 51, 0.1);
    border-color: rgba(253, 215, 78, 0.3);
}

.feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: var(--gradient-primary);
    color: var(--secondary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 15px rgba(29, 39, 80, 0.2);
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.why-video-container {
    padding-right: 20px;
}

.creative-video-frame {
    position: relative;
    border-radius: 30px 100px 30px 100px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 21, 51, 0.15);
    background: #000;
}

.creative-video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(29, 39, 80, 0.4) 100%);
    pointer-events: none;
}

.why-video-asset {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
}

.video-overlay-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--main-color);
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    line-height: 1.2;
}
/* Strip */
.numbers-strip {
    padding: 60px 0;
    background: var(--main-color);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.numbers-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.number-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.number-val {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
}

.number-sym {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    vertical-align: super;
    line-height: 1;
}

.number-lbl {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.numbers-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .numbers-row {
        gap: 30px;
    }

    .numbers-divider {
        display: none;
    }

    .number-item {
        min-width: 120px;
    }

    .number-val {
        font-size: 2.4rem;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: #f9f9fb;
    border-top: 1px solid #eee;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--main-color);
    margin-bottom: 15px;
}

.cta-sub {
    font-size: 1rem;
    color: #777;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-dark-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-dark-outline:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 39, 80, 0.2);
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid #25d366;
}

.btn-wa:hover {
    background: #1aad55;
    border-color: #1aad55;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 1.7rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-dark-outline,
    .btn-wa {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
}

/* ========================================
   ABOUT PAGE
   ======================================== */

/* Hero */
.about-hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/imgs/slider\ \(3\).jpeg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.about-hero:hover .about-hero-bg {
    transform: scale(1);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 39, 80, 0.85) 0%, rgba(29, 39, 80, 0.5) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-tag {
    display: inline-block;
    background: rgba(253, 215, 78, 0.2);
    color: var(--secondary-color);
    border: 1px solid rgba(253, 215, 78, 0.4);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-hero-title span {
    color: var(--secondary-color);
    position: relative;
}

.about-hero-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    line-height: 1.7;
}

.about-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* Intro Section */
.about-intro {
    padding: 110px 0;
    background: #fff;
}

.about-intro-images {
    position: relative;
    height: 520px;
}

.intro-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 420px;
    border-radius: 20px 20px 20px 80px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 21, 51, 0.15);
}

.intro-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.intro-img-main:hover img {
    transform: scale(1.05);
}

.intro-img-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 260px;
    border-radius: 80px 20px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 21, 51, 0.2);
    border: 5px solid #fff;
}

.intro-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-exp-badge {
    position: absolute;
    bottom: 120px;
    left: 140px;
    background: var(--main-color);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(29, 39, 80, 0.3);
    border: 4px solid var(--secondary-color);
    z-index: 5;
}

.exp-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    opacity: 0.8;
    line-height: 1.3;
}

.about-intro-content {
    padding-right: 30px;
}

.section-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.about-section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--main-color);
    margin-bottom: 18px;
    line-height: 1.2;
}

.title-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to left, var(--secondary-color), #f0c040);
    border-radius: 2px;
    margin-bottom: 28px;
}

.about-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4f6fb;
    color: var(--main-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e4e8f0;
    transition: var(--transition-smooth);
}

.about-tag:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.about-tag i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.about-tag:hover i {
    color: #fff;
}

/* VMV */
.about-vmv {
    padding: 80px 0;
    background: #f4f6fb;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vmv-card {
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 0 0 0 80px;
    opacity: 0.08;
}

.vmv-vision {
    background: var(--main-color);
}

.vmv-mission {
    background: #1a3a6b;
}

.vmv-values {
    background: #0d2442;
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 21, 51, 0.25);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    background: rgba(253, 215, 78, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--secondary-color);
    border: 1px solid rgba(253, 215, 78, 0.25);
}

.vmv-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.vmv-card p {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}

/* Why Cards */
.about-why {
    padding: 100px 0;
    background: #fff;
}

.why-card {
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    transition: var(--transition-bounce);
    background: #fff;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-12px);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(29, 39, 80, 0.1);
}

.why-card-num {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: #f0f2f8;
    line-height: 1;
    transition: var(--transition-smooth);
}

.why-card:hover .why-card-num {
    color: rgba(253, 215, 78, 0.15);
}

.why-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--secondary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 22px;
    transition: var(--transition-bounce);
}

.why-card:hover .why-card-icon {
    transform: rotate(-5deg) scale(1.1);
}

.why-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.about-cta-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.about-cta-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 500px;
}

.about-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.about-contact-strip {
    padding: 70px 0;
    background: var(--main-color);
}

.contact-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-strip-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.contact-strip-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.contact-strip-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.strip-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition-bounce);
    min-width: 200px;
}

.strip-btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition-bounce);
}

.strip-btn-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.strip-btn-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
}

.strip-btn-val {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
}

.strip-btn-call {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.strip-btn-call .strip-btn-icon {
    background: rgba(253, 215, 78, 0.15);
    color: var(--secondary-color);
}

.strip-btn-call:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.strip-btn-call:hover .strip-btn-icon {
    background: var(--secondary-color);
    color: var(--main-color);
    transform: rotate(-5deg) scale(1.1);
}

.strip-btn-wa {
    background: #25d366;
    border: 1px solid #1aad55;
    color: #fff;
}

.strip-btn-wa .strip-btn-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.strip-btn-wa:hover {
    background: #1aad55;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    color: #fff;
}

.strip-btn-wa:hover .strip-btn-icon {
    transform: rotate(5deg) scale(1.1);
}

/* Page Banner  */
.page-banner {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 39, 80, 0.88) 0%, rgba(29, 39, 80, 0.55) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-banner-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.page-banner-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}


.about-intro-sec {
    padding: 100px 0;
    background: #fff;
}

.about-imgs {
    position: relative;
    height: 460px;
}

.about-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 83%;
    height: 370px;
    border-radius: 20px 20px 20px 80px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 21, 51, 0.14);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-sm {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52%;
    height: 230px;
    border-radius: 80px 20px 20px 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 21, 51, 0.18);
    border: 5px solid #fff;
}

.about-img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.about-chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4f6fb;
    color: var(--main-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e4e8f0;
    transition: var(--transition-smooth);
    cursor: default;
}

.about-chips span:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.about-chips span i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

.about-chips span:hover i {
    color: var(--secondary-color);
}



/* --- Blog & Article  --- */
.inner-page-banner {
    position: relative;
    padding: 120px 0 100px;
    background: url('../imgs/bg.jpeg') center/cover no-repeat;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    overflow: hidden;
}

.inner-page-banner .container {
    position: relative;
    z-index: 2;
}

.banner-subtitle {
    display: block;
    color: var(--secondary-color) !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.banner-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Blog  */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--main-color);
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-card-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    margin-top: auto;
    color: var(--main-color);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.blog-card-link i {
    font-size: 12px;
    transition: var(--transition-smooth);
}

.blog-card-link:hover {
    color: var(--secondary-color);
}

.blog-card-link:hover i {
    transform: translateX(-5px);
}

/* Article Detail */
.article-header {
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
}

.article-featured-image {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: var(--shadow-medium);
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

@media (max-width: 991px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
}

.article-body {
    color: #334155;
    line-height: 1.9;
    font-size: 17px;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body h2 {
    color: var(--main-color);
    font-weight: 800;
    margin: 45px 0 25px;
    font-size: 28px;
    padding-right: 15px;
    border-right: 5px solid var(--secondary-color);
}

.article-body h3 {
    color: var(--main-color);
    font-weight: 700;
    margin: 35px 0 20px;
    font-size: 22px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 30px;
    padding-right: 25px;
}

.article-body li {
    margin-bottom: 12px;
}

.article-body blockquote {
    background: #f8fafc;
    border-right: 6px solid var(--main-color);
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 20px;
    color: var(--main-color);
    border-radius: 15px;
}

.article-body table {
    width: 100%;
    margin: 40px 0;
    border-collapse: collapse;
}

.article-body th {
    background: var(--main-color);
    color: white;
    padding: 15px;
}

.article-body td {
    padding: 15px;
    border: 1px solid #e2e8f0;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.toc-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.toc-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--main-color);
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-item {
    margin-bottom: 12px;
}

.toc-link {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.toc-link:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.toc-item.level-3 {
    margin-right: 15px;
    font-size: 13px;
}

.related-posts {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.related-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

/* Menu */
.hospitality-menu-royal-clean {
    padding: 80px 0;
    background: #fdfaf5;
}

.royal-card-integrated {
    background: #fff;
    border: 1px solid #c5b358;
    position: relative;
    padding: 60px;
    overflow: hidden;
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
}

.royal-content-inner {
    position: relative;
    z-index: 10;
}

.card-inner-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    transition: 0.5s;
}

.card-decor-left {
    bottom: -30px;
    left: -50px;
    width: 350px;
}

.card-decor-right {
    top: -30px;
    right: -50px;
    width: 300px;
}

.card-inner-decor img {
    width: 100%;
}

.royal-logo-mini {
    width: 100px;
}

.royal-title-clean {
    font-family: "Aref Ruqaa", serif;
    font-size: 50px;
    color: #1d2750;
    margin: 0;
}

.royal-accent-gold {
    width: 150px;
    height: 2px;
    background: #c5b358;
    margin: 15px auto 0;
}

.block-title {
    font-size: 20px;
    font-weight: 800;
    color: #1d2750;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border-bottom: 1px solid rgba(197, 179, 88, 0.4);
}

.royal-section-block {
    text-align: center;
}

.royal-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #334155;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: right;
}

.royal-list-item .dot {
    width: 5px;
    height: 5px;
    background: #c5b358;
    border-radius: 50%;
}

.royal-pill-item {
    background: rgba(29, 39, 80, 0.03);
    border: 1px solid rgba(197, 179, 88, 0.2);
    padding: 8px 15px;
    font-weight: 700;
    color: #1d2750;
    transition: 0.3s;
}

.royal-pill-item:hover {
    background: #c5b358;
    color: #fff;
}

.btn-royal-compact {
    background: #1d2750;
    color: #fff;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    border: 1px solid #1d2750;
}

.btn-royal-compact:hover {
    background: transparent;
    color: #1d2750;
    transform: translateY(-5px);
}



/* PAGE HERO */
.unified-hero {
    background: url('../imgs/bg.jpeg') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.unified-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.unified-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.unified-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-wrapper-gray {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Responsive */

@media (max-width: 991px) {
    .page-banner {
        height: 280px;
    }

    .page-banner-title {
        font-size: 2.2rem;
    }

    .about-intro-sec {
        padding: 70px 0;
    }

    .about-imgs {
        height: 320px;
        margin-bottom: 40px;
    }

    .about-img-main {
        height: 260px;
    }

    .about-img-sm {
        height: 170px;
    }

    .royal-card-integrated {
        padding: 40px 20px;
    }

    .card-inner-decor {
        display: none;
    }

    .royal-title-clean {
        font-size: 35px;
    }

    .unified-hero h1 {
        font-size: 2rem;
    }
     .about-hero-title {
        font-size: 2.8rem;
    }

    .about-intro {
        padding: 80px 0;
    }

    .about-intro-images {
        height: 380px;
        margin-bottom: 50px;
    }

    .intro-img-main {
        height: 300px;
    }

    .intro-img-accent {
        height: 190px;
    }

    .intro-exp-badge {
        left: 100px;
        bottom: 80px;
    }

    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-strip-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .contact-strip-btns {
        justify-content: center;
    }
      .hero-slider {
        height: 80vh;
        min-height: 500px;
    }

    .hero-slider-content {
        right: 5%;
        left: 5%;
        text-align: center;
    }

    .hero-slider-title {
        font-size: 2.5rem;
    }

    .hero-slider-controls {
        bottom: 30px;
    }

    .hero-scroll {
        display: none;
    }
     .footer-content {
        padding: 50px 0 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
            .services-grid-about-page {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }
    .why-choose-us {
        padding: 80px 0;
    }

    .why-content {
        padding-left: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .why-title {
        font-size: 2.2rem;
        background: none;
        -webkit-text-fill-color: var(--main-color);
    }

    .why-feature-item {
        text-align: right;
    }

    .why-video-asset {
        height: 450px;
    }

    .creative-video-frame {
        border-radius: 30px 60px 30px 60px;
    }
}

@media (max-width: 576px) {
    .page-banner-title {
        font-size: 1.8rem;
    }

    .about-imgs {
        height: 260px;
    }

    .about-img-main {
        height: 210px;
        width: 90%;
    }

    .about-img-sm {
        height: 140px;
        width: 60%;
    }
    .about-hero {
        height: 60vh;
        min-height: 400px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-intro-content {
        padding-right: 0;
    }

    .about-section-title {
        font-size: 2rem;
    }

    .contact-strip-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .strip-btn {
        width: 100%;
        max-width: 280px;
    }
    .hero-slider-title {
        font-size: 1.8rem;
    }

    .hero-slider-desc {
        font-size: 1rem;
    }

    .hero-slider-btn {
        padding: 15px 30px;
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
    }
      .footer-logo img {
        height: 45px;
    }

    .footer-title {
        font-size: 16px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 14px;
        left: 15px;
        bottom: 15px;
    }
        .why-title {
        font-size: 1.8rem;
    }

    .why-video-asset {
        height: 350px;
    }
}





@media (max-width: 768px) {
    .hero-slider-bg {
        background-image: var(--bg-mobile);
    }
        .services-grid-about-page {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}


@media (max-width: 1199px) {
    .services-grid-about-page {
        gap: 30px;
    }
}


/* Show Package */
.package-card-luxury {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.package-card-luxury:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-medium);
}

.package-card-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.package-card-luxury:hover .package-card-img-box img {
    transform: scale(1.1) rotate(2deg);
}

.package-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
}

.package-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 39, 80, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.package-card-luxury:hover .package-card-overlay {
    opacity: 1;
}

.btn-view-package {
    background: var(--secondary-color);
    color: var(--main-color);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.package-card-luxury:hover .btn-view-package {
    transform: translateY(0);
}

.package-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 3px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.package-price-badge .price {
    font-size: 18px;
}

.package-price-badge .currency {
    font-size: 12px;
}

.package-card-body {
    padding: 30px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-card-icon-main {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border: 5px solid #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.package-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--main-color);
    margin-bottom: 12px;
    margin-top: 10px;
}

.package-card-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.package-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.package-tag {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.package-tag.more {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

.package-card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-whatsapp-package {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.btn-whatsapp-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    color: white;
}

.arrow-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.package-card-luxury:hover .arrow-btn {
    background: var(--main-color);
    color: #fff;
}
