/* ============================================
   ABOUT US PAGE - Dedicated Styles
   SEO Contact Table + Premium Story Layout
   ============================================ */

/* ============ PAGE HERO ============ */
.page-hero {
    padding: 145px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.ph-shape {
    position: absolute;
    border-radius: 50%;
}

.ph-shape-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.12), transparent 70%);
    top: -80px;
    right: -80px;
}

.ph-shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.08), transparent 70%);
    bottom: -60px;
    left: -60px;
}

.ph-shape-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.15), transparent 70%);
    top: 40%;
    left: 30%;
    animation: float 6s ease-in-out infinite;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.88rem;
}

.breadcrumb a {
    color: var(--yellow-500);
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--yellow-400);
}

.breadcrumb-sep {
    color: var(--gray-400);
}

.breadcrumb-current {
    color: var(--gray-300);
}

.page-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 16px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
}

.page-hero-desc {
    font-size: 1.05rem;
    color: #f0f0f0 !important;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============ MAIN LAYOUT ============ */
.about-page-content {
    background: var(--white);
    padding: 80px 0;
}

.about-layout {
    max-width: 900px;
    margin: 0 auto;
}

.about-section-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-800);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.about-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--yellow-500);
    border-radius: 2px;
}

.about-story {
    margin-bottom: 60px;
}

.about-story p {
    font-size: 1.05rem;
    color: var(--dark-600);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-story strong {
    color: var(--dark-800);
    font-weight: 700;
}

.about-story a {
    color: var(--yellow-600);
    text-decoration: underline;
    font-weight: 700;
}

/* ============ STATS GRID ============ */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.about-stat-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    border-color: var(--yellow-300);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 210, 0, 0.08);
}

.about-stat-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--yellow-600);
    margin-bottom: 10px;
}

.about-stat-card p {
    font-size: 0.85rem;
    color: var(--dark-500);
    line-height: 1.6;
}

.about-stat-card strong {
    color: var(--dark-800);
    font-weight: 700;
}

/* ============ CORE VALUES ============ */
.about-values-section {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow-300);
    box-shadow: 0 10px 30px rgba(255, 210, 0, 0.1);
}

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-800);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--dark-500);
    line-height: 1.7;
}

.value-card strong {
    color: var(--dark-800);
    font-weight: 700;
}

/* ============ SEO INFORMATION BOX ============ */
.about-seo-details {
    margin-bottom: 60px;
}

.about-seo-details p {
    font-size: 1rem;
    color: var(--dark-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.seo-info-box {
    background: var(--gray-50);
    border: 2px solid var(--yellow-400);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 24px rgba(255, 210, 0, 0.06);
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
}

.seo-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.seo-table tr:last-child {
    border-bottom: none;
}

.seo-table td {
    padding: 16px 20px;
    font-size: 0.95rem;
    color: var(--dark-700);
    line-height: 1.6;
    vertical-align: top;
}

.seo-table td:first-child {
    font-weight: 700;
    color: var(--dark-800);
    width: 280px;
    background: var(--yellow-50);
    border-right: 1px solid var(--gray-200);
}

.seo-table td a {
    color: var(--yellow-700);
    font-weight: 700;
}

.seo-table td a:hover {
    color: var(--yellow-800);
    text-decoration: underline;
}

/* ============ ACTIONS ROW ============ */
.about-page-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* The rotating gradient buttons style mapping from services page */
.glow-btn {
    position: relative;
    display: inline-flex;
    padding: 3px;
    border-radius: 50px;
    background: linear-gradient(
        var(--glow-angle, 0deg),
        #FFD200,
        #FF8F00,
        #222222,
        #FFD200,
        #FFC107,
        #FF6F00,
        #222222,
        #FFD200
    );
    background-size: 300% 300%;
    animation: glowRotate 3s linear infinite, glowShift 4s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    isolation: isolate;
}

.glow-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: inherit;
    filter: blur(12px);
    opacity: 0.5;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

.glow-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 210, 0, 0.35);
}

.glow-btn-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 48px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.02rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.glow-btn-call .glow-btn-inner {
    background: var(--yellow-500);
    color: var(--dark-800);
}

.glow-btn-call:hover .glow-btn-inner {
    background: var(--yellow-600);
}

.glow-btn-enquiry .glow-btn-inner {
    background: var(--dark-800);
    color: var(--yellow-500);
}

.glow-btn-enquiry:hover .glow-btn-inner {
    background: var(--black);
}

@property --glow-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes glowRotate {
    0% { --glow-angle: 0deg; }
    100% { --glow-angle: 360deg; }
}

@keyframes glowShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

/* ============ RESPONSIVE BREAKPOINTS ============ */
@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 110px 0 40px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-desc {
        font-size: 0.95rem;
    }

    .about-page-content {
        padding: 60px 0;
    }

    .about-section-heading {
        font-size: 1.5rem;
    }

    .about-story p {
        font-size: 0.95rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .seo-info-box {
        padding: 16px;
    }

    .seo-table td {
        display: block;
        padding: 8px 12px;
        font-size: 0.88rem;
    }

    .seo-table td:first-child {
        width: 100%;
        background: var(--yellow-100);
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .about-page-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .glow-btn-lg {
        width: 100%;
        max-width: 350px;
    }

    .glow-btn-inner {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 1.6rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-stat-card {
        padding: 16px;
    }

    .about-stat-card h3 {
        font-size: 1.5rem;
    }
}
