* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: black;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative;
}

/* إضافة تأثير ضوء موف خلفي */
.about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    filter: blur(100px);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.container {
    max-width: 1400px;  /* كانت 1200px - زودنا العرض */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.8fr;  /* كانت 1fr 1.5fr - خليها أوسع للنص */
    gap: 5rem;  /* كانت 4rem - زودي المسافة بين الصورة والنص */
    align-items: center;
    padding: 0 2rem;  /* ضيفي padding للجوانب */
}

/* ===== الصورة ===== */
.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: absolute !important; 
    width: 380px !important;
    height: 380px !important;
    border: 3px solid #a855f7 !important;
    border-radius: 50% !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    animation: pulse 3s infinite !important;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
}

.profile-img {
    width: 350px !important;
    height: 350px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 4px solid #a855f7 !important;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.5);
}

/* ===== المحتوى النصي ===== */
.content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.content.visible {
    opacity: 1;
    transform: translateY(0);
}

.name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.highlight {
    color: #a855f7;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(168, 85, 247, 0.2);
    z-index: -1;
}

.title {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.description {
    color: #9ca3af;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ===== Skills Tags ===== */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.skill-tag {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag:hover {
    background: #a855f7;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}

/* ===== الأزرار ===== */
.buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary {
    background: #a855f7;
    color: black;
    border: 2px solid #a855f7;
}

.primary:hover {
    background: transparent;
    color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.3);
}

.secondary {
    background: transparent;
    color: white;
    border: 2px solid #a855f7;
}

.secondary:hover {
    background: #a855f7;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.3);
}

/* ===== للجوال ===== */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .image-frame {
        width: 280px;
        height: 280px;
    }
    
    .profile-img {
        width: 250px;
        height: 250px;
    }
    
    .name {
        font-size: 2.2rem;
    }
    
    .title {
        font-size: 1.2rem;
    }
    
    .buttons {
        justify-content: center;
    }
    
    .skills {
        justify-content: center;
    }
}
/* ===== USP Section ===== */

/* ===== USP Section - نسخة نظيفة ===== */
.usp-wrapper {
    margin: 1.5rem 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.usp-content {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
    border-left: 4px solid #a855f7;
    padding: 1rem 1.5rem;
    border-radius: 0 20px 20px 0;
    position: relative;
    backdrop-filter: blur(5px);
    display: inline-block;
    max-width: 100%;
    transition: all 0.3s ease;
}

/* إضاءة خلفية */
.usp-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(168, 85, 247, 0.2), transparent 70%);
    border-radius: inherit;
    z-index: -1;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.usp-icon {
    font-size: 1.8rem;
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.usp-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    line-height: 1.5;
    display: inline;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.usp-break {
    display: inline;
}

.usp-content:hover {
    transform: translateX(8px);
    border-left-width: 6px;
}

.usp-content:hover .usp-icon {
    animation: none;
    transform: scale(1.2);
}

/* ===== RESPONSIVE للـ USP فقط - نسخة واحدة منظمة ===== */

/* من 1200px فأكبر */
@media (min-width: 1200px) {
    .usp-content {
        padding: 1.2rem 2rem;
    }
    .usp-text {
        font-size: 1.2rem;
    }
}

/* من 992px لـ 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .usp-content {
        padding: 1.1rem 1.8rem;
    }
    .usp-text {
        font-size: 1.15rem;
    }
}

/* من 768px لـ 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .usp-content {
        padding: 1rem 1.5rem;
    }
    .usp-text {
        font-size: 1.1rem;
    }
    .usp-icon {
        font-size: 1.6rem;
    }
}

/* من 576px لـ 767px */
@media (min-width: 576px) and (max-width: 767px) {
    .usp-wrapper {
        margin: 1.2rem 0;
    }
    .usp-content {
        padding: 0.9rem 1.2rem;
    }
    .usp-text {
        font-size: 1rem;
    }
    .usp-icon {
        font-size: 1.4rem;
    }
}

/* أقل من 576px */
@media (max-width: 575px) {
    .usp-wrapper {
        margin: 1rem 0;
    }
    .usp-content {
        padding: 0.8rem 1rem;
        border-left-width: 4px;
    }
    .usp-text {
        font-size: 0.95rem;
    }
    .usp-icon {
        font-size: 1.3rem;
        margin-right: 0.3rem;
    }
}

/* أقل من 400px */
@media (max-width: 399px) {
    .usp-content {
        padding: 0.7rem 0.9rem;
    }
    .usp-text {
        font-size: 0.9rem;
    }
    .usp-icon {
        font-size: 1.2rem;
    }
}

/* أقل من 350px */
@media (max-width: 349px) {
    .usp-content {
        padding: 0.6rem 0.8rem;
    }
    .usp-text {
        font-size: 0.85rem;
    }
    .usp-icon {
        font-size: 1.1rem;
        display: block;
        margin-bottom: 0.2rem;
    }
    .usp-break {
        display: block;
    }
}
/* ===== Services Section ===== */
.services {
    padding: 5rem 0;
    background-color: black;
    position: relative;
    overflow: hidden;
}

/* إضاءة خلفية */
.services::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
    filter: blur(120px);
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

/* الهيدر */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: #9ca3af;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid للكروت */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* الكارد */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* إضاءة خلفية للكارد */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #a855f7;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

/* الأيقونة */
.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* عنوان الخدمة */
.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #a855f7;
    transition: width 0.3s ease;
}

