/* Mobile Improvements Arabic - تحسينات للهواتف المحمولة للصفحة العربية */





@media (max-width: 768px) {
    
    /* إعداد تخطيط المشاريع في اتجاه واحد */
    .projects-section {
        padding: 2rem 0 !important;
    }
    
    .projects-container,
    .project-grid,
    .projects-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    /* إزالة أي flexbox قد يؤثر على التخطيط */
    .projects-wrapper {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
    }
    

    
    /* تصغير الخطوط الرئيسية */
    .hero-text h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-text h2 {
        font-size: 1.4rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 0.95rem !important;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    /* تصغير عناوين الأقسام */
    .section-header h2 {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }
    
    /* تحسين الإحصائيات - Hero section in single row */
    .hero-stats {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 0.8rem !important;
        margin-bottom: 1.5rem !important;
        flex-wrap: nowrap !important;
    }
    
    .stat {
        flex: 1 !important;
        padding: 0.8rem 0.5rem !important;
        min-width: 0 !important;
        text-align: center !important;
        background: rgba(26, 26, 46, 0.6) !important;
        border: 1px solid rgba(0, 255, 136, 0.1) !important;
        border-radius: 8px !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .stat-number {
        font-size: 1.4rem !important;
        margin-bottom: 0.2rem !important;
        color: #00ff88 !important;
        font-weight: 700 !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
        color: #e0e0e0 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
        word-wrap: break-word !important;
    }
    
    /* تحسين الأزرار */
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    /* تحسين بطاقات المشاريع */
    .project-card {
        padding: 1.2rem !important;
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    
    /* Enhanced project card content */
    .project-header {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1rem;
        align-items: flex-start;
    }
    
    .project-header h3 {
        font-size: 1.2rem !important;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        color: #ffffff;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .project-header h3 i {
        color: #00ff88;
        font-size: 1.1rem;
    }
    
    .project-category {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        background: rgba(0, 204, 255, 0.1);
        border: 1px solid rgba(0, 204, 255, 0.3);
        color: #00ccff;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        white-space: nowrap;
    }
    
    .project-category i {
        font-size: 0.8rem;
    }
    
    .project-card p {
        font-size: 0.9rem !important;
        line-height: 1.6;
        margin: 1rem 0;
        color: #e0e0e0;
        text-align: right;
        direction: rtl;
    }
    
    /* Enhanced tech tags */
    .project-tech {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin: 1rem 0;
        direction: rtl;
    }
    
    .tech-tag {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
        background: rgba(0, 255, 136, 0.1);
        border: 1px solid rgba(0, 255, 136, 0.2);
        color: #00ff88;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .tech-tag:hover {
        background: rgba(0, 255, 136, 0.2);
        transform: translateY(-2px);
    }
    
    /* Enhanced features */
    .project-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-top: 1.2rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .feature {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-size: 0.85rem !important;
        padding: 0.5rem 0;
        color: #e0e0e0;
        transition: all 0.3s ease;
    }
    
    .feature:hover {
        color: #ffffff;
        transform: translateX(-5px);
        direction: rtl;
    }
    
    .feature i {
        color: #00ccff;
        font-size: 1rem;
        min-width: 18px;
        text-align: center;
    }
    
    /* Enhanced project card links and buttons */
    .project-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .project-btn {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.85rem !important;
        border-radius: 25px !important;
        text-align: center;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-decoration: none;
    }
    
    .project-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
    }
    
    .project-btn i {
        font-size: 0.9rem;
    }
    
    /* تحسين قسم المهارات */
    .skills-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .skill-category {
        padding: 1.2rem;
        border-radius: 10px;
    }
    
    .skill-category h3 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem;
    }
    
    .skill-item span {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem;
    }
    
    /* Enhanced Popular Packages section for mobile */
    .pricing-packages {
        padding: 3rem 0 !important;
        margin-top: 3rem !important;
    }
    
    .pricing-packages h3 {
        text-align: center !important;
        font-size: 2rem !important;
        color: #ffffff !important;
        margin-bottom: 2.5rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        background: linear-gradient(135deg, #00ff88, #00ccff) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    /* Enhanced packages grid */
    .packages-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        padding: 0 1rem !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    /* Enhanced package cards */
    .package-card {
        background: rgba(26, 26, 46, 0.95) !important;
        border: 3px solid rgba(0, 204, 255, 0.3) !important;
        border-radius: 25px !important;
        padding: 2.5rem 2rem !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        backdrop-filter: blur(20px) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        position: relative !important;
        overflow: hidden !important;
        text-align: center !important;
        min-height: 450px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    
    .package-card::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 4px !important;
        background: linear-gradient(90deg, #00ccff, #00ff88) !important;
        opacity: 0.8 !important;
    }
    
    .package-card:hover {
        transform: translateY(-15px) scale(1.03) !important;
        border-color: rgba(0, 204, 255, 0.6) !important;
        box-shadow: 0 25px 60px rgba(0, 204, 255, 0.3) !important;
        background: rgba(26, 26, 46, 1) !important;
    }
    
    .package-card.popular {
        border-color: rgba(0, 255, 136, 0.5) !important;
        background: rgba(26, 46, 26, 0.95) !important;
        transform: scale(1.05) !important;
        box-shadow: 0 20px 50px rgba(0, 255, 136, 0.3) !important;
    }
    
    .package-card.popular::before {
        background: linear-gradient(90deg, #00ff88, #00ccff) !important;
        height: 5px !important;
    }
    
    .package-card.popular:hover {
        transform: translateY(-15px) scale(1.08) !important;
        border-color: rgba(0, 255, 136, 0.7) !important;
        box-shadow: 0 30px 70px rgba(0, 255, 136, 0.4) !important;
    }
    
    .package-card.popular .package-price {
        background: rgba(0, 255, 136, 0.15) !important;
        border-color: rgba(0, 255, 136, 0.3) !important;
    }
    
    .package-card.popular .package-price .amount {
        color: #00ff88 !important;
        text-shadow: 0 4px 8px rgba(0, 255, 136, 0.4) !important;
    }
    
    .package-card.popular .package-price .currency {
        color: #00ff88 !important;
    }
    
    /* Popular badge */
    .popular-badge {
        position: absolute !important;
        top: -10px !important;
        right: 20px !important;
        background: linear-gradient(135deg, #00ff88, #00ccff) !important;
        color: #0a0a0a !important;
        padding: 0.5rem 1.5rem !important;
        border-radius: 20px !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3) !important;
        z-index: 10 !important;
    }
    
    /* Enhanced package header */
    .package-header {
        margin-bottom: 2rem !important;
        position: relative !important;
        flex-shrink: 0 !important;
    }
    
    .package-header h4 {
        font-size: 1.8rem !important;
        color: #ffffff !important;
        margin-bottom: 1rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    }
    
    .package-badge {
        display: inline-block !important;
        background: rgba(0, 204, 255, 0.2) !important;
        color: #00ccff !important;
        font-size: 0.7rem !important;
        padding: 0.3rem 0.8rem !important;
        border-radius: 15px !important;
        border: 1px solid rgba(0, 204, 255, 0.3) !important;
        margin-bottom: 1rem !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    
    .package-card.featured .package-badge {
        background: rgba(0, 255, 136, 0.2) !important;
        color: #00ff88 !important;
        border-color: rgba(0, 255, 136, 0.3) !important;
    }
    
    /* Enhanced package price */
    .package-price {
        margin-bottom: 2.5rem !important;
        position: relative !important;
        flex-shrink: 0 !important;
        background: rgba(0, 204, 255, 0.1) !important;
        border-radius: 15px !important;
        padding: 1.5rem !important;
        border: 2px solid rgba(0, 204, 255, 0.2) !important;
    }
    
    .package-price .currency {
        font-size: 2rem !important;
        vertical-align: top !important;
        opacity: 0.9 !important;
        color: #00ccff !important;
    }
    
    .package-price .amount {
        font-size: 4rem !important;
        font-weight: 800 !important;
        color: #00ccff !important;
        display: inline-block !important;
        margin-bottom: 0.5rem !important;
        line-height: 1 !important;
        text-shadow: 0 4px 8px rgba(0, 204, 255, 0.3) !important;
    }
    
    .package-card.featured .package-price .amount {
        color: #00ff88 !important;
    }
    
    .package-price .currency {
        font-size: 1.2rem !important;
        vertical-align: top !important;
        opacity: 0.8 !important;
    }
    
    .package-price .period {
        font-size: 0.9rem !important;
        color: #b0b0b0 !important;
        font-weight: 400 !important;
        display: block !important;
        margin-top: 0.2rem !important;
    }
    
    .package-price .original-price {
        font-size: 1rem !important;
        color: #888 !important;
        text-decoration: line-through !important;
        display: block !important;
        margin-bottom: 0.3rem !important;
    }
    
    /* Enhanced package features */
    .package-features {
        margin-bottom: 2.5rem !important;
        text-align: right !important;
        flex-grow: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .package-features ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background: rgba(0, 255, 136, 0.05) !important;
        border-radius: 15px !important;
        padding: 1.5rem !important;
        border: 1px solid rgba(0, 255, 136, 0.1) !important;
    }
    
    .package-features li {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        font-size: 1rem !important;
        color: #ffffff !important;
        padding: 1rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        transition: all 0.3s ease !important;
        font-weight: 500 !important;
    }
    
    .package-features li:last-child {
        border-bottom: none !important;
    }
    
    .package-features li:hover {
        color: #ffffff !important;
        transform: translateX(5px) !important;
    }
    
    .package-features li i {
        color: #00ccff !important;
        font-size: 1rem !important;
        min-width: 18px !important;
        text-align: center !important;
    }
    
    .package-card.featured .package-features li i {
        color: #00ff88 !important;
    }
    
    .package-features li.unavailable {
        opacity: 0.5 !important;
        color: #888 !important;
    }
    
    .package-features li.unavailable i {
        color: #888 !important;
    }
    
    /* Enhanced package button */
    .package-btn {
        width: 100% !important;
        padding: 1.5rem 2rem !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        border-radius: 30px !important;
        border: 3px solid rgba(0, 204, 255, 0.5) !important;
        background: linear-gradient(135deg, rgba(0, 204, 255, 0.2), rgba(0, 255, 136, 0.1)) !important;
        color: #ffffff !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        transition: all 0.4s ease !important;
        cursor: pointer !important;
        position: relative !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
        box-shadow: 0 8px 20px rgba(0, 204, 255, 0.2) !important;
    }
    
    .package-btn::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
        transition: left 0.6s ease !important;
    }
    
    .package-btn:hover::before {
        left: 100% !important;
    }
    
    .package-btn:hover {
        transform: translateY(-3px) !important;
        border-color: rgba(0, 204, 255, 0.6) !important;
        background: rgba(0, 204, 255, 0.2) !important;
        box-shadow: 0 10px 25px rgba(0, 204, 255, 0.3) !important;
        color: #ffffff !important;
    }
    
    .package-card.featured .package-btn {
        border-color: rgba(0, 255, 136, 0.3) !important;
        background: rgba(0, 255, 136, 0.1) !important;
        color: #00ff88 !important;
    }
    
    .package-card.featured .package-btn:hover {
        border-color: rgba(0, 255, 136, 0.6) !important;
        background: rgba(0, 255, 136, 0.2) !important;
        box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3) !important;
    }
    
    /* تحسين قسم التواصل */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.03);
    }
    
    .contact-item h4 {
        font-size: 0.9rem !important;
    }
    
    /* تحسين الصورة الشخصية */
    .image-container {
        width: 200px !important;
        height: 200px !important;
        margin: 0 auto;
    }
    
    /* تحسين المساحات */
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        order: 2;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-text h2 {
        font-size: 1.2rem !important;
    }
    
    .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    /* Enhanced project cards for very small screens */
    .project-card {
        padding: 1.2rem !important;
        margin: 0 auto 1.5rem auto !important;
        border-radius: 12px !important;
        max-width: 95% !important;
    }
    
    .project-header h3 {
        font-size: 1.1rem !important;
    }
    
    .project-category {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
    }
    
    .project-card p {
        font-size: 0.85rem !important;
    }
    
    .tech-tag {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
    }
    
    .feature {
        font-size: 0.8rem !important;
    }
    
    .project-btn {
        padding: 0.7rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Ensure single column layout is maintained */
    .projects-container,
    .project-grid,
    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    /* Enhanced About Me for very small screens */
    .about-text h2 {
        font-size: 1.6rem !important;
    }
    
    .about-text h3 {
        font-size: 1.2rem !important;
    }
    
    .about-description {
        font-size: 0.9rem !important;
        padding: 1.2rem !important;
    }
    
    .highlight-item {
        padding: 1rem !important;
        gap: 0.8rem !important;
    }
    
    .highlight-item i {
        font-size: 1.3rem !important;
    }
    
    .highlight-item h4 {
        font-size: 0.95rem !important;
    }
    
    .highlight-item p {
        font-size: 0.8rem !important;
    }
    
    /* Enhanced packages for very small screens */
    .packages-section .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    .packages-section .section-header p {
        font-size: 0.9rem !important;
    }
    
    .package-card {
        padding: 1.5rem 1.2rem !important;
        border-radius: 15px !important;
    }
    
    .package-header h4 {
        font-size: 1.2rem !important;
    }
    
    .package-badge {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.6rem !important;
    }
    
    .package-price .amount {
        font-size: 2.2rem !important;
    }
    
    .package-price .currency {
        font-size: 1.1rem !important;
    }
    
    .package-price .period {
        font-size: 0.85rem !important;
    }
    
    .package-features li {
        font-size: 0.85rem !important;
        padding: 0.6rem 0 !important;
    }
    
    .package-features li i {
        font-size: 0.9rem !important;
    }
    
    .package-btn {
        padding: 0.9rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Enhanced stats for very small screens - maintain single row */
    .about-stats {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .stat-item {
        padding: 0.8rem 0.3rem !important;
        border-radius: 8px !important;
    }
    
    .stat-number {
        font-size: 1.3rem !important;
        margin-bottom: 0.1rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
        letter-spacing: 0.2px !important;
    }
    
    .image-container {
        width: 180px !important;
        height: 180px !important;
    }
    
    /* Enhanced footer for very small screens */
    .footer {
        padding: 1.5rem 0 0.8rem 0 !important;
    }
    
    .footer-content {
        gap: 1.5rem !important;
        padding: 0 0.8rem !important;
    }
    
    .footer-section {
        padding: 1.2rem 0.8rem !important;
        border-radius: 12px !important;
    }
    
    .footer-section h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .footer-section h3::after {
        width: 40px !important;
    }
    
    .footer-links a {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.8rem !important;
    }
    
    .social-link {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
    
    .footer-social {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        max-width: 200px !important;
        padding: 0.3rem !important;
    }
    
    .footer-social.many-icons {
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 240px !important;
        gap: 0.6rem !important;
    }
    
    .footer-social.lots-of-icons {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 200px !important;
        gap: 0.6rem !important;
    }
    
    .footer-contact-item {
        font-size: 0.85rem !important;
        padding: 0.6rem !important;
    }
    
    .footer-contact-item i {
        font-size: 1rem !important;
    }
    
    .footer-bottom {
        margin-top: 1.5rem !important;
        padding-top: 1rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.8rem !important;
    }
    
    .footer-bottom .made-with {
        font-size: 0.75rem !important;
    }
    

    
    .container {
        padding: 0 0.8rem;
    }
}

/* Additional Visual Enhancements */
@media (max-width: 768px) {
    
    /* Enhanced cards with better styling */
    .project-card {
        background: rgba(26, 26, 46, 0.8) !important;
        border: 2px solid rgba(0, 255, 136, 0.2);
        border-radius: 15px !important;
        padding: 1.5rem !important;
        margin: 0 auto 1.5rem auto;
        max-width: 100%;
        width: 100%;
        backdrop-filter: blur(15px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }
    
    .project-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #00ff88, #00ccff);
        opacity: 0.8;
    }
    
    .project-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
        border-color: rgba(0, 255, 136, 0.4);
        background: rgba(26, 26, 46, 0.9) !important;
    }
    
    .project-card:active {
        transform: translateY(-4px) scale(1.01);
    }
    
    .skill-category {
        background: rgba(26, 26, 46, 0.6);
        border: 1px solid rgba(0, 204, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .skill-category:hover {
        border-color: rgba(0, 204, 255, 0.3);
        box-shadow: 0 5px 20px rgba(0, 204, 255, 0.1);
    }
    
    .package-card {
        background: rgba(26, 26, 46, 0.6) !important;
        border: 1px solid rgba(0, 204, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .package-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 204, 255, 0.15);
        border-color: rgba(0, 204, 255, 0.3);
    }
    
    /* Enhanced About Me section for mobile */
    .about-section {
        padding: 2.5rem 0 !important;
    }
    
    .about-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        align-items: start !important;
        text-align: center !important;
    }
    
    .about-text {
        order: 2;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .about-image {
        order: 1;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .about-text h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
        color: #ffffff !important;
        font-weight: 600 !important;
    }
    
    .about-text h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
        color: #00ff88 !important;
        text-align: center !important;
    }
    
    .about-description {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        color: #e0e0e0 !important;
        margin-bottom: 2rem !important;
        text-align: left !important;
        background: rgba(26, 26, 46, 0.6) !important;
        padding: 1.5rem !important;
        border-radius: 15px !important;
        border: 1px solid rgba(0, 255, 136, 0.1) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    /* Enhanced about highlights */
    .about-highlights {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    .highlight-item {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        background: rgba(26, 26, 46, 0.8) !important;
        border: 2px solid rgba(0, 255, 136, 0.2) !important;
        border-radius: 12px !important;
        padding: 1.2rem !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        backdrop-filter: blur(15px) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .highlight-item::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 4px !important;
        height: 100% !important;
        background: linear-gradient(180deg, #00ff88, #00ccff) !important;
        opacity: 0.8 !important;
    }
    
    .highlight-item:hover {
        background: rgba(26, 26, 46, 0.9) !important;
        border-color: rgba(0, 255, 136, 0.4) !important;
        transform: translateY(-5px) scale(1.02) !important;
        box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2) !important;
    }
    
    .highlight-item i {
        color: #00ccff !important;
        font-size: 1.5rem !important;
        min-width: 24px !important;
        text-align: center !important;
    }
    
    .highlight-item .content {
        flex: 1 !important;
    }
    
    .highlight-item h4 {
        font-size: 1rem !important;
        color: #ffffff !important;
        margin-bottom: 0.3rem !important;
        font-weight: 600 !important;
    }
    
    .highlight-item p {
        font-size: 0.85rem !important;
        color: #b0b0b0 !important;
        margin: 0 !important;
        line-height: 1.5 !important;
    }
    
    /* Enhanced About Stats/Numbers - Single row layout */
    .about-stats {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.8rem !important;
        margin: 2rem 0 !important;
        padding: 0 !important;
    }
    
    .stat-item {
        background: rgba(26, 26, 46, 0.8) !important;
        border: 2px solid rgba(0, 204, 255, 0.2) !important;
        border-radius: 10px !important;
        padding: 1rem 0.5rem !important;
        text-align: center !important;
        transition: all 0.4s ease !important;
        backdrop-filter: blur(15px) !important;
        position: relative !important;
        overflow: hidden !important;
        min-width: 0 !important;
    }
    
    .stat-item::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 3px !important;
        background: linear-gradient(90deg, #00ccff, #00ff88) !important;
        opacity: 0.8 !important;
    }
    
    .stat-item:hover {
        transform: translateY(-5px) scale(1.05) !important;
        border-color: rgba(0, 204, 255, 0.4) !important;
        box-shadow: 0 10px 25px rgba(0, 204, 255, 0.2) !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        color: #00ccff !important;
        display: block !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.1 !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
        color: #e0e0e0 !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
    }
    
    /* Enhanced About Skills preview */
    .about-skills-preview {
        background: rgba(26, 26, 46, 0.6) !important;
        border: 1px solid rgba(0, 255, 136, 0.1) !important;
        border-radius: 15px !important;
        padding: 1.5rem !important;
        margin-top: 2rem !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .about-skills-preview h4 {
        font-size: 1.1rem !important;
        color: #ffffff !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    .skills-preview-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.8rem !important;
    }
    
    .skill-preview-item {
        background: rgba(0, 255, 136, 0.1) !important;
        border: 1px solid rgba(0, 255, 136, 0.2) !important;
        border-radius: 8px !important;
        padding: 0.6rem 0.4rem !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
    }
    
    .skill-preview-item:hover {
        background: rgba(0, 255, 136, 0.2) !important;
        transform: translateY(-2px) !important;
    }
    
    .skill-preview-item i {
        font-size: 1.2rem !important;
        color: #00ff88 !important;
        display: block !important;
        margin-bottom: 0.3rem !important;
    }
    
    .skill-preview-item span {
        font-size: 0.75rem !important;
        color: #e0e0e0 !important;
        font-weight: 500 !important;
    }
    
    /* Enhanced timeline - converted to simple grid layout */
    .timeline {
        margin-left: 0;
        padding-left: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        position: relative;
        margin-left: 0;
        padding-left: 0;
        margin-bottom: 0;
        width: 100%;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        width: 100%;
    }
    
    .timeline-marker {
        display: none;
    }
    
    .timeline-content {
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Enhanced contact section */
    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: rgba(26, 26, 46, 0.6);
        border: 1px solid rgba(0, 204, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .contact-item:hover {
        background: rgba(0, 204, 255, 0.05);
        border-color: rgba(0, 204, 255, 0.3);
        transform: translateX(5px);
    }
    
    .contact-form {
        background: rgba(26, 26, 46, 0.6);
        border: 1px solid rgba(0, 255, 136, 0.1);
        backdrop-filter: blur(10px);
    }
    
    /* Enhanced form inputs */
    .contact-form input,
    .contact-form textarea,
    .form-control {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
        transition: all 0.3s ease;
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus,
    .form-control:focus {
        border-color: #00ff88;
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
        outline: none;
    }
    
    /* Enhanced buttons */
    .btn {
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
    }
    
    .btn-secondary:hover {
        transform: translateY(-2px);
    }
    
    /* Enhanced Footer for mobile */
    .footer {
        padding: 2rem 0 1rem 0 !important;
        background: rgba(15, 15, 25, 0.95) !important;
        border-top: 2px solid rgba(0, 255, 136, 0.2) !important;
        backdrop-filter: blur(20px) !important;
    }
    
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
    }
    
    .footer-section {
        background: rgba(26, 26, 46, 0.6) !important;
        border: 1px solid rgba(0, 255, 136, 0.1) !important;
        border-radius: 15px !important;
        padding: 1.5rem 1rem !important;
        backdrop-filter: blur(10px) !important;
        transition: all 0.3s ease !important;
    }
    
    .footer-section:hover {
        border-color: rgba(0, 255, 136, 0.3) !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 20px rgba(0, 255, 136, 0.1) !important;
    }
    
    .footer-section h3 {
        font-size: 1.2rem !important;
        color: #ffffff !important;
        margin-bottom: 1rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        position: relative !important;
    }
    
    .footer-section h3::after {
        content: '' !important;
        position: absolute !important;
        bottom: -0.5rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 50px !important;
        height: 2px !important;
        background: linear-gradient(90deg, #00ff88, #00ccff) !important;
        border-radius: 1px !important;
    }
    
    /* Enhanced footer links - Horizontal layout for social icons */
    .footer-links {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .footer-links li {
        margin: 0 !important;
    }
    
    .footer-links a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 50px !important;
        height: 50px !important;
        color: #e0e0e0 !important;
        text-decoration: none !important;
        font-size: 1.3rem !important;
        border-radius: 50% !important;
        background: rgba(26, 26, 46, 0.8) !important;
        border: 2px solid rgba(0, 204, 255, 0.2) !important;
        transition: all 0.4s ease !important;
        backdrop-filter: blur(10px) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .footer-links a:hover {
        color: #ffffff !important;
        background: rgba(0, 204, 255, 0.2) !important;
        border-color: rgba(0, 204, 255, 0.5) !important;
        transform: translateY(-5px) scale(1.1) !important;
        box-shadow: 0 10px 20px rgba(0, 204, 255, 0.3) !important;
    }
    
    .footer-links a i {
        color: #00ccff !important;
        font-size: 1rem !important;
        min-width: 18px !important;
    }
    
    /* Enhanced social media - Horizontal layout for mobile */
    .footer-social {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-top: 1rem !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0.5rem !important;
        flex-wrap: wrap !important;
    }
    
    /* Alternative layout for 4+ social icons */
    .footer-social.many-icons {
        gap: 0.8rem !important;
    }
    
    /* Alternative layout for 6+ social icons */
    .footer-social.lots-of-icons {
        gap: 0.7rem !important;
    }
    
    .social-link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 45px !important;
        height: 45px !important;
        background: rgba(26, 26, 46, 0.8) !important;
        border: 2px solid rgba(0, 204, 255, 0.2) !important;
        border-radius: 50% !important;
        color: #00ccff !important;
        text-decoration: none !important;
        font-size: 1.2rem !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        backdrop-filter: blur(10px) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .social-link::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: radial-gradient(circle, rgba(0, 204, 255, 0.1), transparent) !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
    }
    
    .social-link:hover::before {
        opacity: 1 !important;
    }
    
    .social-link:hover {
        transform: translateY(-5px) scale(1.1) !important;
        border-color: rgba(0, 204, 255, 0.5) !important;
        color: #ffffff !important;
        box-shadow: 0 10px 20px rgba(0, 204, 255, 0.3) !important;
    }
    
    .social-link.facebook:hover {
        border-color: rgba(59, 89, 152, 0.5) !important;
        color: #3b5998 !important;
        box-shadow: 0 10px 20px rgba(59, 89, 152, 0.3) !important;
    }
    
    .social-link.twitter:hover {
        border-color: rgba(29, 161, 242, 0.5) !important;
        color: #1da1f2 !important;
        box-shadow: 0 10px 20px rgba(29, 161, 242, 0.3) !important;
    }
    
    .social-link.linkedin:hover {
        border-color: rgba(0, 119, 181, 0.5) !important;
        color: #0077b5 !important;
        box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3) !important;
    }
    
    .social-link.github:hover {
        border-color: rgba(255, 255, 255, 0.5) !important;
        color: #ffffff !important;
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2) !important;
    }
    
    /* Enhanced footer contact info */
    .footer-contact {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .footer-contact-item {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.8rem !important;
        color: #e0e0e0 !important;
        font-size: 0.9rem !important;
        padding: 0.8rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        transition: all 0.3s ease !important;
    }
    
    .footer-contact-item:hover {
        background: rgba(0, 255, 136, 0.05) !important;
        border-color: rgba(0, 255, 136, 0.2) !important;
        transform: translateX(3px) !important;
    }
    
    .footer-contact-item i {
        color: #00ff88 !important;
        font-size: 1.1rem !important;
        min-width: 20px !important;
    }
    
    /* Enhanced footer bottom */
    .footer-bottom {
        margin-top: 2rem !important;
        padding-top: 1.5rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        text-align: center !important;
    }
    
    .footer-bottom p {
        color: #b0b0b0 !important;
        font-size: 0.85rem !important;
        margin: 0.5rem 0 !important;
        line-height: 1.5 !important;
    }
    
    .footer-bottom .copyright {
        font-weight: 500 !important;
        color: #e0e0e0 !important;
    }
    
    .footer-bottom .made-with {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.3rem !important;
        margin-top: 0.8rem !important;
        font-size: 0.8rem !important;
    }
    
    .footer-bottom .heart {
        color: #ff4757 !important;
        animation: heartbeat 2s ease-in-out infinite !important;
    }
    
    @keyframes heartbeat {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    
    /* Remove tap highlight */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile Improvements for Templates Gallery */
    .templates {
        padding: 3rem 0;
    }
    
    .templates .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .templates .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .template-image {
        height: 300px;
    }
    
    .template-card.clothing-store .template-image {
        height: 400px;
    }
    
    .template-card {
        margin: 0;
        border-radius: 15px;
    }
    
    .template-image {
        height: 220px;
    }
    
    .template-info {
        padding: 1.2rem;
    }
    
    .template-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .template-info h3::before {
        font-size: 1.1rem;
    }
    
    .template-info p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .template-tags {
        gap: 0.6rem;
    }
    
    .tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
        border-radius: 15px;
    }
    
    .template-actions {
        flex-direction: row;
        gap: 0.8rem;
    }
    
    .btn-sm {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 10px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .templates {
        padding: 2.5rem 0;
    }
    
    .templates .section-header h2 {
        font-size: 1.8rem;
    }
    
    .templates .section-header p {
        font-size: 0.95rem;
    }
    
    .templates-grid {
        gap: 1.2rem;
        margin-top: 1.5rem;
        padding: 0 0.8rem;
    }
    
    .template-card {
        border-radius: 12px;
    }
    
    .template-image {
        height: 250px;
    }
    
    .template-card.clothing-store .template-image {
        height: 350px;
    }
    
    .template-info {
        padding: 1rem;
    }
    
    .template-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .template-info h3::before {
        font-size: 1rem;
    }
    
    .template-info p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .template-tags {
        gap: 0.5rem;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        border-radius: 12px;
    }
    
    .template-actions {
        gap: 0.6rem;
    }
    
    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }
}

@media (max-width: 360px) {
    .templates-grid {
        padding: 0 0.5rem;
    }
    
    .template-image {
        height: 200px;
    }
    
    .template-card.clothing-store .template-image {
        height: 280px;
    }
    
    .template-info h3 {
        font-size: 1rem;
    }
    
    .template-info p {
        font-size: 0.85rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.7rem;
    }
    
    .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

    /* Tablet Responsive for Templates */
    @media (max-width: 1024px) and (min-width: 769px) {
        .templates-grid {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 1.5rem;
            margin-top: 2rem;
            padding: 0 1rem;
        }
        
        .template-image {
            height: 350px;
        }
        
        .template-card.clothing-store .template-image,
        .template-card.electronics-store .template-image,
        .template-card.coffee-store .template-image,
        .template-card.watch-store .template-image {
            height: 450px;
        }
    }

    /* Mobile Responsive for Templates Gallery */

    /* Footer Actions Mobile */
    .footer-actions {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-actions .btn {
        background: linear-gradient(135deg, #00ff88, #00ccff);
        border: none;
        color: #000;
        font-weight: 600;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .footer-actions .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
        background: linear-gradient(135deg, #00ccff, #00ff88);
        color: #000;
        text-decoration: none;
    }

    .footer-actions .btn i {
        font-size: 1rem;
    }