/* ===== CSS RESET & VARIABLES ===== */
:root {
    --primary: #da0b4e;
    --primary-dark: #4338ca;
    --secondary: #06b6d4;
    --accent: #f97316;
    --success: #10b981;
    --dark: #1f2937;
    --light: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    /* background: rgba(255, 255, 255, 0.98);*/
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== NAVIGATION WITH dropdown-cus MENU ===== */
.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 12px 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Dropdown Menu Styles */
.dropdown-cus {
    position: relative;
}

.dropdown-cus-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 12px 0;
    color: var(--gray-700);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.dropdown-cus-toggle:hover {
    color: var(--primary);
}

.dropdown-cus-toggle i {
    font-size: 0.8rem;
    transition: var(--transition);
}

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

.dropdown-cus-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 270px;
    padding: 12px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.dropdown-cus-item {
    display: block;
    padding: 12px 20px;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-cus-item:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 18px;
}

.dropdown-cus-item i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: var(--primary);
}

/* Sub-dropdown for Tutor by Subject */
.sub-dropdown-cus {
    position: relative;
}

.sub-dropdown-cus .dropdown-cus-item {
    display: flex;
    align-items: center;
}

.sub-dropdown-cus-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    z-index: 101;
}
/* Custom scrollbar for subject menu */
.sub-dropdown-cus-menu::-webkit-scrollbar {
    width: 6px;
}

.sub-dropdown-cus-menu::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

.sub-dropdown-cus-menu::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
.sub-dropdown-cus:hover .sub-dropdown-cus-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ===== NAV ACTIONS ===== */
.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-actions .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--gray-100);
}
/* ===== NOTIFICATION DROPDOWN STYLES - FIXED ===== */
.notification-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    cursor: pointer;
    transition: var(--transition);
    margin-right: 8px;
}

.notification-icon:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
}

.notification-icon i {
    font-size: 1.2rem;
    color: var(--gray-700);
}

.notification-icon .notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: -20px;
    width: 360px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-top: 15px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    display: none; /* Start hidden */
}

.notification-dropdown.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.notification-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-header h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
}

.notification-header .mark-read {
    color: var(--primary);
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 500;
}

.notification-header .mark-read:hover {
    text-decoration: underline;
}

.notification-list {
    max-height: 350px;
    overflow-y: auto;
}

.notification-item {
    padding: 15px 20px;
    display: flex;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-100);
}

.notification-item:hover {
    background: var(--gray-50);
}

.notification-item.unread {
    background: rgba(79, 70, 229, 0.05);
}

.notification-item.unread .notification-text {
    font-weight: 600;
    color: var(--dark);
}

.notification-icon-small {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 5px;
    line-height: 1.4;
}

.notification-time {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.notification-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.notification-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.notification-footer a:hover {
    text-decoration: underline;
}

/* ===== USER DROPDOWN STYLES ===== */
.user-dropdown {
    position: relative;
}

.user-menu-btn {
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: 40px;
    padding: 4px 12px 4px 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    height: 40px;
}

.user-menu-btn:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.user-menu-btn i {
    color: var(--gray-600);
    font-size: 0.8rem;
    transition: var(--transition);
}

.user-dropdown:hover .user-menu-btn i {
    transform: rotate(180deg);
    color: var(--primary);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 240px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    margin-top: 10px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    display: none;
}

.user-dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    z-index: 10000 !important;
}

.user-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
}

.user-dropdown-menu .dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.user-dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    color: var(--primary);
}

.user-dropdown-menu .badge {
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: auto;
}

.user-dropdown-menu .dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 8px 0;
}

.text-danger {
    color: #dc3545 !important;
}

.text-danger:hover {
    background: #dc3545 !important;
    color: white !important;
}

.text-danger:hover i {
    color: white !important;
}
/* Mobile Styles */
.mobile-user-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.mobile-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
}

