/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES — Premium Red & White Theme
   Rebuilt to match the shared design system (svc-hero, service-new-card,
   why-card gradient-icon language) used across index / marketing / tech / training.
   ========================================================================== */

/* ===== 1. HERO ADD-ONS =====
   The hero markup itself now reuses the shared .svc-hero component from
   style.css (same dark gradient hero used on every other page). Only the
   about-page-specific button row needs styling here. */

.about-hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .about-hero-btns { flex-direction: column; align-items: stretch; }
    .about-hero-btns .btn { width: 100%; justify-content: center; }
}


/* ===== 2. ABOUT INTRO (Who is Sanadk) ===== */
.about-intro-section {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-heading);
    line-height: 1.4;
}

.about-intro-content p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-intro-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: linear-gradient(160deg, var(--light-gray) 0%, var(--off-white) 100%);
    border: 1px solid var(--medium-gray);
    padding: 80px 60px;
    min-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-intro-glow {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 260px;
    height: 260px;
    background: var(--primary);
    filter: blur(90px);
    opacity: 0.12;
    border-radius: 50%;
    pointer-events: none;
}

.about-intro-icon-wrap {
    position: relative;
    z-index: 2;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: var(--white);
    box-shadow: var(--shadow-primary);
    animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Floating feature chips around the intro icon */
.about-intro-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
    white-space: nowrap;
    animation: chipFloat 5s ease-in-out infinite;
}

.about-intro-chip i {
    color: var(--primary);
    font-size: 1rem;
}

.about-intro-chip-1 {
    top: 18px;
    right: 8px;
    animation-delay: 0s;
}

.about-intro-chip-2 {
    bottom: 40px;
    left: -10px;
    animation-delay: 1.2s;
}

.about-intro-chip-3 {
    bottom: -6px;
    right: 30px;
    animation-delay: 2.4s;
}

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
    .about-intro-grid { grid-template-columns: 1fr; text-align: center; }
    .about-intro-visual { padding: 70px 30px; }
}

@media (max-width: 576px) {
    .about-intro-chip { font-size: 0.78rem; padding: 10px 14px; }
    .about-intro-chip-1 { top: 10px; right: 0; }
    .about-intro-chip-2 { left: 0; bottom: 30px; }
    .about-intro-chip-3 { right: 4px; bottom: -10px; }
}


/* ===== 3. PROBLEM SECTION ===== */
.about-problem-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-xl);
    padding: 30px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.problem-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.problem-card:hover::after {
    transform: scaleX(1);
}

.problem-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-primary);
}

.problem-card:hover .problem-icon {
    transform: scale(1.1) rotate(-5deg);
}

.problem-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.problem-closing {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary-dark);
    font-weight: 600;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--primary-subtle), rgba(201, 168, 76, 0.08));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(139, 26, 26, 0.15);
    position: relative;
}

.problem-closing::before {
    content: '\f0eb';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-primary);
}


/* ===== 4. HOW IT HELPS (Options) ===== */
.about-how-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.how-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 50px;
}

.how-option-card {
    background: var(--light-gray);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.how-option-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.how-option-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-xl);
}

.how-option-card:hover::before {
    opacity: 1;
}

.how-option-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--medium-gray);
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.how-option-card:hover .how-option-num {
    color: var(--primary-glow);
}

.how-option-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-primary);
}

.how-option-card:hover .how-option-icon {
    transform: scale(1.1) rotate(-5deg);
}

.how-option-card h3 {
    font-size: 1.7rem;
    color: var(--text-heading);
    margin-bottom: 15px;
}

.how-option-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .how-options-grid { grid-template-columns: 1fr; }
}


/* ===== 5. MISSION, VISION, VALUES ===== */
.mvv-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.mv-card {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.mv-card::after {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 150px; height: 150px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.06;
    border-radius: 50%;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.mv-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mv-icon-mission {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: var(--shadow-primary);
}

.mv-icon-vision {
    background: linear-gradient(135deg, var(--accent-gold), #d4b358);
    color: var(--primary-deeper);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--text-heading);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.mv-card p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-card:hover::after {
    width: 60%;
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
}

.value-icon-trust {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.value-icon-clarity {
    background: linear-gradient(135deg, #2563EB, #3B82F6);
}

.value-icon-choice {
    background: linear-gradient(135deg, var(--accent-gold), #d4b358);
    color: var(--primary-deeper);
}

.value-icon-quality {
    background: linear-gradient(135deg, #059669, #10B981);
}

.value-icon-simplicity {
    background: linear-gradient(135deg, #7C3AED, #A78BFA);
}

.value-card h4 {
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.65;
}

@media (max-width: 992px) {
    .mv-grid { grid-template-columns: 1fr; }
}
