/* ============================================
   ABOUT PAGE - PREMIUM STYLES
   ============================================ */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.detail-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.detail-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, #0d1e38 50%, var(--navy) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(201, 162, 39, 0.03) 0%, transparent 30%);
    opacity: 1;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero .hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.about-hero h1 {
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDown 2s ease infinite;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.3);
}

.philosophy-icon i {
    font-size: 32px;
    color: var(--navy-dark);
}

.philosophy-content blockquote {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--navy-dark);
    line-height: 1.6;
    margin: 0 0 30px;
    padding: 0;
    border: none;
}

.philosophy-content blockquote em {
    color: var(--gold);
    font-style: italic;
}

.philosophy-meta {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-600);
}

.philosophy-meta .divider {
    margin: 0 15px;
    color: var(--gold);
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-frame {
    position: relative;
}

.image-frame img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.frame-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
}

.story-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.story-stats .stat {
    text-align: center;
}

.story-stats .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.story-stats .stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
    margin-top: 8px;
    display: block;
}

/* Team Section Premium */
.team-section-premium {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.team-section-premium .section-header {
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-top: 15px;
}

/* Attorney Showcase */
.attorney-showcase {
    margin-bottom: 80px;
}

.attorney-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
}

.attorney-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 280px;
    height: 350px;
}

.attorney-image-wrapper .image-backdrop {
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
}

.attorney-image-wrapper img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 2;
}

.attorney-image-wrapper .image-border {
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    z-index: 1;
    opacity: 0.5;
}

.attorney-intro {
    flex: 1;
}

.attorney-intro h3 {
    font-size: 36px;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.attorney-credentials {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 25px;
}

.attorney-affiliations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.affiliation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--off-white);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.3s ease;
}

.affiliation-badge i {
    color: var(--gold);
    font-size: 12px;
}

.affiliation-badge.highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
}

.affiliation-badge.highlight i {
    color: var(--navy-dark);
}

.affiliation-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Details Grid */
.attorney-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.detail-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--off-white);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 20px;
    color: var(--navy-dark);
}

.card-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-dark);
    margin: 0;
}

/* Credential Items */
.credential-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.credential-item:last-child {
    border-bottom: none;
}

.credential-degree {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.credential-school {
    display: block;
    font-size: 13px;
    color: var(--gray-600);
}

.credential-item .honor {
    color: var(--gold);
    font-weight: 700;
}

.credential-item.distinction {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.1) 0%, transparent 100%);
    margin: 0 -30px;
    padding: 12px 30px;
}

.credential-item.academic-excellence {
    background: var(--off-white);
    margin: 15px -30px -30px;
    padding: 15px 30px;
    border-radius: 0 0 16px 16px;
}

.credential-item.academic-excellence .credential-degree i {
    color: var(--gold);
    margin-right: 5px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--gray-200));
}

.timeline-item {
    position: relative;
    padding-bottom: 25px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--white);
    border: 3px solid var(--gray-300);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item.current .timeline-marker {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.2);
}

.timeline-item:hover .timeline-marker {
    border-color: var(--gold);
}

.timeline-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.timeline-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-dark);
    margin: 0 0 3px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.internships {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.internships h6 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.internships ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.internships li {
    font-size: 14px;
    color: var(--navy);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.internships li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Certificate Badges */
.cert-badge {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--off-white);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.cert-badge:last-child {
    margin-bottom: 0;
}

.cert-badge:hover {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.15) 0%, var(--off-white) 100%);
}

.cert-badge i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 2px;
}

.cert-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 3px;
}

.cert-issuer {
    display: block;
    font-size: 12px;
    color: var(--gray-600);
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

/* Awards */
.award-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    background: var(--off-white);
    transition: all 0.3s ease;
}

.award-item:last-child {
    margin-bottom: 0;
}

.award-item.featured {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.award-item:hover {
    transform: translateX(5px);
}

.award-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.award-item.featured .award-icon {
    animation: pulse 2s ease infinite;
}

.award-icon i {
    font-size: 20px;
    color: var(--navy-dark);
}

.award-details h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0 0 5px;
}

.award-details p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0 0 5px;
}

.award-issuer {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
}

/* Community */
.community-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-100);
}

.community-item:last-child {
    border-bottom: none;
}

.community-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-dark);
    margin: 0 0 5px;
}

.community-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.personal-note {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: 10px;
    position: relative;
}

.personal-note i {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

.personal-note p {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Board Items */
.board-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--off-white);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.board-item:last-child {
    margin-bottom: 0;
}

.board-item:hover {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.15) 0%, var(--off-white) 100%);
    transform: translateX(5px);
}

.board-item i {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.board-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy-dark);
}

/* Divider */
.attorney-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

.divider-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.3);
}

.divider-icon i {
    font-size: 24px;
    color: var(--navy-dark);
}

/* CTA Section */
.about-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.about-cta h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy-dark);
    border-color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .attorney-details-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-hero h1 {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .attorney-hero {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .attorney-image-wrapper {
        width: 220px;
        height: 280px;
    }

    .attorney-affiliations {
        justify-content: center;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .philosophy-content blockquote {
        font-size: 22px;
    }

    .story-content h2 {
        font-size: 32px;
    }

    .story-stats {
        justify-content: center;
    }

    .about-cta h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .detail-card {
        padding: 25px;
    }

    .credential-item.distinction,
    .credential-item.academic-excellence {
        margin: 0 -25px;
        padding: 12px 25px;
    }

    .credential-item.academic-excellence {
        margin: 15px -25px -25px;
        border-radius: 0 0 16px 16px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .philosophy-content blockquote {
        font-size: 18px;
    }

    .philosophy-meta {
        flex-direction: column;
        gap: 10px;
    }

    .philosophy-meta .divider {
        display: none;
    }

    .story-stats .stat-number {
        font-size: 36px;
    }

    .attorney-intro h3 {
        font-size: 28px;
    }

    .frame-accent {
        display: none;
    }
}
