/**
 * Enhanced Main Stylesheet for Saqqr Digital Theme
 * ملف التنسيق المحسن لموقع الصقر للتسويق الرقمي
 */

:root {
    /* الألوان الأساسية */
    --saqqr-dark-blue: #083B66;
    --saqqr-turquoise: #00A7B4;
    --saqqr-gold: #C8A14F;
    --saqqr-light-blue: #0E4A7D;
    --saqqr-dark: #0E4A7D;
    --saqqr-dark-hover: #083B66;
    --saqqr-accent: #00A7B4;
    --saqqr-highlight: #FFD700;
    
    /* التدرجات المحسنة */
    --saqqr-gradient-1: linear-gradient(135deg, #00A7B4, #083B66);
    --saqqr-gradient-2: linear-gradient(135deg, #C8A14F, #0E4A7D);
    --saqqr-gradient-animated: linear-gradient(-45deg, #00A7B4, #083B66, #0E4A7D, #00A7B4);
    --saqqr-gradient-hero: linear-gradient(135deg, #00A7B4 0%, #083B66 50%, #0E4A7D 100%);
    
    /* الظلال والتأثيرات */
    --saqqr-shadow-light: 0 10px 30px rgba(0, 167, 180, 0.2);
    --saqqr-shadow-medium: 0 15px 35px rgba(0, 167, 180, 0.25);
    --saqqr-shadow-heavy: 0 20px 40px rgba(0, 167, 180, 0.3);
    --saqqr-shadow-extra: 0 25px 50px rgba(0, 167, 180, 0.4);
    --saqqr-glow: 0 0 20px rgba(0, 167, 180, 0.5);
    --saqqr-glow-strong: 0 0 30px rgba(0, 167, 180, 0.7);
    
    /* المتغيرات الإضافية */
    --saqqr-border-radius: 1rem;
    --saqqr-border-radius-small: 0.5rem;
    --saqqr-border-radius-large: 1.5rem;
    --saqqr-transition: all 0.4s ease;
    --saqqr-transition-fast: all 0.2s ease;
    --saqqr-transition-slow: all 0.6s ease;
}

/* الخطوط والنصوص */
body {
    font-family: 'Cairo', sans-serif !important;
    background-color: var(--saqqr-dark-blue);
    color: #E0E0E0;
    line-height: 1.6;
}

/* التحريكات الأساسية */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-10px); }
    70% { transform: translateY(-5px); }
    90% { transform: translateY(-2px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* قسم Hero المحسن */
.hero-enhanced {
    background: var(--saqqr-gradient-animated);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 59, 102, 0.3);
    z-index: 1;
}

.hero-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-enhanced .hero-content {
    position: relative;
    z-index: 2;
}

/* عناوين Hero */
.hero-title {
    background: linear-gradient(135deg, #ffffff, #00A7B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    background: linear-gradient(135deg, #00A7B4, #C8A14F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* أزرار CTA المحسنة */
.cta-button {
    background: var(--saqqr-gradient-1);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: var(--saqqr-transition);
    box-shadow: var(--saqqr-shadow-light);
    cursor: pointer;
    text-align: center;
    min-width: 200px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--saqqr-shadow-heavy);
    color: white;
    text-decoration: none;
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:active::before {
    width: 300px;
    height: 300px;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::after {
    left: 100%;
}

/* البطاقات المحسنة */
.card-enhanced {
    background: var(--saqqr-gradient-1);
    border-radius: var(--saqqr-border-radius);
    padding: 2rem;
    transition: var(--saqqr-transition);
    border: 1px solid rgba(0, 167, 180, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    backdrop-filter: blur(10px);
}

.card-enhanced.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

.card-enhanced:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.02);
    box-shadow: var(--saqqr-shadow-heavy);
    border-color: rgba(0, 167, 180, 0.5);
}

.card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.card-enhanced:hover::before {
    left: 100%;
}

.card-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 167, 180, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-enhanced:hover::after {
    opacity: 1;
}

/* بطاقات الخدمات المحسنة */
.service-card-enhanced {
    background: var(--saqqr-gradient-1);
    padding: 2rem;
    border-radius: var(--saqqr-border-radius);
    transition: var(--saqqr-transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 167, 180, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    min-height: 250px;
}

.service-card-enhanced.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card-enhanced:hover {
    background: var(--saqqr-dark-hover);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--saqqr-shadow-heavy);
    border-color: rgba(0, 167, 180, 0.5);
}

.service-card-enhanced h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: var(--saqqr-transition-fast);
}

.service-card-enhanced:hover h3 {
    color: var(--saqqr-accent);
}

.service-card-enhanced p {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card-enhanced a {
    color: var(--saqqr-accent);
    font-weight: bold;
    font-size: 0.9rem;
    transition: var(--saqqr-transition);
    align-self: flex-start;
    text-decoration: none;
    position: relative;
}

.service-card-enhanced a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saqqr-highlight);
    transition: width 0.3s ease;
}

.service-card-enhanced a:hover {
    color: var(--saqqr-highlight);
    transform: translateX(-5px);
}

.service-card-enhanced a:hover::after {
    width: 100%;
}

/* العدادات الإحصائية المحسنة */
.stats-counter {
    font-size: 3rem;
    font-weight: 900;
    background: var(--saqqr-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: var(--saqqr-transition);
    position: relative;
}

.stats-counter:hover {
    animation: pulse 1s infinite;
}

.stats-counter::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 167, 180, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stats-counter:hover::after {
    opacity: 1;
}

/* شعارات الشركاء المحسنة */
.partner-logo-enhanced {
    transition: var(--saqqr-transition);
    opacity: 0.7;
    filter: grayscale(100%) brightness(0.8);
    border-radius: var(--saqqr-border-radius-small);
    padding: 0.5rem;
}

.partner-logo-enhanced:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.1) rotate(2deg);
    box-shadow: var(--saqqr-glow);
}

/* بطاقات التقييمات المحسنة */
.testimonial-card-enhanced {
    background: var(--saqqr-gradient-1);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--saqqr-border-radius);
    padding: 2rem;
    color: #e5e7eb;
    position: relative;
    opacity: 0;
    transform: translateY(12px);
    transition: var(--saqqr-transition-slow);
    backdrop-filter: blur(10px);
}

.testimonial-card-enhanced.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card-enhanced::before {
    content: """;
    position: absolute;
    top: .25rem;
    right: 1rem;
    font-size: 4rem;
    line-height: 1;
    color: rgba(255,255,255,.07);
    font-weight: 900;
    pointer-events: none;
}

.testimonial-card-enhanced:hover {
    background: var(--saqqr-dark-hover);
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(0,167,180,.35);
    box-shadow: var(--saqqr-shadow-heavy);
}

.testimonial-author {
    display: inline-block;
    margin-top: .75rem;
    font-weight: 700;
    color: var(--saqqr-accent);
    position: relative;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    width: 0.5rem;
    height: 2px;
    background: var(--saqqr-accent);
    transform: translateY(-50%);
}

/* تحريكات التمرير */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--saqqr-transition-slow);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* الأيقونات المحسنة */
.icon-enhanced {
    width: 4rem;
    height: 4rem;
    background: var(--saqqr-gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--saqqr-transition);
    box-shadow: var(--saqqr-shadow-light);
    position: relative;
    overflow: hidden;
}

.icon-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.icon-enhanced:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--saqqr-glow);
}

.icon-enhanced:hover::before {
    opacity: 1;
}

/* تحسينات الروابط */
a {
    transition: var(--saqqr-transition-fast);
}

a:hover {
    text-decoration: none;
}

/* تحسينات الفوتر */
footer a, footer p, footer address {
    color: #cbd5e1;
    transition: var(--saqqr-transition-fast);
}

footer a:hover {
    color: var(--saqqr-turquoise);
    text-shadow: 0 0 5px rgba(0, 167, 180, 0.5);
}

footer h4 {
    color: #FFFFFF;
}

/* تحسينات الأكورديون */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* تحسينات الاستجابة */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-counter {
        font-size: 2.5rem;
    }
    
    .card-enhanced:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .service-card-enhanced:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .cta-button {
        min-width: 150px;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-counter {
        font-size: 2rem;
    }
    
    .card-enhanced,
    .service-card-enhanced {
        padding: 1.5rem;
    }
    
    .cta-button {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* تحسينات إضافية للأداء */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* تحسينات إمكانية الوصول */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* تحسينات الطباعة */
@media print {
    .hero-enhanced {
        background: var(--saqqr-dark-blue) !important;
        color: white !important;
    }
    
    .card-enhanced,
    .service-card-enhanced,
    .testimonial-card-enhanced {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
    }
}


/* ========== تأثير على روابط القوائم ========== */
nav ul li a,
.nav-link {
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

nav ul li a:hover,
.nav-link:hover {
    color: var(--saqqr-highlight) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}


/* ===== FAQ Cards (match services cards) ===== */
.faq-accordion .faq-item{
  background-color: var(--saqqr-dark);
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  transition: background-color .35s ease, transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.faq-accordion .faq-item:hover{
  background-color: var(--saqqr-dark-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  border-color: rgba(255,255,255,.06);
}

/* Header button look */
.faq-accordion .accordion-header{
  width: 100%;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  color: #fff;
  font-weight: 700;
  text-align: right;
  border-radius: .75rem;
  transition: background-color .25s ease, color .25s ease;
}

.faq-accordion .accordion-header:hover{
  background: rgba(255,255,255,.06);
  color: var(--saqqr-highlight);
}

/* Chevron rotation via class, not inline style */
.faq-accordion .chevron{
  width: 1.25rem; height: 1.25rem;
  transition: transform .35s ease;
}

/* Body animation */
.faq-accordion .accordion-content{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  will-change: max-height, opacity, transform;
  transition: max-height .45s ease, opacity .35s ease, transform .35s ease;
}

/* Inner padding so content slides nicely */
.faq-accordion .accordion-content .content-inner{
  padding: 0 1.25rem 1rem 1.25rem;
  color: #e0e0e0;
  line-height: 1.7;
}

/* Open state toggled by JS */
.faq-accordion .faq-item.open .accordion-content{
  opacity: 1;
  transform: translateY(0);
}

.faq-accordion .faq-item.open .chevron{
  transform: rotate(180deg);
}

/* ===== Testimonials Cards ===== */
.testimonial-card{
  background-color: var(--saqqr-dark);              /* نفس ألوان بطاقات الخدمات */
  border-radius: 1rem;
  padding: 2rem;
  transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease, opacity .6s ease;
  opacity: 0;                                        /* لتأثير الظهور */
  transform: translateY(16px) scale(0.98);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

/* دخول عند الظهور */
.testimonial-card.in-view{
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

/* تفاعل عند التحويم */
.testimonial-card:hover{
  background-color: var(--saqqr-dark-hover);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 26px rgba(0,0,0,.28);
}

/* تنسيق النص داخل البطاقة لمطابقة باقي الأقسام */
.testimonial-card p{
  color: #e0e0e0;
  line-height: 1.8;
  font-size: 0.98rem;
}

/* اختياري: اقتباس بداية/نهاية بشكل بسيط */
.testimonial-card p::before{
  content: "“";
  color: var(--saqqr-accent);
  margin-inline-start: .25rem;
  font-weight: 900;
}
.testimonial-card p::after{
  content: "”";
  color: var(--saqqr-accent);
  margin-inline-end: .25rem;
  font-weight: 900;
}

/* دعم تباعد متسق داخل شبكة الشهادات */
.testimonials-grid{
  gap: 2rem; /* لو تحب ضبطها من CSS بدل utilities */
}


/* ---- Partners logos base ---- */
.partner-logo {
  opacity: 1;                 /* افتراضيًا ظاهرة */
  transform: scale(1);        /* الحجم الطبيعي */
  transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
  filter: saturate(0.7);      /* درجة تشبع بسيطة */
  will-change: transform, opacity, filter;
}

/* دخول ناعم يُضاف مرّة واحدة من JS */
.partner-logo.is-entering {
  opacity: 0;
  transform: scale(0.9);
}

/* بعد ما تدخل وتستقر */
.partner-logo.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}

/* تأثير hover فقط للتفاعل البسيط */
.partner-logo:hover {
  transform: scale(1.05);
  filter: saturate(1.1);
}


/* الهيدر دائمًا فوق المحتوى */
#header{ z-index: 9999 !important; }

/* روابط القائمة أعلى الهيدر */
#header .nav-link{
  color:#fff !important;
  text-decoration:none;
}
#header .nav-link:hover{ color: var(--saqqr-teal, #00B7C1) !important; }

/* المنسدلة (القائمة البيضاء) */
#header .sub-menu{
  background:#fff !important;
  color:#0D1C3C !important;
  border:1px solid #e6eef3;
  border-radius:12px;
  box-shadow:0 16px 40px rgba(0,0,0,.08);
}
#header .sub-menu a{
  color:#0D1C3C !important;
}
#header .sub-menu a:hover{
  background:rgba(0,183,193,.10); /* فيروزي خفيف */
  color:#0D1C3C !important;
}

/* لو عندك أي شفافية زاحفة من كلاسات تانية */
#header{
  background-color:#0D1C3C !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  mix-blend-mode:normal !important;
}


/* FAQ Styles – Saqqr Theme */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0, -30px, 0); }
    70% { transform: translate3d(0, -15px, 0); }
    90% { transform: translate3d(0, -4px, 0); }
}
.animate-bounce { animation: bounce 2s infinite; }
.text-saqqr-gold { color: #C8A14F; }
.text-saqqr-dark-blue { color: #083B66; }

/* تمييز السؤال المفتوح */
.faq-item summary.active {
    background-image: linear-gradient(to right, #1a365d, #2c5282);
}
.faq-item summary.active h3 {
    color: white;
}
.faq-item summary.active span {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}
.faq-item > div {
    transition: padding 0.3s ease-out, max-height 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.faq-item[open] > div {
    max-height: 1000px;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.category-filter.active {
  background-color: #1a365d;
  color: white;
  border-color: #1a365d;
}

/* Simple Enhanced About Section - Compatible with existing design */

/* ===== About Section Base ===== */
.about-section-simple {
    position: relative;
    padding: 5rem 0;
    background: #0E4A7D; /* نفس اللون الأصلي */
    overflow: hidden;
}

/* ===== Background Elements ===== */
.about-bg-simple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-gradient-simple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(8, 59, 102, 0.1) 0%, 
        rgba(0, 167, 180, 0.05) 50%,
        rgba(200, 161, 79, 0.05) 100%
    );
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ===== Content Wrapper ===== */
.about-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 4xl;
    margin: 0 auto;
    text-align: center;
}

/* ===== Header ===== */
.about-header-simple {
    margin-bottom: 3rem;
}

.about-title-simple {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-underline-simple {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00A7B4, #C8A14F);
    margin: 0 auto;
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { box-shadow: 0 0 5px rgba(0, 167, 180, 0.5); }
    100% { box-shadow: 0 0 15px rgba(200, 161, 79, 0.8); }
}

/* ===== Main Content ===== */
.about-main-content {
    margin-bottom: 3rem;
}

.glass-simple {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.glass-simple:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.intro-text,
.experience-text,
.target-text,
.ai-text {
    font-size: 1.125rem;
    color: rgb(209, 213, 219); /* text-gray-300 */
    line-height: 1.7;
    margin: 0;
}

/* ===== Mission Statement ===== */
.about-mission {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(0, 167, 180, 0.1) 0%, 
        rgba(200, 161, 79, 0.1) 100%
    );
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== Simple Stats ===== */
.about-stats-simple {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item-simple {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item-simple:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number-simple {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #C8A14F;
    text-shadow: 0 2px 10px rgba(200, 161, 79, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label-simple {
    font-size: 0.9rem;
    color: rgb(209, 213, 219);
    font-weight: 600;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .about-section-simple {
        padding: 4rem 0;
    }
    
    .about-stats-simple {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section-simple {
        padding: 3rem 0;
    }
    
    .glass-simple {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .intro-text,
    .experience-text,
    .target-text,
    .ai-text {
        font-size: 1rem;
    }
    
    .about-stats-simple {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-item-simple {
        padding: 1rem;
        min-width: 100px;
    }
    
    .stat-number-simple {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-section-simple {
        padding: 2rem 0;
    }
    
    .about-header-simple {
        margin-bottom: 2rem;
    }
    
    .about-main-content {
        margin-bottom: 2rem;
    }
    
    .glass-simple {
        padding: 1.25rem;
    }
    
    .about-stats-simple {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item-simple {
        width: 100%;
        max-width: 200px;
    }
}

/* ===== Animation Performance ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

 
