/* ===================================
   About Page - Premium Design
   =================================== */

/* About Hero Section */
.about-hero-section {
    position: relative;
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #03140b 0%, #0a2615 50%, #03140b 100%);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero-bg .shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 179, 103, 0.15), transparent 70%);
}

.about-hero-bg .shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.about-hero-bg .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 10%;
}

.about-hero-bg .shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(87, 179, 103, 0.2);
    color: var(--primary-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(87, 179, 103, 0.3);
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* About Main Section */
.about-main-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 50%, var(--gray-50) 100%);
}

.about-grid-premium {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Profile Card Premium */
.profile-card-premium {
    background: linear-gradient(135deg, #03140b 0%, #0a2615 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 100px;
    border: 2px solid rgba(87, 179, 103, 0.2);
}

.profile-image-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(3, 20, 11, 1), transparent);
}

.profile-content {
    padding: 1.5rem 1.5rem 2rem;
    color: white;
}

.profile-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Profile Stats Row */
.profile-stats-row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Profile Contact Info */
.profile-contact-info {
    margin-bottom: 1rem;
}

.profile-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.profile-contact-info .contact-item:hover {
    color: var(--primary-light);
}

.profile-contact-info .contact-item:last-child {
    border-bottom: none;
}

.profile-contact-info .contact-item i {
    color: var(--primary-color);
    width: 18px;
    font-size: 0.9rem;
}

/* Profile Social */
.profile-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 1rem;
}

.profile-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(87, 179, 103, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(87, 179, 103, 0.2);
}

.profile-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Story Content Premium */
.story-content-premium {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(87, 179, 103, 0.1);
}

.story-intro {
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(87, 179, 103, 0.3);
}

.section-badge.light {
    background: rgba(87, 179, 103, 0.15);
    color: var(--primary-light);
    box-shadow: none;
    border: 1px solid rgba(87, 179, 103, 0.3);
}

.story-intro h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--gray-900), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Certifications Section */
.certifications-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(87, 179, 103, 0.1);
}

.certifications-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1.25rem;
}

.cert-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.cert-badge {
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.05), rgba(87, 179, 103, 0.1));
    border: 1px solid rgba(87, 179, 103, 0.15);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(87, 179, 103, 0.15);
}

.cert-abbr {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.cert-name {
    font-size: 0.7rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Video Section */
.video-section {
    margin-top: 2rem;
}

.video-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.video-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    display: block;
}

/* Experience Section Premium */
.experience-section-premium {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--gray-900);
    margin: 1rem 0 0.5rem;
}

.section-header-center p {
    color: var(--gray-500);
    font-size: 1rem;
}

/* Experience Timeline Premium */
.experience-timeline-premium {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.experience-timeline-premium::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(87, 179, 103, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(87, 179, 103, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(87, 179, 103, 0.12);
}

.timeline-date {
    display: inline-flex;
    align-items: center;
    background: rgba(87, 179, 103, 0.1);
    color: var(--primary-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.company-name {
    display: block;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section Premium - Light Theme */
.contact-section-premium {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.contact-section-premium::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(87, 179, 103, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.contact-section-premium::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(87, 179, 103, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.contact-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info-premium {
    color: var(--gray-900);
}

.section-badge.light {
    background: linear-gradient(135deg, rgba(87, 179, 103, 0.15), rgba(87, 179, 103, 0.1)) !important;
    color: var(--primary-dark) !important;
    border: 1px solid rgba(87, 179, 103, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-info-premium h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin: 1.5rem 0;
    color: #1a1a1a;
    background: none;
    -webkit-text-fill-color: unset;
}

.contact-info-premium>p {
    color: #4b5563;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

/* Contact Methods - Light Theme */
.contact-methods {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(87, 179, 103, 0.15);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.method-item:hover {
    background: white;
    border-color: rgba(87, 179, 103, 0.4);
    transform: translateX(-10px) scale(1.02);
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(87, 179, 103, 0.15);
}

.method-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
    transition: all 0.3s ease;
}

.method-item:hover .method-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.4);
}

.method-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.method-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.method-value {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.15rem;
    direction: ltr;
    unicode-bidi: embed;
}

/* Availability Badge - Modern */
.availability-badge {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 197, 94, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 222, 128, 0.4);
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2.5rem;
}

.availability-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.8);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.availability-text span {
    display: block;
    font-size: 0.9rem;
    color: #4b5563;
}

.availability-text strong {
    color: #16a34a;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Contact Form Premium - Glass Card */
.contact-form-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-premium h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: right;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(87, 179, 103, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(87, 179, 103, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(87, 179, 103, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .about-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-card-premium {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-timeline-premium::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-marker {
        position: static;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 3rem 0 2rem;
    }

    .about-main-section {
        padding: 2rem 0;
    }

    .story-content-premium {
        padding: 1.5rem;
    }

    .cert-badges-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-form-premium {
        padding: 1.5rem;
    }
}