:root {
    --navy: #0A2342;
    --gold: #C8A04F;
    --white: #FFFFFF;
    --light-gray: #F3F4F6;
    --shadow: 0 4px 12px rgba(10, 35, 66, 0.08);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', 'Cairo', sans-serif;
    color: var(--navy);
    background-color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
}

/* Improved Logos Section - محسن للشاشات الصغيرة */
.logos-section {
    padding: 12px 0;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    flex: 0 1 auto;
    min-width: 60px;
    max-width: 80px;
}

.logo-item:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    border-radius: calc(var(--border-radius) - -5px);
    padding: 3px;
    box-shadow: var(--shadow);
    border: 1px solid #e0e0e0;
    margin-bottom: 4px;
}

.logo-label {
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.1;
}

.initiative-title {
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 6px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    padding-bottom: 5px;
}

.initiative-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--navy));
    border-radius: 2px;
}

.initiative-subtitle {
    color: var(--navy);
    font-size: 0.9rem;
    margin-top: 6px;
    opacity: 0.8;
    line-height: 1.3;
}

/* Main Content */
main {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 6px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

/* Governorates Section - إخفاء في الشاشات الصغيرة */
.governorates-section {
    display: block;
}

.governorates-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

#egypt-map {
    height: 100%;
    width: 100%;
}

/* Mobile Menu Button - إخفاء في الشاشات الصغيرة */
.mobile-menu-toggle {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 8px 12px;
    box-shadow: var(--shadow);
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
    font-size: 0.9rem;
}

.mobile-menu-toggle:hover {
    background: var(--gold);
    color: var(--navy);
}

.mobile-menu-toggle::before {
    content: '☰';
    font-size: 1rem;
}

.mobile-menu-toggle.active::before {
    content: '✕';
}

/* Directorates Sidebar */
.directorates-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.directorates-sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.directorates-header {
    padding: 14px;
    background-color: var(--navy);
    color: var(--white);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1;
}

.directorates-header h3 {
    font-size: 1rem;
    margin: 0;
}

.directorates-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
    overflow-y: auto;
    padding: 14px;
    background-color: var(--white);
}

.directorate-item {
    padding: 10px 14px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    border: 2px solid transparent;
    width: 100%;
}

.directorate-item:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.directorate-item.active {
    background-color: var(--gold);
    color: var(--navy);
    font-weight: bold;
    border-color: var(--navy);
}

.selected-governorate-display {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 14px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    border-right: 4px solid var(--gold);
    display: none;
    backdrop-filter: blur(10px);
}

.selected-governorate-display.active {
    display: block;
}

.selected-governorate-display h3 {
    font-size: 0.9rem;
    color: var(--navy);
    margin: 0;
}

/* Courses Section */
#courses {
    margin-top: 30px;
    padding-top: 20px;
    position: relative;
}

#courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
}

.courses-header {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
}

.courses-filter {
    background-color: var(--white);
    padding: 16px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.filter-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.85rem;
}

.filter-select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background-color: var(--white);
    font-size: 0.90rem;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    padding-right: 5%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A2342' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(200, 160, 79, 0.2);
}

.filter-select option {
    font-size: 15px;
    padding: 6px;
    background: var(--white);
    color: var(--navy);
}

.filter-reset {
    background-color: var(--navy);
    color: var(--white);
    border: none;
    padding: 10px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    margin-top: 6px;
    font-size: 0.85rem;
}

.filter-reset:hover {
    background-color: #1a3a5f;
    transform: translateY(-2px);
}

.courses-category {
    margin-bottom: 30px;
    display: none;
}

.courses-category.active {
    display: block;
}

.category-header {
    background-color: var(--navy);
    color: var(--white);
    padding: 14px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-bottom: 0;
}

.category-header h3 {
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    background-color: var(--white);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow);
}

.course-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

.course-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 35, 66, 0.15);
}

.course-header {
    background-color: var(--navy);
    color: var(--white);
    padding: 10px;
}

.course-header h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
    line-height: 1.3;
}

.course-level {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
}

.course-body {
    padding: 10px;
}

.course-description {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.8rem;
    line-height: 1.4;
}

.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
}

.btn:hover {
    background-color: #d4b15e;
    transform: translateY(-2px);
}

.btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 25px 0 14px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    text-align: center;
}

.logo-strip {
    height: 80px;
    max-width: 150px;
    margin: 0 auto 6px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
}

