/* =============================================================
   Unified Dark Theme (theme-dark.css)
   Combines the global dark site styles with Smart Search Modal styles.
   ------------------------------------------------------------- */
:root {
  --bg-body: #1a1a1a;
  --color-text: #fafafa;
  --accent: #ff6600; /* deep orange accent */
  --radius: 15px;
  --primary: #2c3e50;
  --muted-gray: #666666;
  --bg-dark: #0f0f0f;
  --bg-light: #1d1d1d;
  --transition-fast: 0.25s ease-in-out;
}

/* ================== GLOBAL RESETS =================== */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Arial,Helvetica,sans-serif;background:var(--bg-body);color:var(--color-text);}

/* HEADER / NAVBAR (from preferred style) */
.header{background:rgba(0,0,0,.8);padding:10px 0;position:fixed;width:100%;top:0;z-index:1000}
.nav{display:flex;justify-content:space-between;align-items:center;max-width:1200px;margin:0 auto;padding:0 20px}
.nav-left{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.nav-item{color:#fff;text-decoration:none;padding:8px 15px;border-radius:5px;transition:background .3s;display:flex;align-items:center;gap:5px}
.nav-item:hover{background:rgba(255,255,255,.1)}
.logo{font-size:24px;font-weight:bold;color:#fff}
.login-btn{background:#fff;color:#000;padding:8px 20px;border-radius:20px;text-decoration:none;font-weight:bold}
.nav-icon{width:16px;height:16px}

/* HERO */
.hero{background-size:cover;background-position:center;height:100vh;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding-top:80px}
.hero h1{font-size:4rem;margin-bottom:30px;text-shadow:2px 2px 4px rgba(0,0,0,.8)}
.search-container{background:transparent;padding:15px 30px;border-radius:25px;display:flex;align-items:center;gap:10px}
.search-btn{background:transparent;border:none;color:#000;font-size:16px;cursor:pointer;padding:5px 10px}
.hero-search-btn{background:#000!important;color:#fff!important;border:2px solid var(--accent);padding:12px 24px;border-radius:8px;font-weight:600;font-size:16px;transition:all .3s ease;display:flex;align-items:center;justify-content:center}
.hero-search-btn:hover{background:var(--accent)!important;color:#000!important;transform:translateY(-2px);box-shadow:0 4px 12px rgba(255,102,0,.3)}

/* FEATURED GRID + VISION */
.featured{padding:80px 20px;max-width:1200px;margin:0 auto}
.featured h2{font-size:2.5rem;margin-bottom:40px}
.destinations-grid,.vision-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;margin-bottom:80px}
.destination-card,.vision-card{background-size:cover;background-position:center;height:200px;border-radius:15px;display:flex;align-items:flex-end;padding:20px;cursor:pointer;transition:transform .3s;position:relative;overflow:hidden}
.destination-card::before,.vision-card::before{content:"";position:absolute;inset:0;background:linear-gradient(transparent,rgba(0,0,0,.7))}
.destination-card:hover,.vision-card:hover{transform:translateY(-5px)}
.destination-card h3,.vision-card h3{font-size:1.5rem;z-index:1;position:relative}
.destination-card p{font-size:1rem;z-index:1;position:relative;margin-top:5px}

/* FOOTER */
.footer{border-top:1px solid #333;padding:40px 20px 20px;max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:20px}
.footer-logo{font-size:2rem;font-weight:bold}
.footer-text{color:#ccc}
.footer-links{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:40px;margin-bottom:40px}
.footer-section h3{font-size:1.5rem;margin-bottom:20px;color:#fff}
.footer-section a{display:block;color:#ccc;text-decoration:none;margin-bottom:10px;transition:color .3s}
.footer-section a:hover{color:#fff}
/* Social Icons - White & Black Theme */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: #000;
    color: #fff;
    border-color: #FF6600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Footer Logo Styling */
.footer-logo img {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* يجعل اللوجو أبيض */
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Newsletter Form Styling */
.newsletter {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    display: flex;
}

.newsletter h3 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}

.newsletter-text {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    color: #fff;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 5px;
    padding: 12px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #FF6600;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

.newsletter-form button {
    background: #FF6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #E55A00;
}

/* RESPONSIVE */
@media(max-width:768px){.hero h1{font-size:2.5rem}.nav{flex-direction:column;gap:10px}}

/* ================= SMART SEARCH MODAL (merged) ================= */
#smartSearchModal{display:none!important;position:fixed;top:0;left:0;width:100%;height:100%;z-index:1055;overflow-y:auto;background:rgba(0,0,0,.6)}
#smartSearchModal.show{display:flex!important;align-items:center;justify-content:center}
#smartSearchModal .modal-content{background:var(--bg-dark);color:var(--color-text);border-radius:var(--radius);border:1px solid rgba(255,255,255,.06);box-shadow:0 24px 48px rgba(0,0,0,.75)}
#smartSearchModal input:focus,#smartSearchModal select:focus,#smartSearchModal button:focus{outline:none;box-shadow:0 0 0 2px var(--accent)}
.search-tabs{display:flex;gap:.5rem;flex-wrap:wrap}
.search-tab{flex:1 1 auto;background:var(--bg-light);border:1px solid var(--muted-gray);color:#ddd;padding:.55rem .75rem;font-size:.875rem;font-weight:500;border-radius:var(--radius);display:flex;align-items:center;justify-content:center;gap:.35rem;transition:background var(--transition-fast),color var(--transition-fast),border var(--transition-fast)}
.search-tab .radio-dot{display:inline-block;width:8px;height:8px;border-radius:50%;background:transparent;border:2px solid var(--muted-gray);transition:background var(--transition-fast),border var(--transition-fast)}
.search-tab.active{background:var(--primary);color:#fff;border-color:var(--primary)}
.search-tab.active .radio-dot{background:#fff;border-color:#fff}
.search-tab:hover:not(.active){border-color:var(--accent);color:#eee}
.destination-input,.date-input,.nights-input,.guests-input,.children-input,.rooms-input,.dropdown-select{width:100%;background:var(--bg-light);border:1px solid rgba(255,255,255,.08);color:var(--color-text);padding:.6rem .75rem;border-radius:var(--radius);font-size:.925rem;transition:border var(--transition-fast),background var(--transition-fast)}
.destination-input::placeholder{color:var(--muted-gray)}
.destination-input:focus,.date-input:focus,.dropdown-select:focus,.rooms-input:focus{border-color:var(--accent)}
.date-section-title{font-size:.9rem;font-weight:600;color:#ddd;margin-top:1.25rem;margin-bottom:.35rem}
.date-inputs{display:grid;gap:.5rem;grid-template-columns:repeat(2,1fr)}
.guests-section .nights-guests-row,.guests-section .children-row{display:grid;gap:.75rem;margin-bottom:.75rem}
.nights-guests-row{grid-template-columns:1fr 1fr}
.children-row{grid-template-columns:1fr;gap:.5rem}
.children-ages-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:.5rem;margin-top:.5rem}
.search-btn{background:var(--accent);color:#000;font-weight:600;padding:.65rem 1rem;margin-top:1.5rem;border:none;border-radius:var(--radius);transition:opacity var(--transition-fast),transform var(--transition-fast)}
.search-btn:hover{opacity:.9;transform:translateY(-2px)}
.search-btn:active{transform:translateY(0)}
@media(max-width:576px){.date-inputs{grid-template-columns:1fr}.nights-guests-row,.children-row,.rooms-row{grid-template-columns:1fr}}

/* ===== Complete Bootstrap Modal Replacement ===== */
.modal{position:fixed;top:0;right:0;bottom:0;left:0;display:none;overflow-x:hidden;overflow-y:auto;outline:0;z-index:1055}
.modal.show{display:flex!important;align-items:center;justify-content:center}
body.modal-open{overflow:hidden}
.modal-backdrop{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.6);z-index:1050}
.modal.fade{opacity:0;transition:opacity .3s ease}
.modal.fade.show{opacity:1}
.modal-dialog{position:relative;width:90%;max-width:500px;margin:0 auto;pointer-events:none}
.modal-dialog .modal-content{pointer-events:auto;border:none;border-radius:var(--radius);position:relative;display:flex;flex-direction:column;width:100%;padding:1.5rem}
.modal.fade .modal-dialog{transform:translateY(-20px);transition:transform .3s ease}
.modal.fade.show .modal-dialog{transform:translateY(0)}
.modal-body{position:relative;flex:1 1 auto;padding:1rem}

/* Top Destination Cities Styles */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.destination-card {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.destination-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    color: white;
}

.destination-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.destination-btn {
    background: white;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.destination-btn:hover {
    background: transparent;
    color: white;
    border-color: #FF6600;
    transform: scale(1.05);
}

/* Feature Destinations Cards (Smaller version of feature-cards) */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-destination-card {
    position: relative;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.feature-destination-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    border-color: #FF6600;
}

.feature-destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
    text-align: center;
}

.feature-destination-content h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 0.3rem 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.feature-destination-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.8rem 0;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.feature-destination-btn {
    background: white;
    color: #000;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.feature-destination-btn:hover {
    background: transparent;
    color: white;
    border-color: #FF6600;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

/* Feature Vision Cards (Our Vision section - simplified square design) */
.feature-vision-card {
    position: relative;
    height: 200px; /* مربع مثل كروت الوجهات المميزة */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    display: flex;
    align-items: flex-end;
}

.feature-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
    border-color: #FF6600;
}

.feature-vision-content {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    text-align: center;
}

.feature-vision-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transition: color 0.3s ease;
}

.feature-vision-card:hover .feature-vision-content h3 {
    color: #FFB366;
}

/* ================= AUTH PAGES UNIFIED STYLES ================= */

/* Auth Container - replaces gradient backgrounds with dark theme */
.auth-container {
    background: var(--bg-body);
    min-height: auto;
    padding: 2rem 0 4rem 0;
    margin-top: 80px; /* Push content below fixed header */
}

/* Auth Card - unified dark card style */
.auth-card {
    border: none;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid rgba(255,255,255,0.1);
}

.auth-card .card-body {
    padding: 2rem;
}

/* Auth Header */
.auth-header {
    text-align: center;
    padding: 1rem 0 1.5rem;
    position: relative;
}

.auth-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, #E55A00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.auth-header h2 {
    color: var(--color-text);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* Auth Form Inputs - unified floating style */
.form-floating-modern {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-floating-modern .form-control {
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.1);
    padding: 1.5rem 1rem 0.5rem 1rem;
    height: calc(3.5rem + 2px);
    background: rgba(255,255,255,0.05);
    color: var(--color-text);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-floating-modern .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
    background: rgba(255,255,255,0.08);
    outline: none;
}

.form-floating-modern .form-control::placeholder {
    color: transparent;
}

.form-floating-modern label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    background: transparent;
    padding: 0 0.5rem;
    color: var(--muted-gray);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
}

.form-floating-modern .form-control:focus ~ label,
.form-floating-modern .form-control:not(:placeholder-shown) ~ label {
    top: 0.5rem;
    left: 1rem;
    transform: translateY(0);
    font-size: 0.85rem;
    color: var(--accent);
    background: var(--bg-light);
    padding: 0 0.5rem;
}

/* Auth Buttons - unified with home page style */
.btn-auth-primary {
    background: var(--accent) !important;
    border: 2px solid var(--accent);
    color: #000 !important;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-auth-primary:hover {
    background: #E55A00 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    border-color: #E55A00;
}

.btn-auth-primary:active {
    transform: translateY(0);
}

.btn-auth-primary:disabled {
    background: #666 !important;
    border-color: #666;
    color: #999 !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-auth-primary .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-auth-primary .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Google/Social Auth Button */
.btn-google-modern {
    background: var(--bg-dark);
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--color-text);
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-google-modern:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent);
    color: var(--color-text);
    transform: translateY(-1px);
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.divider span {
    background: var(--bg-light);
    padding: 0 1rem;
    color: var(--muted-gray);
    font-size: 0.9rem;
}

/* Auth Links */
.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.auth-links a:hover {
    color: #E55A00;
    transform: translateY(-1px);
}

/* Custom Checkbox for Register */
.custom-checkbox {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text);
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--accent);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--accent);
    border-color: var(--accent);
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-weak { background: #dc3545; }
.strength-fair { background: #ffc107; }
.strength-good { background: #17a2b8; }
.strength-strong { background: #28a745; }

/* Password Strength Text */
.password-strength small {
    color: var(--color-text) !important;
    font-size: 0.85rem;
}

/* Info Box for Forgot Password */
.info-box {
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

/* Auth Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-card {
    animation: fadeInUp 0.6s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .auth-container {
        padding: 1rem 0 2rem 0;
        margin-top: 70px;
    }
    
    .auth-card .card-body {
        padding: 1.5rem;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
    
    .destination-card {
        height: 180px;
    }
    
    .destination-content {
        padding: 1rem;
    }
    
    .destination-content h3 {
        font-size: 1.3rem;
    }
    
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .feature-destination-card {
        height: 140px;
    }
    
    .feature-destination-content {
        padding: 0.8rem;
    }
    
    .feature-destination-content h3 {
        font-size: 1rem;
    }
    
    .feature-destination-description {
        font-size: 0.7rem;
    }
    
    .feature-vision-card {
        height: 140px; /* نفس حجم كروت الوجهات في الهاتف */
    }
    
    .feature-vision-content {
        padding: 1rem;
    }
    
    .feature-vision-content h3 {
        font-size: 1.3rem;
    }
    
    /* Footer responsive */
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .newsletter {
        max-width: 100%;
        width: 100%;
    }
    
    .footer-logo img {
        max-height: 40px;
    }
    
    .footer-logo-text {
        font-size: 1.8rem;
    }
}

/* ================= STATIC PAGES STYLES ================= */
/* أنماط الصفحات الثابتة المتوافقة مع التصميم المظلم الموحد */

/* قسم الهيرو للصفحات الثابتة */
.static-hero-section {
    width: 100vw;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    margin-top: 70px; /* مساحة للهيدر الثابت */
    font-family: 'Cairo', 'Poppins', Arial, sans-serif;
}

.static-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(255,102,0,0.3) 100%);
    z-index: 1;
}

.static-hero-title {
    position: relative;
    z-index: 2;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.8);
    text-align: center;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

/* أقسام المحتوى */
.static-page-component {
    padding: 80px 0;
    position: relative;
}

.static-page-component .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.static-page-component.bg-dark {
    background: linear-gradient(135deg, var(--bg-dark, #0f0f0f) 0%, var(--bg-light, #1d1d1d) 100%);
}

.static-page-component.bg-accent {
    background: linear-gradient(135deg, rgba(255,102,0,0.1) 0%, rgba(255,102,0,0.05) 100%);
    border-top: 2px solid var(--accent, #ff6600);
    border-bottom: 2px solid var(--accent, #ff6600);
}

/* تخطيط المحتوى */
.static-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.static-content-wrapper.position-right {
    flex-direction: row-reverse;
}

.static-content-media, .static-content-text {
    flex: 1 1 45%;
    min-width: 300px;
}

.static-content-media img, .static-content-media .ratio {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255,102,0,0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.static-content-media img:hover, .static-content-media .ratio:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,102,0,0.3);
}

.static-content-text {
    line-height: 1.9;
    font-size: 1.2rem;
    color: var(--color-text, #fafafa);
    font-family: 'Cairo', 'Poppins', Arial, sans-serif;
    word-spacing: 0.15em;
    letter-spacing: 0.03em;
    text-rendering: optimizeLegibility;
    max-width: 100%;
}

.static-content-text h1,
.static-content-text h2, 
.static-content-text h3,
.static-content-text h4,
.static-content-text h5,
.static-content-text h6 {
    color: var(--accent, #ff6600);
    margin-bottom: 30px;
    margin-top: 40px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.static-content-text h1 {
    font-size: 2.8rem;
    margin-top: 0;
    margin-bottom: 40px;
}

.static-content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
}

.static-content-text h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.static-content-text p {
    margin-bottom: 30px;
    text-align: justify;
    line-height: 2.1;
    text-indent: 1.5em;
    hyphens: auto;
    word-break: break-word;
}

.static-content-text p:first-of-type {
    text-indent: 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: #e0e0e0;
}

.static-content-text ul,
.static-content-text ol {
    margin-bottom: 30px;
    padding-left: 40px;
    line-height: 2.1;
}

.static-content-text li {
    margin-bottom: 15px;
    line-height: 2.1;
    padding-left: 10px;
}

.static-content-text blockquote {
    border-left: 4px solid var(--accent, #ff6600);
    padding: 25px 30px;
    margin: 30px 0;
    background: rgba(255,102,0,0.08);
    border-radius: 8px;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 2;
}

.static-content-text strong,
.static-content-text b {
    color: var(--accent, #ff6600);
    font-weight: 700;
}

.static-content-text em,
.static-content-text i {
    color: #f0f0f0;
    font-style: italic;
}

.static-content-text a {
    color: var(--accent, #ff6600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.static-content-text a:hover {
    color: #FFB366;
    text-decoration: underline;
}

/* معرض الصور الثلاثي */
.static-triple-image-gallery {
    background: var(--bg-light, #1d1d1d);
    border-radius: 20px;
    padding: 80px 40px;
    margin: 40px 0;
}

.static-triple-image-gallery .gallery-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.static-triple-image-gallery .gallery-item:hover {
    transform: translateY(-10px);
}

.static-triple-image-gallery .gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 3px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.static-triple-image-gallery .gallery-item img:hover {
    border-color: var(--accent, #ff6600);
    transform: scale(1.05);
}

/* قسم دعوة للعمل */
.static-cta-section {
    background: var(--bg-dark, #0f0f0f);
    padding: 80px 0;
    text-align: center;
}

.static-cta-section h3 {
    color: var(--accent, #ff6600);
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Cairo', 'Poppins', Arial, sans-serif;
}

.static-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--color-text, #fafafa);
    font-family: 'Cairo', 'Poppins', Arial, sans-serif;
}

.static-btn {
    background: var(--accent, #ff6600);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin: 0 10px;
    font-family: 'Cairo', 'Poppins', Arial, sans-serif;
}

.static-btn:hover {
    background: #E55A00;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,102,0,0.3);
}

.static-btn-outline {
    background: transparent;
    color: var(--accent, #ff6600);
    border: 2px solid var(--accent, #ff6600);
}

.static-btn-outline:hover {
    background: var(--accent, #ff6600);
    color: #000;
}

/* تأثيرات التمرير */
.static-fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* دعم اللغة العربية والتوجه RTL */
[dir="rtl"] .static-content-wrapper.position-right {
    flex-direction: row;
}

[lang="ar"] .static-content-text,
[lang="ar"] .static-hero-title {
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* تحسينات إضافية لتنظيم النص */
.static-content-text .row {
    max-width: 900px;
    margin: 0 auto;
}

.static-content-text .col-lg-10,
.static-content-text .col-xl-8 {
    padding: 0 40px;
}

/* تحسين عرض الفقرات الطويلة */
.static-content-text p {
    column-count: 1;
    column-gap: 40px;
    text-align: justify;
    text-justify: inter-word;
}

@media (min-width: 1200px) {
    .static-content-text p {
        column-count: 1;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* تحسينات الاستجابة للصفحات الثابتة */
@media (max-width: 768px) {
    .static-hero-section {
        height: 50vh;
        min-height: 300px;
        background-attachment: scroll;
        margin-top: 60px;
    }

    .static-content-wrapper {
        flex-direction: column !important;
        gap: 40px;
    }

    .static-page-component {
        padding: 60px 0;
    }
    
    .static-page-component .container {
        padding: 0 15px;
    }

    .static-triple-image-gallery {
        padding: 60px 20px;
        margin: 20px 0;
    }

    .static-content-text {
        font-size: 1.1rem;
        line-height: 1.9;
    }
    
    .static-content-text .col-lg-10,
    .static-content-text .col-xl-8 {
        padding: 0 15px;
    }
    
    .static-content-text h1 {
        font-size: 2rem;
    }
    
    .static-content-text h2 {
        font-size: 1.7rem;
    }
    
    .static-content-text h3 {
        font-size: 1.5rem;
    }
    
    .static-content-text p {
        margin-bottom: 25px;
        line-height: 1.9;
        text-indent: 1em;
        column-count: 1;
    }
    
    .static-btn {
        margin: 5px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .static-hero-section {
        height: 40vh;
        min-height: 250px;
        margin-top: 50px;
    }

    .static-hero-title {
        font-size: 2rem;
    }

    .static-page-component {
        padding: 40px 0;
    }
    
    .static-cta-section {
        padding: 60px 0;
    }
}

/* ===============================================================
   CCATOO REELS - ENHANCED DARK THEME STYLES
   =============================================================== */

/* Hero Section */
.reels-hero-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.95) 100%);
    border-bottom: 2px solid var(--accent);
    padding: 20px 0;
}

.reels-hero-title {
    color: var(--color-text);
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.reels-hero-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.reels-stats .stat-item {
    color: var(--color-text);
    font-weight: 500;
}

.text-orange {
    color: var(--accent) !important;
}

.btn-upload-reel {
    background: linear-gradient(45deg, #000000, #333333);
    border: 2px solid var(--accent);
    color: var(--color-text);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-upload-reel:hover {
    background: linear-gradient(45deg, var(--accent), #E65100);
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,102,0,0.3);
}

/* Floating Navigation */
.reels-floating-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.9);
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 10px 20px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.reels-floating-nav .nav-container {
    display: flex;
    gap: 25px;
    align-items: center;
}

.reels-floating-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--color-text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.reels-floating-nav .nav-item:hover {
    background: rgba(255,102,0,0.2);
    color: var(--accent);
    transform: translateY(-2px);
}

.reels-floating-nav .nav-item.active {
    background: var(--accent);
    color: var(--color-text);
}

.reels-floating-nav .nav-item.nav-upload {
    background: linear-gradient(45deg, var(--accent), #E65100);
    color: var(--color-text);
    font-weight: 600;
}

.reels-floating-nav .nav-item.nav-upload:hover {
    background: linear-gradient(45deg, #E65100, #D84315);
    transform: translateY(-3px) scale(1.05);
}

.reels-floating-nav .nav-item i {
    font-size: 1.2rem;
}

.reels-floating-nav .nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Enhanced Feed Video Item */
.feed-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    scroll-snap-align: start;
    border-radius: 0;
    background: #000000;
}

.feed-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.overlay-actions {
    position: absolute;
    right: 15px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    color: var(--color-text);
    font-size: 1.4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.overlay-actions button {
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(255,102,0,0.8);
    color: var(--color-text);
    border-radius: 50px;
    padding: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.overlay-actions button:hover {
    background: rgba(255,102,0,0.9);
    border-color: var(--color-text);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255,102,0,0.4);
}

.overlay-actions button small {
    font-size: 0.7rem;
    margin-top: 2px;
    font-weight: 600;
}

.overlay-info {
    position: absolute;
    left: 15px;
    bottom: 120px;
    background: rgba(0,0,0,0.8);
    color: var(--color-text);
    font-size: 0.95rem;
    max-width: 70%;
    word-wrap: break-word;
    padding: 15px 20px;
    border-radius: 20px;
    border: 2px solid rgba(255,102,0,0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.overlay-info strong {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
}

.overlay-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: var(--color-text);
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.feed-video video.playing + .overlay-play {
    opacity: 0;
}

/* Enhanced Comment Box */
.comment-box {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    padding: 20px;
    border-top: 3px solid var(--accent);
    display: none;
    max-height: 60vh;
    overflow-y: auto;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.comment-box textarea {
    width: 100%;
    background: rgba(26,26,26,0.9);
    border: 2px solid rgba(255,102,0,0.6);
    color: var(--color-text);
    padding: 15px;
    border-radius: 15px;
    font-size: 1rem;
    resize: none;
    transition: all 0.3s ease;
}

.comment-box textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255,102,0,0.3);
    outline: none;
}

.comment-box .btn-primary {
    background: linear-gradient(45deg, var(--accent), #E65100);
    border: none;
    border-radius: 15px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comment-box .btn-primary:hover {
    background: linear-gradient(45deg, #E65100, #D84315);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,102,0,0.4);
}

.comment-item {
    background: rgba(26,26,26,0.8);
    border: 1px solid rgba(255,102,0,0.3);
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 10px;
}

.comment-username {
    color: var(--accent) !important;
    font-weight: 600;
}

.comment-text {
    color: var(--color-text);
    margin-top: 5px;
}

/* Reels Specific Buttons */
.btn-like.liked {
    background: rgba(255,71,87,0.9) !important;
    border-color: #ff4757 !important;
}

.btn-like.liked i {
    color: var(--color-text) !important;
}

.btn-follow {
    padding: 8px 16px;
    font-size: 0.8rem;
    line-height: 1.2;
    color: var(--color-text);
    border-radius: 20px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-follow.btn-secondary {
    background: rgba(108,117,125,0.9);
    border: 2px solid #6c757d;
}

.btn-follow.btn-primary {
    background: linear-gradient(45deg, var(--accent), #E65100);
    border: 2px solid var(--accent);
}

.btn-follow:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-mute {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    border: 2px solid rgba(255,102,0,0.8);
    border-radius: 50%;
    color: var(--color-text);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-mute:hover {
    background: rgba(255,102,0,0.9);
    border-color: var(--color-text);
    transform: scale(1.1);
}

.btn-mute i {
    pointer-events: none;
    font-size: 1.1rem;
}

.progress-play {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #E65100);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 2px 10px rgba(255,102,0,0.5);
}

.btn-views {
    cursor: default;
    opacity: 0.9;
}

/* Scroll Enhancements */
#reelsContainer {
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    height: 100vh;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: var(--bg-body);
}

/* Feed Video Container */
.feed-video {
    position: relative;
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.feed-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* Video Controls */
.btn-mute {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.btn-mute:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Progress Bar */
.progress-play {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s linear;
    z-index: 10;
}

/* Overlay Actions */
.overlay-actions {
    position: absolute;
    right: 15px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.overlay-actions button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 50px;
    min-height: 50px;
}

.overlay-actions button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.overlay-actions button.liked {
    color: #ff3040;
}

.overlay-actions .btn-book {
    background: linear-gradient(45deg, var(--accent), #E65100);
    color: white;
    animation: pulse-booking 3s infinite;
    border: 2px solid rgba(255,215,0,0.8);
}

.overlay-actions .btn-book:hover {
    background: linear-gradient(45deg, #E65100, var(--accent));
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(255,102,0,0.6);
    border-color: #ffd700;
}

@keyframes pulse-booking {
    0% { box-shadow: 0 0 0 0 rgba(255,102,0,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255,102,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,102,0,0); }
}

.overlay-actions button small {
    font-size: 10px;
    margin-top: 2px;
}

/* Overlay Info */
.overlay-info {
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 80px;
    color: white;
    z-index: 10;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px 15px 15px;
    border-radius: 10px;
}

.overlay-info .avatar-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
}

.overlay-info strong {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.overlay-info .place-row a {
    color: white !important;
    text-decoration: underline;
}

.reel-caption {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.reel-caption a {
    color: var(--accent) !important;
}

/* Profile Avatar in Navigation */
.profile-avatar-nav {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* Comment Box */
.comment-box {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-height: 50vh;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.comment-box.show {
    transform: translateY(0);
}

.comment-box textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 10px;
    padding: 10px;
    resize: none;
}

.comment-box textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.3);
}

#reelsContainer::-webkit-scrollbar {
    display: none;
}

/* Loading and Animation Effects */
.skeleton {
    background: linear-gradient(90deg, var(--bg-body) 25%, #333333 50%, var(--bg-body) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.video-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--bg-body) 25%, #333333 50%, var(--bg-body) 75%);
    background-size: 200% 200%;
    animation: shimmer 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-skeleton::before {
    content: '\\f04b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 4rem;
    color: rgba(255,102,0,0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Enhanced Upload Modal */
.upload-dropzone {
    border: 3px dashed rgba(255,102,0,0.6);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    cursor: pointer;
    color: #cccccc;
    background: rgba(26,26,26,0.8);
    transition: all 0.3s ease;
}

.upload-dropzone i {
    color: var(--accent);
    margin-bottom: 15px;
}

.upload-dropzone.dragover {
    background: rgba(255,102,0,0.1);
    border-color: var(--accent);
    color: var(--color-text);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255,102,0,0.2);
}

.modal-content.bg-dark {
    background: rgba(0,0,0,0.95) !important;
    border: 2px solid var(--accent);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.modal-header {
    border-bottom: 2px solid rgba(255,102,0,0.3);
}

.modal-title {
    color: var(--accent);
    font-weight: 600;
}

.btn-close-white {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(175deg);
}

.form-control {
    background: rgba(26,26,26,0.9);
    border: 2px solid rgba(255,102,0,0.6);
    color: var(--color-text);
    border-radius: 15px;
}

.form-control:focus {
    background: rgba(26,26,26,0.9);
    border-color: var(--accent);
    color: var(--color-text);
    box-shadow: 0 0 15px rgba(255,102,0,0.3);
}

.btn-secondary {
    background: rgba(108,117,125,0.9);
    border: 2px solid #6c757d;
    border-radius: 15px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent), #E65100);
    border: none;
    border-radius: 15px;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #E65100, #D84315);
    transform: translateY(-2px);
}

/* Avatar & place row */
.avatar-sm {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.place-row {
    margin-top: 2px;
    font-size: 0.85rem;
}

.place-row i {
    font-size: 0.75rem;
}

.place-row a {
    color: var(--accent) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.place-row a:hover {
    color: var(--color-text) !important;
    text-shadow: 0 0 10px rgba(255,102,0,0.8);
    text-decoration: underline;
}

.comment-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.comment-item .comment-text {
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.5;
}

/* Caption hashtags */
.reel-caption {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #cccccc;
}

.reel-caption a {
    color: var(--accent) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.reel-caption a:hover {
    color: var(--color-text) !important;
    text-shadow: 0 0 10px rgba(255,102,0,0.8);
}

/* Text Shadows and Glows */
.overlay-info strong,
.comment-username {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.overlay-actions button:hover i {
    filter: drop-shadow(0 0 10px rgba(255,102,0,0.8));
}

/* Dark theme compatibility */
.dark-theme .text-dark {
    color: var(--color-text) !important;
}

.dark-theme .bg-white {
    background: rgba(26,26,26,0.95) !important;
    border: 1px solid rgba(255,102,0,0.3);
}

/* Enhanced Responsive Design */
@media (min-width: 768px) {
    .overlay-actions {
        right: 30px;
        bottom: 150px;
        gap: 30px;
    }
    
    .overlay-actions button {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .overlay-info {
        left: 30px;
        bottom: 150px;
        padding: 20px 25px;
        font-size: 1rem;
    }
    
    .reels-hero-title {
        font-size: 3rem;
    }
    
    .reels-floating-nav {
        bottom: 30px;
        padding: 15px 30px;
    }
    
    .reels-floating-nav .nav-container {
        gap: 35px;
    }
    
    .reels-floating-nav .nav-item {
        padding: 12px 16px;
    }
}

@media (max-width: 767px) {
    .reels-hero-section {
        padding: 15px 0;
    }
    
    .reels-hero-title {
        font-size: 2rem;
    }
    
    .reels-stats {
        flex-direction: column;
        gap: 10px !important;
        align-items: flex-start;
    }
    
    .btn-upload-reel {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .reels-floating-nav {
        bottom: 10px;
        padding: 8px 15px;
    }
    
    .reels-floating-nav .nav-container {
        gap: 15px;
    }
    
    .reels-floating-nav .nav-item {
        padding: 6px 8px;
    }
    
    .reels-floating-nav .nav-item span {
        font-size: 0.6rem;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .overlay-actions {
        bottom: 80px;
        gap: 15px;
    }
    
    .overlay-info {
        bottom: 80px;
    }
    
    .reels-hero-section {
        padding: 10px 0;
    }
}

/* Enhanced Navigation Styles */
.profile-avatar-nav {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

/* Notifications Dropdown Styles */
.notification-dropdown {
    position: relative;
}

.notification-trigger {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.notification-trigger:hover {
    background: rgba(255,102,0,0.1);
    color: var(--accent);
}

.notifications-dropdown {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 320px;
    max-width: 90vw;
    background: rgba(26,26,26,0.95);
    border: 1px solid rgba(255,102,0,0.3);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%) translateY(-10px);
    transition: all 0.3s ease;
}

.notifications-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}

.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,102,0,0.2);
}

.notifications-header h6 {
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.notifications-header .view-all {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.notifications-header .view-all:hover {
    color: #E65100;
}

.notifications-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px 0;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 20px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.notification-item:hover {
    background: rgba(255,102,0,0.05);
}

.notification-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,102,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-text {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 4px;
}

.notification-time {
    color: #999;
    font-size: 0.8rem;
}

.loading-notifications,
.no-notifications,
.error-notifications {
    text-align: center;
    padding: 30px 20px;
    color: #999;
    font-size: 0.9rem;
}

.loading-notifications i {
    margin-right: 8px;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .notifications-dropdown {
        width: 280px;
        right: -20px;
        transform: none;
    }
    
    .notifications-dropdown.show {
        transform: none;
    }
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-body);
}

.reels-floating-nav .nav-item {
    position: relative;
}

/* Profile Page Enhancements */
.profile-avatar {
    border: 3px solid var(--accent);
    box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

.profile-avatar-placeholder {
    border: 3px solid var(--accent);
    box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

/* Discover Page Grid */
.discover-grid .discover-reel-item {
    border: 1px solid rgba(255,102,0,0.2);
    transition: all 0.3s ease;
}

.discover-grid .discover-reel-item:hover {
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(255,102,0,0.2);
}

/* Notification Styles */
.notification-item {
    backdrop-filter: blur(10px);
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent);
    border-radius: 0 4px 4px 0;
}