.service-card:hover .service-title::after {
    width: 60px;
}

/* الوصف */
.service-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Tags المهارات */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tags span {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
}

.service-tags span:hover {
    background: #a855f7;
    color: black;
    transform: translateY(-2px);
}

/* ===== Responsive للـ Services ===== */

/* للابتوب */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

/* للتابلت */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* للموبايل */
@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.8rem 1.2rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
}

/* للموبايل الصغير */
@media (max-width: 480px) {
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-tags span {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}



/* ===== Experience Section ===== */
.experience {
    padding: 5rem 0;
    background-color: black;
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    z-index: 0;
}

.experience .container {
    position: relative;
    z-index: 1;
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1rem 0;
}

/* الخط العمودي */
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #a855f7, rgba(168, 85, 247, 0.2));
}

/* كل عنصر في الـ timeline */
.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

/* النقطة على الخط */
.timeline-dot {
    position: absolute;
    left: 12px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #a855f7;
    border: 3px solid black;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 20px #a855f7;
}

/* التاريخ */
.timeline-date {
    margin-bottom: 1rem;
}

.timeline-date span {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: inline-block;
}

/* المحتوى */
.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: #a855f7;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.timeline-header {
    margin-bottom: 1rem;
}

.timeline-header h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.timeline-company {
    color: #a855f7;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.timeline-company::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #a855f7;
}