.logo-strip img {
    max-height: 60px;
    max-width: 60px;
    object-fit: contain;
}

.footer-logo p {
    color: var(--white);
    font-size: 0.8rem;
    margin: 0;
}

.footer-contact {
    text-align: center;
}

.footer-contact h3 {
    margin-bottom: 10px;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 5px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 25px;
    height: 2px;
    background-color: var(--gold);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 5px;
    color: #ddd;
    font-size: 0.8rem;
}

.footer-social {
    text-align: center;
}

.footer-social h3 {
    margin-bottom: 10px;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 5px;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 25px;
    height: 2px;
    background-color: var(--gold);
}

.social-links {
    list-style: none;
    padding: 0;
}

.social-links li {
    margin-bottom: 5px;
}

.social-links a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.8rem;
}

.social-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: #aaa;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    text-align: center;
    padding: 16px;
}

.spinner {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--gold);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error Message */
.error-message {
    display: none;
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: var(--border-radius);
    margin: 14px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* Mobile Alert Styles */
.mobile-alert {
    display: none;
    background: linear-gradient(135deg, var(--navy), #1a3a5f);
    color: var(--white);
    padding: 16px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 16px 0;
    box-shadow: var(--shadow);
}

.mobile-alert h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--gold);
}

.mobile-alert p {
    margin-bottom: 12px;
    opacity: 0.9;
    font-size: 0.9rem;
}

.mobile-alert .btn {
    background-color: var(--gold);
    color: var(--navy);
    border: none;
    margin-top: 8px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* إخفاء قسم المحافظات بالكامل في الشاشات الصغيرة */
@media (max-width: 767px) {
    .governorates-section {
        display: none !important;
    }
    
    #courses {
        margin-top: 0;
        padding-top: 0;
    }
    
    #courses::before {
        display: none;
    }
    
    .mobile-alert {
        display: block;
    }
    
    /* تحسينات إضافية للشاشات الصغيرة جداً */
    .logos-container {
        gap: 6px;
    }
    
    .logo-item {
        min-width: 80px;
        max-width: 60px;
    }
    
    .logo-image {
        max-height: 50px;
        padding: 2px;
    }
    
    .logo-label {
        font-size: 0.6rem;
    }
    
    .initiative-title {
        font-size: 1rem;
    }
    
    .initiative-subtitle {
        font-size: 0.75rem;
    }
}

/* Tablets and Small Laptops */
@media (min-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logos-section {
        padding: 16px 0;
    }
    
    .logos-container {
        gap: 16px;
        margin-bottom: 10px;
    }
    
    .logo-item {
        min-width: 70px;
        max-width: 90px;
    }
    
    .logo-image {
        max-height: 50px;
        padding: 4px;
    }
    
    .logo-label {
        font-size: 0.75rem;
    }
    
    .initiative-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .initiative-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .map-container {
        height: 450px;
    }
    
    .courses-filter {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: end;
    }
    
    .filter-group {
        flex: 1;
        min-width: 160px;
    }
    
    .filter-reset {
        width: auto;
        margin-top: 0;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: row;
        gap: 25px;
    }
    
    .footer-logo,
    .footer-contact,
    .footer-social {
        flex: 1;
    }
    
    .mobile-alert {
        display: none;
    }
}

