/* About Page Professional Styles */
:root {
    --primary-dark: #0a1a35;
    --primary-blue: #1a3a6c;
    --accent-blue: #2d5aa0;
    --highlight-blue: #4a7bc8;
    --light-blue: #6a9ae3;
    --gold-accent: #377ed4;
    --platinum: #e5e4e2;
    --text-white: #ffffff;
    --text-light: #e6e9f0;
    --text-muted: #a8b2d1;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(212, 175, 55, 0.3);
    --shadow-blue: rgba(26, 58, 108, 0.5);
    --shadow-gold: rgba(212, 175, 55, 0.2);
}

/* About Hero Section */
.are-about-hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.are-about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 123, 200, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(42, 157, 244, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 60%, rgba(212, 175, 55, 0.05) 100%);
}

.are-about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.are-about-breadcrumb {
    margin-bottom: 40px;
}

.are-about-breadcrumb ol {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 12px;
}

.are-about-breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.are-about-breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 12px;
    color: var(--light-blue);
}

.are-about-breadcrumb a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.are-about-breadcrumb a:hover {
    color: var(--text-white);
}

.are-about-breadcrumb li[aria-current="page"] {
    color: var(--text-white);
    font-weight: 500;
}

/* Hero Title */
.are-about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 24px;
    position: relative;
}

.are-about-hero-title span {
    background: linear-gradient(135deg, var(--gold-accent), var(--platinum));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.are-about-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
    border-radius: 2px;
}

.are-about-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 300;
    max-width: 90%;
}

/* Hero Visual */
.are-about-hero-visual {
    position: relative;
}

.are-about-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-light);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.are-about-hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.are-about-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(10, 26, 53, 0.1), rgba(212, 175, 55, 0.05));
    z-index: 1;
}

.are-about-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.are-about-hero-image:hover img {
    transform: scale(1.05);
}

/* About Content Section */
.are-about-content-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    position: relative;
}

.are-about-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.are-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* About Grid */
.are-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* About Cards */
.are-about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 50px 35px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: fit-content;
}

.are-about-card::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.6s ease;
}

.are-about-card:hover::before {
    left: 100%;
}

.are-about-card:hover {
    transform: translateY(-15px);
    border-color: var(--border-gold);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

/* Card Header */
.are-about-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.are-about-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-accent), var(--platinum));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.8rem;
    box-shadow: 0 10px 25px var(--shadow-gold);
    transition: all 0.3s ease;
}

.are-about-card:hover .are-about-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px var(--shadow-gold);
}

.are-about-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    line-height: 1.2;
}

/* Card Content */
.are-about-card-content {
    position: relative;
    z-index: 2;
}

.are-about-card-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.are-about-card-content p:last-child {
    margin-bottom: 0;
}

.are-about-card-content strong {
    color: var(--text-white);
    font-weight: 600;
}

/* Individual Card Styling */
#are-about-us {
    border-top: 3px solid var(--accent-blue);
}

#are-about-us .are-about-card-icon {
    background: linear-gradient(135deg, var(--accent-blue), var(--highlight-blue));
}

#are-vision {
    border-top: 3px solid var(--gold-accent);
}

#are-vision .are-about-card-icon {
    background: linear-gradient(135deg, var(--gold-accent), #3fc7f4);
}

#are-mission {
    border-top: 3px solid #4ade80;
}

#are-mission .are-about-card-icon {
    background: linear-gradient(135deg, #4ac8de, #2284c5);
}

/* Floating Elements */
.are-about-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.are-about-hero-particles::before,
.are-about-hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    animation: float 6s ease-in-out infinite;
}

.are-about-hero-particles::before {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.are-about-hero-particles::after {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .are-about-hero-container {
        gap: 60px;
    }
    
    .are-about-hero-title {
        font-size: 3rem;
    }
    
    .are-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .are-about-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .are-about-hero-section {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .are-about-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .are-about-hero-title {
        font-size: 2.5rem;
    }
    
    .are-about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .are-container {
        padding: 0 30px;
    }
    
    .are-about-content-section {
        padding: 80px 0;
    }
    
    .are-about-card {
        padding: 35px 25px;
    }
    
    .are-about-card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .are-about-card-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .are-about-hero-container {
        padding: 0 20px;
    }
    
    .are-about-hero-title {
        font-size: 2rem;
    }
    
    .are-container {
        padding: 0 20px;
    }
    
    .are-about-card {
        padding: 30px 20px;
    }
    
    .are-about-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .are-about-hero-section {
        background: white !important;
        color: black !important;
    }
    
    .are-about-card {
        background: white !important;
        border: 1px solid #ddd !important;
        color: black !important;
    }
    
    .are-about-card-title {
        color: black !important;
    }
    
    .are-about-card-content p {
        color: #333 !important;
    }
}