@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* إزالة أي خلفية للجسم */
    body {
        background-color: transparent;
        top: 0 !important;
    }

    /* إخفاء شريط الترجمة من جوجل */
    .skiptranslate iframe,
    .skiptranslate,
    body>.skiptranslate,
    iframe.skiptranslate,
    #goog-gt-tt,
    .goog-te-banner-frame,
    .goog-te-balloon-frame {
        display: none !important;
    }

    /* تصميم الناف بار */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 0 5%;
        transition: all 0.4s ease;
        height: 80px;
        top: 40px;
        /* المسافة العلوية الافتراضية */
        background-color: transparent;
        /* شفاف تمامًا */
    }

    .navbar.scrolled {
        top: 0;
        /* إزالة المسافة عند التمرير */
        height: 70px;
        backdrop-filter: blur(10px);
        /* تأثير الضبابية */
        background-color: rgba(255, 255, 255, 0.85);
        /* شفافية مع ضبابية */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        gap: 14px;
    }

    /* اللوجو */
    .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .logo img {
        transition: all 0.4s ease;
        height: 50px;
        /* ارتفاع ثابت للوجو */
        width: auto;
    }

    /* إظهار اللوجو المناسب حسب حالة السكرول */
    #logo-light {
        display: block;
    }

    #logo-dark {
        display: none;
    }

    .navbar.scrolled #logo-light {
        display: none;
    }

    .navbar.scrolled #logo-dark {
        display: block;
    }

    /* عناصر التنقل المركزية */
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
        align-items: center;
    }

    .nav-item {
        position: relative;
    }

    /* العناصر العادية */
    .nav-link {
        text-decoration: none;
        color: #f2b66b;
        font-weight: 600;
        font-size: 1.05rem;
        padding: 8px 0;
        transition: color 0.3s;
        position: relative;
    }

    .navbar.scrolled .nav-link {
        color: #f2b66b;
    }

    .nav-link:hover {
        color: #b58517;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: #b58517;
        bottom: 0;
        left: 0;
        transition: width 0.3s;
    }

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

    /* المنيو المنسدل */
    .dropdown {
        position: relative;
    }

    .dropdown-toggle {
        text-decoration: none;
        color: #f2b66b;
        font-weight: 600;
        font-size: 1.05rem;
        padding: 8px 0;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: color 0.3s;
    }

    .dropdown-toggle i {
        transition: transform 0.3s;
    }

    .dropdown-toggle:hover i {
        transform: rotate(180deg);
    }

    .dropdown-toggle:hover {
        color: #b58517;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 200px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 100;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item {
        display: block;
        padding: 12px 20px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #f5f5f5;
        transition: all 0.3s;
    }

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

    .dropdown-item:hover {
        background: #f2b66b;
        color: white;
        padding-right: 25px;
    }

    /* الأزرار على اليمين */
    .nav-buttons {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    /* زر Get Quote */
    .btn-get-quote {
        border: 2px solid #f2b66b;
        color: #f2b66b;
        background-color: transparent;
        text-decoration: none;
        padding: 10px 24px;
        border-radius: 4px;
        font-weight: 600;
        display: inline-block;
        transition: all 0.3s;
    }

    .btn-get-quote:hover {
        background-color: #f2b66b;
        color: white;
    }

    /* زر Book Now */
    .btn-book-now {
        background-color: #f2b66b;
        color: white;
        text-decoration: none;
        padding: 10px 24px;
        border-radius: 4px;
        font-weight: 600;
        display: inline-block;
        border: 2px solid #f2b66b;
        transition: all 0.3s;
    }

    .btn-book-now:hover {
        background-color: #b58517;
        border-color: #b58517;
    }

    /* زر القائمة المنسدلة للشاشات الصغيرة */
    .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #f2b66b;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    /* Custom Language Switcher */
    .custom-lang-switcher {
        position: relative;
        min-width: 160px;
    }

    .lang-button {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 10px;
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .navbar.scrolled .lang-button {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.15);
        color: #333;
    }

    .navbar.scrolled .lang-button:hover {
        background: rgba(0, 0, 0, 0.1);
    }

    .lang-button:hover {
        background: rgba(255, 255, 255, 0.15);
    }

    .lang-button .flag {
        font-size: 20px;
        line-height: 1;
    }

    .lang-button .lang-name {
        flex: 1;
        text-align: left;
        font-size: 14px;
        white-space: nowrap;
    }

    .lang-button .chevron {
        transition: transform 0.3s ease;
        width: 16px;
        height: 16px;
    }

    .lang-dropdown.show .chevron {
        transform: rotate(180deg);
    }

    .lang-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 100%;
        max-height: 320px;
        overflow-y: auto;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .lang-dropdown.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .lang-option {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        color: #333;
        text-decoration: none;
        transition: all 0.2s ease;
        border-bottom: 1px solid #f0f0f0;
    }

    .lang-option:last-child {
        border-bottom: none;
    }

    .lang-option:hover {
        background: #f2b66b;
        color: #fff;
    }

    .lang-option.active {
        background: #f2b66b;
        color: #fff;
        font-weight: 600;
    }

    .lang-option .flag {
        font-size: 22px;
        line-height: 1;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        padding: 20px;
    }

    .mobile-menu-content.active {
        right: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #333;
        cursor: pointer;
    }

    .mobile-nav-menu {
        list-style: none;
    }

    .mobile-nav-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #f5f5f5;
        padding-bottom: 15px;
    }

    .mobile-nav-link {
        display: block;
        color: #333;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        padding: 10px 0;
        transition: color 0.3s;
    }

    .mobile-nav-link:hover {
        color: #f2b66b;
    }

    .mobile-dropdown-toggle {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        color: #333;
        font-size: 1.1rem;
        font-weight: 500;
        padding: 10px 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-dropdown-menu {
        padding-right: 20px;
        margin-top: 10px;
        display: none;
    }

    .mobile-dropdown-menu.active {
        display: block;
    }

    .mobile-dropdown-item {
        display: block;
        padding: 8px 0;
        color: #666;
        text-decoration: none;
        font-size: 1rem;
    }

    .mobile-dropdown-item:hover {
        color: #f2b66b;
    }

    .mobile-nav-buttons {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-btn-get-quote {
        border: 2px solid #f2b66b;
        color: #f2b66b;
        background: transparent;
        padding: 12px;
        border-radius: 4px;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
    }

    .mobile-btn-book-now {
        background: #f2b66b;
        color: white;
        padding: 12px;
        border-radius: 4px;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
    }

    /* مهم: switcher إضافي في شريط الموبايل (جنب التوجلر) */
    .mobile-lang-top {
        display: none;
        /* Desktop hidden */
    }

    /* Scrollbar styling */
    .lang-dropdown::-webkit-scrollbar {
        width: 6px;
    }

    .lang-dropdown::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .lang-dropdown::-webkit-scrollbar-thumb {
        background: #f2b66b;
        border-radius: 10px;
    }

    /* تصميم متجاوب للشاشات الصغيرة */
    @media (max-width: 992px) {
        .navbar {
            height: 70px;
            top: 0;
            backdrop-filter: blur(5px);
            background-color: rgba(255, 255, 255, 0.2);
            padding: 0 20px;
        }

        .navbar.scrolled {
            height: 65px;
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        /* التوغلر على اليمين */
        .menu-toggle {
            display: block;
            order: 3;
        }

        /* اللوجو على اليسار */
        .logo {
            order: 1;
            margin-right: 0;
        }

        .logo img {
            height: 40px;
        }

        /* إظهار ترجمة في شريط الموبايل */
        .mobile-lang-top {
            display: block;
            order: 2;
            min-width: 130px;
        }

        /* تصغير زر اللغة شوية للموبايل */
        .mobile-lang-top .lang-button {
            padding: 8px 10px;
            border-radius: 12px;
        }

        .mobile-lang-top .lang-name {
            font-size: 13px;
        }

        #scrollToTop {
            display: none !important;
        }

        /* إخفاء القائمة والأزرار في الشاشات الصغيرة */
        .nav-menu,
        .nav-buttons {
            display: none;
        }

        /* جعل الناف بار شفاف في الموبايل قبل السكرول */
        .navbar:not(.scrolled) {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(3px);
        }
    }

    @media (max-width: 576px) {
        .navbar {
            padding: 0 15px;
        }

        .logo img {
            max-width: 140px;
            height: 35px;
        }

        .menu-toggle {
            font-size: 1.5rem;
        }

        .navbar:not(.scrolled) {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .mobile-lang-top {
            min-width: 118px;
        }

        .mobile-lang-top .lang-name {
            display: none;
            /* نخفي الاسم في الشاشات الصغيرة جدًا (يظهر العلم فقط) */
        }

        .mobile-lang-top .lang-button {
            justify-content: center;
            gap: 6px;
        }
    }


/* end of nav bar */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #f2b66b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b58517;
}

/* Animation for counters */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.counter-animate {
    animation: countUp 1s ease-out forwards;
}

/* Hero section text animation */
.hero-text {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tour card hover effect */
.tour-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Testimonial card hover effect */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Button hover effects */
.btn-primary {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}



    nav.scrolled {
        position: fixed !important;
        background: white !important;
        backdrop-filter: blur(0px) !important;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        top:0px;
        color:#000 !important;
    }







    /* guest form */
        :root {
            --primary: #4361ee;
            --secondary: #3a0ca3;
            --accent: #4cc9f0;
            --success: #2ecc71;
            --warning: #f39c12;
            --danger: #e74c3c;
            --light: #f8f9fa;
            --dark: #212529;
            --gradient: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --radius: 15px;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            padding: 20px;
        } 

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }*/

        .booking-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }

        .header-section {
            background: var(--gradient);
            color: white;
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.2;
        }

        .service-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .price-tag {
            background: white;
            color: var(--primary);
            display: inline-block;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.5rem;
            margin-top: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            padding: 40px;
        }

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

        .service-details {
            background: var(--light);
            padding: 30px;
            border-radius: var(--radius);
            border-left: 5px solid var(--primary);
        }

        .detail-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .detail-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .booking-form {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            border: 2px solid rgba(67, 97, 238, 0.1);
        }

        .form-group {
            margin-bottom: 25px;
        }

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

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
            background: #f8f9fa;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
        }

        .account-type-section {
            background: #f8f9ff;
            padding: 25px;
            border-radius: var(--radius);
            margin-bottom: 30px;
            border: 2px solid rgba(67, 97, 238, 0.2);
        }

        .account-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .account-option {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            background: white;
        }

        .account-option:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }

        .account-option.active {
            border-color: var(--primary);
            background: rgba(67, 97, 238, 0.05);
        }

        .account-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .guest-form-fields,
        .existing-form-fields {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .guest-form-fields.active,
        .existing-form-fields.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .payment-section {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 2px dashed #e0e0e0;
        }

        .payment-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .payment-option {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            background: white;
        }

        .payment-option:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }

        .payment-option.active {
            border-color: var(--primary);
            background: rgba(67, 97, 238, 0.05);
        }

        .payment-logo {
            width: 40px;
            height: 40px;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
        }

        .payment-logo img {
            max-width: 100%;
            max-height: 100%;
        }

        .user-balance-info {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin-top: 10px;
            display: none;
        }

        .user-balance-info.active {
            display: block;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .balance-amount {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin: 10px 0;
        }

        .submit-btn {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 40px auto 0;
            width: 100%;
            max-width: 300px;
            box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
        }

        .submit-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .secure-notice {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 0.9rem;
        }

        .secure-notice i {
            color: var(--success);
            margin-right: 5px;
        }

        .step-indicator {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            padding: 0 30px;
        }

        .step::after {
            content: '';
            position: absolute;
            top: 20px;
            right: -15px;
            width: 30px;
            height: 2px;
            background: #e0e0e0;
        }

        .step:last-child::after {
            display: none;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: #e0e0e0;
            color: #666;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 10px;
            transition: all 0.3s;
        }

        .step.active .step-number {
            background: var(--primary);
            color: white;
        }

        .step-title {
            font-size: 0.9rem;
            color: #666;
        }

        .step.active .step-title {
            color: var(--primary);
            font-weight: 600;
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .feature-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .alert {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: none;
        }

        .alert-success {
            background: rgba(46, 204, 113, 0.1);
            border: 2px solid #2ecc71;
            color: #27ae60;
        }

        .alert-danger {
            background: rgba(231, 76, 60, 0.1);
            border: 2px solid #e74c3c;
            color: #c0392b;
        }

        .manual-data-fields {
            display: none;
            margin-top: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }

        .manual-data-fields.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .auth-info {
            background: rgba(67, 97, 238, 0.1);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: center;
            border: 2px solid var(--primary);
        }

        .auth-info i {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