/* Desktop and Large Screens */
@media (min-width: 1024px) {
    .governorates-section {
        display: block;
    }
    
    .governorates-container {
        flex-direction: row;
        gap: 25px;
        align-items: flex-start;
    }
    
    .map-container {
        flex: 1;
        height: 550px;
    }
    
    .directorates-sidebar {
        position: static;
        width: 300px;
        height: 550px;
        box-shadow: var(--shadow);
        transform: none;
        border-radius: var(--border-radius);
        overflow: hidden;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .sidebar-overlay {
        display: none !important;
    }
    
    .directorates-grid {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 18px;
    }
    
    .directorate-item {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
    
    .initiative-title {
        font-size: 1.8rem;
    }
    
    /* تحسين اللوجوهات في الشاشات الكبيرة */
    .logos-container {
        gap: 20px;
    }
    
    .logo-item {
        min-width: 80px;
        max-width: 100px;
    }
    
    .logo-image {
        max-height: 60px;
    }
    
    .logo-label {
        font-size: 0.8rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .directorates-sidebar {
        width: 320px;
    }
    
    .logos-container {
        gap: 24px;
    }
    
    .logo-item {
        min-width: 110px;
        max-width: 110px;
    }
    
    .logo-image {
        max-height: 100px;
    }
}

/* Small Mobile Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .logos-container {
        gap: 4px;
    }
    
    .logo-item {
        min-width: 45px;
        max-width: 55px;
    }
    
    .logo-image {
        max-height: 25px;
        padding: 1px;
    }
    
    .logo-label {
        font-size: 0.55rem;
    }
    
    .initiative-title {
        font-size: 0.9rem;
    }
    
    .courses-grid {
        padding: 12px;
        gap: 12px;
    }
    
    /* تحسينات إضافية للهواتف الصغيرة جداً */
    .courses-filter {
        padding: 12px;
    }
    
    .filter-select {
        font-size: 14px;
    }
}

/* تحسينات خاصة للنوافذ المنبثقة في الهواتف */
@media (max-width: 767px) {
    .filter-select {
        font-size: 16px;
        padding: 12px 10px;
        border: 2px solid #e0e0e0;
    }
    
    .filter-select:focus {
        border-color: var(--gold);
        transform: scale(1.02);
    }
    
    .filter-select option {
        font-size: 14px;
        padding: 10px;
    }
    
    .btn {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .section-title h2 {
        font-size: 1.2rem;
    }
    
    .category-header h3 {
        font-size: 1rem;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* تحسينات خاصة لـ iOS */
@supports (-webkit-touch-callout: none) {
    .filter-select {
        font-size: 16px;
    }
}

/* تحسينات للشاشات الطويلة (مثل الهواتف الحديثة) */
@media (max-width: 767px) and (min-height: 700px) {
    .logos-section {
        padding: 14px 0;
    }
    
    .logo-item {
        min-width: 55px;
        max-width: 65px;
    }
    
    .logo-image {
        max-height: 80px;
    }
}

/* تحسينات للوضع الأفقي في الهواتف */
@media (max-width: 767px) and (orientation: landscape) {
    .logos-container {
        gap: 8px;
    }
    
    .logo-item {
        min-width: 50px;
        max-width: 60px;
    }
    
    .logo-image {
        max-height: 30px;
    }
    
    .initiative-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .initiative-subtitle {
        font-size: 0.75rem;
    }
 
}

/* Floating Guide Button */
.guide-floating-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: linear-gradient(135deg, #0A2342, #1a3a5f);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(10, 35, 66, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guide-floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 35, 66, 0.6);
}

.guide-icon {
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    color: #0A2342;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.guide-text {
    font-weight: 600;
    font-size: 14px;
}

/* Guide Modal */
.guide-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    padding: 20px;
}

.guide-modal.active {
    display: flex !important;
}

.guide-modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.guide-modal-header {
    background: linear-gradient(135deg, #0A2342, #1a3a5f);
    color: #FFFFFF;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-modal-header h3 {
    margin: 0;
    font-size: 1.3em;
    flex: 1;
    text-align: center;
}

.guide-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.guide-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.guide-modal-body {
    padding: 25px;
    max-height: 400px;
    overflow-y: auto;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 12px;
    border-right: 4px solid #0A2342;
}

.step-number {
    background: #0A2342;
    color: #FFFFFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 8px 0;
    color: #0A2342;
    font-size: 1.1em;
}

.step-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.95em;
}

.guide-modal-footer {
    padding: 20px;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #eee;
}

.guide-got-it {
    background: linear-gradient(135deg, #0A2342, #1a3a5f);
    color: #FFFFFF;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 35, 66, 0.3);
}

.guide-got-it:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 35, 66, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .guide-floating-btn {
        bottom: 20px;
        left: 20px;
        padding: 10px 16px;
    }
    
    .guide-text {
        font-size: 13px;
    }
    
    .guide-modal-content {
        margin: 10px;
        max-height: 85vh;
    }
    
    .guide-modal-body {
        padding: 20px;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .guide-floating-btn {
        bottom: 15px;
        left: 15px;
        padding: 8px 12px;
    }
    
    .guide-text {
        display: none;
    }
    
    .guide-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .guide-modal-header h3 {
        font-size: 1.1em;
    }
    
    .guide-step {
        padding: 12px;
    }
    
    .step-content h4 {
        font-size: 1em;
    }
    
    .step-content p {
        font-size: 0.9em;
    }
}