.timeline-description {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.timeline-description br {
    margin-bottom: 0.5rem;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.timeline-tags span {
    background: rgba(168, 85, 247, 0.08);
    color: #a855f7;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.timeline-tags span:hover {
    background: #a855f7;
    color: black;
}

/* ===== Responsive للـ Experience ===== */

/* للتابلت */
@media (max-width: 768px) {
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 45px;
    }
    
    .timeline-dot {
        left: 7px;
        width: 14px;
        height: 14px;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-header h3 {
        font-size: 1.2rem;
    }
}

/* للموبايل */
@media (max-width: 576px) {
    .experience {
        padding: 3rem 0;
    }
    
    .timeline-item {
        padding-left: 40px;
        margin-bottom: 2rem;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-dot {
        left: 2px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-date span {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
    
    .timeline-header h3 {
        font-size: 1.1rem;
    }
    
    .timeline-company {
        font-size: 0.9rem;
    }
    
    .timeline-description {
        font-size: 0.9rem;
    }
    
    .timeline-tags span {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}





/* ===== Projects Section ===== */
/* ===== التصميم الجديد كلياً ===== */

.portfolio-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

/* خلفية ديناميكية */
.portfolio-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: rotateBlob 20s linear infinite;
}

.portfolio-showcase::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: rotateBlobReverse 25s linear infinite;
}

.portfolio-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ===== Header بتصميم فاخر ===== */
.showcase-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.header-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.badge-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

.badge-text {
    color: #a855f7;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    background: rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(10px);
}

.showcase-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-word {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-word-1 {
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
}

.title-word-2 {
    font-size: 5.5rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

.showcase-subtitle {
    color: #9ca3af;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

/* جزيئات متحركة */
.header-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #a855f7;
    border-radius: 50%;
    opacity: 0.3;
}

.particle:nth-child(1) {
    top: 20%;
    left: 30%;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 60%;
    right: 20%;
    width: 6px;
    height: 6px;
    animation: floatParticle 12s ease-in-out infinite reverse;
}

.particle:nth-child(3) {
    bottom: 10%;
    left: 40%;
    width: 3px;
    height: 3px;
    animation: floatParticle 10s ease-in-out infinite;
}

.particle:nth-child(4) {
    top: 30%;
    right: 30%;
    width: 5px;
    height: 5px;
    animation: floatParticle 14s ease-in-out infinite reverse;
}

/* ===== عرض المشاريع بشكل أفقي ===== */
.projects-showcase {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse .item-content {
    direction: ltr;
}

/* قسم الصور - تصميم Grid متعدد الصور */
.item-media {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.item-media:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 70px -20px rgba(168, 85, 247, 0.4);
}

.media-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4px;
    background: #1f1f1f;
    padding: 4px;
    border-radius: 30px;
}

.grid-main {
    position: relative;
    overflow: hidden;
    border-radius: 26px 0 0 26px;
}

.grid-side {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.grid-img.small {
    height: 100%;
}

.grid-main:hover .grid-img,
.grid-side:hover .grid-img {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
}

.media-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.media-badge.secondary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-label {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* محتوى المشروع */
.item-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    border: 1px solid rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.item-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #a855f7, #ec4899);
    transition: height 0.4s ease;
}

.item-content:hover::before {
    height: 100%;
}

.item-content:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
}

.showcase-item.reverse .item-content:hover {
    transform: translateX(-10px);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
}

.content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.item-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.item-year {
    color: #a855f7;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.item-description {
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.item-contribution {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(168, 85, 247, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
}

.item-contribution:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: #a855f7;
    transform: scale(1.02);
}

.contrib-icon {
    font-size: 2rem;
    line-height: 1;
}

.contrib-text {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
}

.contrib-text strong {
    color: #a855f7;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tool-tag {
    padding: 0.5rem 1.2rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    color: #a855f7;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.tool-tag:hover {
    background: #a855f7;
    color: white;
    transform: translateY(-2px);
    border-color: #a855f7;
}

.item-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.item-link:hover {
    gap: 1.5rem;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.link-arrow {
    transition: transform 0.3s ease;
}

.item-link:hover .link-arrow {
    transform: translateX(5px);
}

/* ===== Animations ===== */
@keyframes rotateBlob {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateBlobReverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(-10px, 30px);
    }
    75% {
        transform: translate(-30px, -10px);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-item.reverse {
        direction: ltr;
    }
    
    .showcase-title {
        font-size: 4rem;
    }
    
    .title-word-2 {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .showcase-title {
        font-size: 3rem;
    }
    
    .title-word-2 {
        font-size: 3.5rem;
    }
    
    .item-title {
        font-size: 1.6rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-main {
        border-radius: 26px 26px 0 0;
    }
}





/* ===== قسم credentials الجديد ===== */
.credentials {
    padding: 6rem 0;
    background: #0a0a0a;
}

.cred-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== عنوان بسيط وجميل ===== */
.cred-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.title-regular {
    color: white;
    text-transform: lowercase;
}

.title-amp {
    color: #a855f7;
    font-size: 4rem;
    font-weight: 800;
    font-family: serif;
    transform: rotate(0deg);
    display: inline-block;
    animation: ampPop 3s ease-in-out infinite;
}

/* ديكور تحت العنوان */
.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: #a855f7;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

/* ===== Grid الكاردز ===== */
.cred-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* تصميم الكارد */
.cred-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    align-items: center;
   
}

.cred-card:hover {
    transform: translateY(-8px);
    border-color: #a855f7;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.15);
}

/* صورة الكارد */
.card-image {
    position: relative;
    height: 580px;
    width: 430px;
    overflow: hidden;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.cred-card:hover .card-image img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1.2rem;
    background: #a855f7;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
    text-align: center;
    justify-content: center;
    align-items: center;
   
}

.image-badge.acceptance {
    background: #22c55e;
}

/* محتوى الكارد */
.card-content {
    padding: 1.8rem;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.card-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.card-desc {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.card-footer {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-date, .card-duration {
    color: #d1d5db;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-tags span {
    padding: 0.3rem 1rem;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    color: #a855f7;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-tags span:hover {
    background: #a855f7;
    color: white;
}

/* ===== Animations ===== */
@keyframes ampPop {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        text-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    }
    50% {
        transform: scale(1.2) rotate(5deg);
        text-shadow: 0 0 40px rgba(168, 85, 247, 0.7);
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .cred-title {
        font-size: 2.5rem;
        gap: 0.5rem;
    }
    
    .title-amp {
        font-size: 3rem;
    }
    
    .cred-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== الهيدر الجديد الجامد ===== */
.credentials-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    padding: 3rem 0;
}

/* ===== خلفية متحركة ===== */
.header-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.backdrop-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
    animation: circleFloat 20s ease-in-out infinite;
}

.backdrop-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.backdrop-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent 70%);
    animation-delay: -5s;
}

.backdrop-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 70%);
    animation: circlePulse 4s ease-in-out infinite;
}

/* ===== شعار علوي ===== */
.header-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.mini-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
    animation: lineWidth 3s ease-in-out infinite;
}

.mini-text {
    color: #a855f7;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(168, 85, 247, 0.2);
}







/* ===== الهيدر البسيط ===== */
.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.section-title span:not(.title-amp) {
    text-transform: lowercase;
    position: relative;
}

/* حركة خفيفة على الكلمات */
.section-title span:not(.title-amp)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #a855f7;
    transition: width 0.3s ease;
}

.section-title:hover span:not(.title-amp)::after {
    width: 100%;
}

/* علامة & متحركة */
.title-amp {
    color: #a855f7;
    font-size: 4rem;
    font-weight: 800;
    font-family: serif;
    animation: ampSoft 3s ease-in-out infinite;
    display: inline-block;
    line-height: 1;
}

/* الديكور تحت */
.title-under {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.under-dot {
    width: 6px;
    height: 6px;
    background: #a855f7;
    border-radius: 50%;
    animation: dotSoft 2s ease-in-out infinite;
}

.under-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

/* حركات بسيطة */
@keyframes ampSoft {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    }
}

@keyframes dotSoft {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        gap: 0.5rem;
    }
    
    .title-amp {
        font-size: 3rem;
    }
}




/* ===== الهيدر البسيط ===== */
.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* تنسيق النجمتين */
.title-star {
    color: #a855f7;
    font-size: 2.5rem;
    animation: starTwinkle 2s ease-in-out infinite;
    display: inline-block;
    line-height: 1;
}

/* نجمة أولى */
.title-star:first-child {
    animation-delay: 0s;
}

/* نجمة تانية */
.title-star:last-child {
    animation-delay: 1s;
}

.section-title span:not(.title-amp):not(.title-star) {
    text-transform: lowercase;
    position: relative;
}

/* حركة خفيفة على الكلمات */
.section-title span:not(.title-amp):not(.title-star)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #a855f7;
    transition: width 0.3s ease;
}

.section-title:hover span:not(.title-amp):not(.title-star)::after {
    width: 100%;
}

/* علامة & متحركة */
.title-amp {
    color: #a855f7;
    font-size: 4rem;
    font-weight: 800;
    font-family: serif;
    animation: ampSoft 3s ease-in-out infinite;
    display: inline-block;
    line-height: 1;
}

/* الديكور تحت */
.title-under {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.under-dot {
    width: 6px;
    height: 6px;
    background: #a855f7;
    border-radius: 50%;
    animation: dotSoft 2s ease-in-out infinite;
}

.under-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

/* حركات بسيطة */
@keyframes ampSoft {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    }
}

@keyframes dotSoft {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@keyframes starTwinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
        text-shadow: 0 0 5px rgba(168, 85, 247, 0.5);
    }
    50% {
        transform: scale(1.3) rotate(10deg);
        opacity: 1;
        text-shadow: 0 0 20px rgba(168, 85, 247, 0.8), 0 0 30px rgba(168, 85, 247, 0.5);
    }
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        gap: 0.5rem;
    }
    
    .title-amp {
        font-size: 3rem;
    }
    
    .title-star {
        font-size: 2rem;
    }
}




/* ===== قسم التواصل ===== */
.contact-section {
    padding: 6rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* خلفية متحركة */
.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: contactFloat 20s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: contactFloatReverse 25s ease-in-out infinite;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ===== Header ===== */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: #a855f7;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.header-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.title-gradient {
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 2px #a855f7;
    text-stroke: 2px #a855f7;
}

.header-desc {
    color: #9ca3af;
    font-size: 1.2rem;
}

/* ===== Grid التواصل ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

/* بطاقة التواصل */
.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 30px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* تأثير الخلفية */
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #a855f7;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

/* أيقونة البطاقة */
.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 30px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.contact-card:hover .icon-bg {
    background: #a855f7;
    transform: rotate(135deg);
}

.icon-emoji {
    position: relative;
    font-size: 2.5rem;
    z-index: 2;
    transition: all 0.4s ease;
}

.contact-card:hover .icon-emoji {
    transform: scale(1.1);
}

/* عنوان البطاقة */
.card-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    z-index: 2;
    position: relative;
}

/* تفاصيل البطاقة */
.card-detail {
    color: #9ca3af;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    word-break: break-word;
    z-index: 2;
    position: relative;
}

/* رابط البطاقة */
.card-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a855f7;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 2;
    position: relative;
    margin-top: auto;
    transition: all 0.3s ease;
}

.action-arrow {
    transition: transform 0.3s ease;
}

.contact-card:hover .card-action {
    color: white;
}

.contact-card:hover .action-arrow {
    transform: translateX(5px);
}

/* ===== Footer ===== */
.contact-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 60px;
    backdrop-filter: blur(10px);
}

.footer-text {
    color: #d1d5db;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-emoji {
    font-size: 1.5rem;
    animation: rocketFloat 3s ease-in-out infinite;
}

/* ===== Animations ===== */
@keyframes contactFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(-30px, -20px) scale(1.05);
    }
}

@keyframes contactFloatReverse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-30px, 30px) scale(1.1);
    }
    50% {
        transform: translate(20px, -20px) scale(0.95);
    }
    75% {
        transform: translate(30px, 20px) scale(1.05);
    }
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-title {
        font-size: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-text {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