.mobile-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-user-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.mobile-user-email {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: white;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta .btn {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 16px 40px;
    font-size: 1.125rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.cta .btn:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-nav-cus {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow-y: auto;
    z-index: 999;
    transform: translateY(-100%);
    transition: 0.35s ease;
    visibility: hidden;
}

.mobile-nav-cus.active {
    transform: translateY(0);
    visibility: visible;
}

.mobile-nav-cus .nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.mobile-nav-cus .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.mobile-nav-cus .nav-link {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-nav-cus .nav-link:hover,
.mobile-nav-cus .nav-link.active {
    background: var(--gray-100);
}

.mobile-nav-cus .nav-link.active::after {
    display: none;
}

/* MOBILE dropdown-cus STYLES */
.mobile-nav-cus .dropdown-cus {
    width: 100%;
}

.mobile-nav-cus .dropdown-cus-toggle {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    justify-content: space-between;
}

.mobile-nav-cus .dropdown-cus.active .dropdown-cus-toggle {
    background: var(--gray-100);
    color: var(--primary);
}

.mobile-nav-cus .dropdown-cus.active .dropdown-cus-toggle i {
    transform: rotate(180deg);
}

.mobile-nav-cus .dropdown-cus-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 10px 0 10px 15px;
    background: var(--gray-100);
    border-radius: 8px;
    display: none;
    width: calc(100% - 15px);
}

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

.mobile-nav-cus .sub-dropdown-cus-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 10px 0 10px 15px;
    background: var(--gray-200);
    border-radius: 8px;
    display: none;
    width: calc(100% - 15px);
}

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

.mobile-nav-cus .dropdown-cus-item {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.mobile-nav-cus .dropdown-cus-item:hover {
    padding-left: 20px;
    background: rgba(79, 70, 229, 0.1);
}

.mobile-nav-cus .sub-dropdown-cus.active .dropdown-cus-item i.fa-chevron-right {
    transform: rotate(90deg);
}

.mobile-nav-cus .btn {
    width: 100%;
    text-align: center;
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 50px;
    color: var(--gray-600);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-600);
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gray-700);
}

.empty-state p {
    max-width: 400px;
    margin: 0 auto;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links, .nav-actions {
        display: none;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .footer {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }

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

    .footer-links {
        padding: 0;
    }

    .footer-links li {
        text-align: center;
    }

    .footer-col .logo {
        justify-content: center;
    }

    .footer-col div[style*="display: flex"] {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 360px) {
    .logo-text {
        font-size: 1.25rem;
    }
}

@media (min-width: 769px) {
    .mobile-nav-cus {
        display: none;
    }
}
/* ===== SOCIAL ICONS WITH BRAND COLORS ===== */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    transition: var(--transition);
    z-index: -1;
}

.footer-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Facebook - Brand Color */
.footer-social a.facebook {
    background: #1877f2; /* Facebook Blue */
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.footer-social a.facebook:hover {
    background: #0d6efd;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
}

/* Instagram - Gradient */
.footer-social a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.footer-social a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.4);
    transform: translateY(-5px) scale(1.05);
}

/* LinkedIn - Brand Color */
.footer-social a.linkedin {
    background: #0077b5; /* LinkedIn Blue */
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.footer-social a.linkedin:hover {
    background: #006396;
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4);
}

/* Optional: Add Twitter if needed */
.footer-social a.twitter {
    background: #1da1f2; /* Twitter Blue */
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.footer-social a.twitter:hover {
    background: #0d8bd9;
    box-shadow: 0 10px 20px rgba(29, 161, 242, 0.4);
}

/* Optional: Add YouTube if needed */
.footer-social a.youtube {
    background: #ff0000; /* YouTube Red */
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.footer-social a.youtube:hover {
    background: #cc0000;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
}

/* Animation for social icons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(218, 11, 78, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(218, 11, 78, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(218, 11, 78, 0);
    }
}

.footer-social a:hover {
    animation: pulse 1.5s infinite;
}

/* Responsive centering */
@media (max-width: 1024px) {
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-social a {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .footer-social {
        gap: 15px;
    }
    
    .footer-social a {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* Optional: If you want the text labels as well (for desktop) */
.footer-social-with-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.footer-social-with-text a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-social-with-text a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color: white;
}

.footer-social-with-text i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
}

.footer-social-with-text .facebook-icon {
    background: #1877f2;
}

.footer-social-with-text .instagram-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social-with-text .linkedin-icon {
    background: #0077b5;
}

.footer-social-with-text span {
    font-size: 0.95rem;
}

/* Hide text on mobile, show only icons */
@media (max-width: 768px) {
    .footer-social-with-text span {
        display: none;
    }
    
    .footer-social-with-text {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-social-with-text a {
        padding: 0;
        background: none;
    }
    
    .footer-social-with-text a:hover {
        background: none;
        transform: translateY(-3px);
    }
    
    .footer-social-with-text i {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
}