/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(65, 105, 225, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.nav-logo h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    font-family: 'Times New Roman', serif;
}

.accent {
    color: #4169E1;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #4169E1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #4169E1;
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(65, 105, 225, 0.1);
    border: 1px solid rgba(65, 105, 225, 0.3);
    color: #4169E1;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #ffffff;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    color: #b3b3b3;
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.btn::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 ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(65, 105, 225, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(65, 105, 225, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #4169E1;
    color: #4169E1;
}

.btn-full {
    width: 100%;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(20px);
    animation: float 6s ease-in-out infinite;
    max-width: 320px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icon {
    font-size: 32px;
}

.card-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    color: #b3b3b3;
    font-size: 14px;
}

.metric-value {
    color: #4ade80;
    font-weight: 600;
    font-size: 16px;
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background: rgba(65, 105, 225, 0.1);
    border: 1px solid rgba(65, 105, 225, 0.3);
    color: #4169E1;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.section-header p {
    font-size: 18px;
    color: #b3b3b3;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Intro Section */
.intro {
    padding: 120px 0;
    background: #0f0f0f;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.intro-description {
    font-size: 18px;
    color: #b3b3b3;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(65, 105, 225, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.service-card p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* Why AoA Section */
.why-aoa {
    padding: 120px 0;
    background: #0f0f0f;
}

.why-aoa-content {
    text-align: center;
    margin-bottom: 60px;
}

.why-aoa-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
    text-align: left;
}

.achievement-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.achievement-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(65, 105, 225, 0.2);
}

.achievement-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.achievement-text p {
    color: #b3b3b3;
    font-size: 14px;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 120px 0;
    background: #0a0a0a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.review-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(65, 105, 225, 0.3);
}

.review-stars {
    font-size: 18px;
    margin-bottom: 16px;
}

.review-card p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.review-author span {
    color: #888888;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Times New Roman', serif;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-content .btn-primary {
    background: #000000;
    color: #ffffff;
}

.cta-content .btn-primary:hover {
    background: #333333;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #0f0f0f;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.contact-info > p {
    font-size: 18px;
    color: #b3b3b3;
    margin-bottom: 48px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.contact-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-icon {
    font-size: 24px;
    width: 56px;
    height: 56px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(65, 105, 225, 0.2);
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-text p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.5;
}

/* Calendly Section */
.calendly-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px;
    backdrop-filter: blur(20px);
    text-align: center;
}

.calendly-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Times New Roman', serif;
}

.calendly-section p {
    color: #b3b3b3;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.footer-brand p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #4169E1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4169E1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    color: #666666;
    font-size: 14px;
}

.footer-social-bottom {
    display: flex;
    gap: 16px;
}

/* Subtle backlink */
.backlink {
    position: absolute;
    bottom: 5px;
    right: 20px;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.backlink:hover {
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.2);
}

/* About Page Specific Styles */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(65, 105, 225, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 144, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #ffffff;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.hero-description {
    font-size: 18px;
    color: #b3b3b3;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: #0f0f0f;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.story-text {
    font-size: 18px;
    color: #b3b3b3;
    line-height: 1.7;
}

.story-text p {
    margin-bottom: 32px;
}

.quote-section {
    background: rgba(65, 105, 225, 0.05);
    border: 1px solid rgba(65, 105, 225, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin: 48px 0;
    position: relative;
}

.quote-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.quote-section blockquote {
    font-size: 20px;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.quote-section cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    color: #4169E1;
    font-style: normal;
    font-weight: 600;
}

.legacy-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: all 0.4s ease;
}

.legacy-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(65, 105, 225, 0.3);
}

.legacy-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.legacy-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.legacy-card > p {
    color: #b3b3b3;
    margin-bottom: 32px;
}

.legacy-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.legacy-stats .stat {
    text-align: center;
}

.legacy-stats .stat-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #4169E1;
    margin-bottom: 4px;
}

.legacy-stats .stat-label {
    font-size: 14px;
    color: #b3b3b3;
}

/* Mission Section */
.mission-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.mission-text {
    font-size: 20px;
    color: #b3b3b3;
    line-height: 1.7;
    font-style: italic;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: #0f0f0f;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(65, 105, 225, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.value-card p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.team-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.team-info h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.team-description {
    font-size: 18px;
    color: #b3b3b3;
    line-height: 1.7;
    margin-bottom: 48px;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(65, 105, 225, 0.05);
    border: 1px solid rgba(65, 105, 225, 0.2);
    border-radius: 16px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #4169E1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #b3b3b3;
    font-weight: 500;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: all 0.4s ease;
}

.profile-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(65, 105, 225, 0.3);
}

.profile-image {
    margin-bottom: 24px;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4169E1;
}

.profile-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.profile-info > p {
    color: #b3b3b3;
    margin-bottom: 24px;
}

.profile-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(65, 105, 225, 0.1);
    border: 1px solid rgba(65, 105, 225, 0.3);
    color: #4169E1;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Page Specific Styles */
.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(65, 105, 225, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 144, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.services-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #ffffff;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

/* Detailed Services Section */
.detailed-services {
    padding: 120px 0;
    background: #0f0f0f;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.service-detailed-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-detailed-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-detailed-card:hover::before {
    transform: scaleX(1);
}

.service-detailed-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(65, 105, 225, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-detailed-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.service-detailed-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.service-detailed-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    min-width: 200px;
}

.service-stat {
    background: rgba(65, 105, 225, 0.1);
    border: 1px solid rgba(65, 105, 225, 0.3);
    color: #4169E1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.service-detailed-content p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    color: #4ade80;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Services CTA Banner */
.services-cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
}

.cta-banner-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-banner-icon {
    font-size: 48px;
}

.cta-banner-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Times New Roman', serif;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    min-width: 250px;
}

.cta-banner-content .btn-primary {
    background: #000000;
    color: #ffffff;
}

.cta-banner-content .btn-primary:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* Contact Page Specific Styles */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(65, 105, 225, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 144, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #ffffff;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.contact-philosophy {
    font-size: 18px;
    color: #b3b3b3;
    margin-top: 24px;
    line-height: 1.7;
    font-style: italic;
}

/* Contact Methods Section */
.contact-methods {
    padding: 120px 0;
    background: #0a0a0a;
}

.contact-methods-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-methods-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.contact-method-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.contact-method-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(65, 105, 225, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-method-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.contact-method-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-method-card p {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-method-link {
    color: #4169E1;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-method-link:hover {
    color: #1E90FF;
}

/* Book Consultation Section */
.book-consultation {
    padding: 120px 0;
    background: #0f0f0f;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.consultation-info h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    font-family: 'Times New Roman', serif;
}

.consultation-info > p {
    font-size: 18px;
    color: #b3b3b3;
    line-height: 1.7;
    margin-bottom: 40px;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.benefit-item span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.booking-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: all 0.4s ease;
}

.booking-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(65, 105, 225, 0.3);
}

.booking-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Times New Roman', serif;
}

.booking-header p {
    color: #b3b3b3;
    margin-bottom: 32px;
}

.booking-note {
    margin-top: 24px;
}

.booking-note p {
    color: #888888;
    font-size: 14px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .nav-container {
        padding: 0 24px;
    }
    
    .hero-container {
        padding: 0 24px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 40px 0;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 16px 0;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .legacy-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .profile-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .service-detailed-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .service-detailed-header h3 {
        min-width: auto;
    }
    
    .service-stat {
        align-self: flex-start;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-content {
        gap: 16px;
    }
    
    .btn-large {
        min-width: 200px;
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero-container {
        padding: 0 16px;
    }

    .services {
        padding: 80px 0;
    }

    .intro {
        padding: 80px 0;
    }

    .why-aoa {
        padding: 80px 0;
    }

    .reviews {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 200px;
    }

    .service-card {
        padding: 32px 24px;
    }
    
    .about-hero {
        min-height: 50vh;
    }
    
    .story-section,
    .mission-section,
    .values-section,
    .team-section {
        padding: 80px 0;
    }
    
    .quote-section {
        padding: 24px;
    }
    
    .legacy-card,
    .profile-card {
        padding: 32px 24px;
    }
    
    .services-hero,
    .contact-hero,
    .detailed-services,
    .contact-methods,
    .book-consultation {
        padding: 80px 0;
    }
    
    .service-detailed-card {
        padding: 32px 24px;
    }
    
    .contact-method-card,
    .booking-card {
        padding: 32px 24px;
    }
    
    .services-cta-banner {
        padding: 60px 0;
    }
}

/* Animation delays for staggered effects */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }

.achievement-item:nth-child(1) { transition-delay: 0.1s; }
.achievement-item:nth-child(2) { transition-delay: 0.2s; }
.achievement-item:nth-child(3) { transition-delay: 0.3s; }
.achievement-item:nth-child(4) { transition-delay: 0.4s; }
.achievement-item:nth-child(5) { transition-delay: 0.5s; }
.achievement-item:nth-child(6) { transition-delay: 0.6s; }

.review-card:nth-child(1) { transition-delay: 0.1s; }
.review-card:nth-child(2) { transition-delay: 0.2s; }
.review-card:nth-child(3) { transition-delay: 0.3s; }

.contact-item:nth-child(1) { transition-delay: 0.1s; }
.contact-item:nth-child(2) { transition-delay: 0.2s; }
.contact-item:nth-child(3) { transition-delay: 0.3s; }

.value-card:nth-child(1) { transition-delay: 0.1s; }
.value-card:nth-child(2) { transition-delay: 0.2s; }
.value-card:nth-child(3) { transition-delay: 0.3s; }
.value-card:nth-child(4) { transition-delay: 0.4s; }

.service-detailed-card:nth-child(1) { transition-delay: 0.1s; }
.service-detailed-card:nth-child(2) { transition-delay: 0.2s; }
.service-detailed-card:nth-child(3) { transition-delay: 0.3s; }
.service-detailed-card:nth-child(4) { transition-delay: 0.4s; }
.service-detailed-card:nth-child(5) { transition-delay: 0.5s; }
.service-detailed-card:nth-child(6) { transition-delay: 0.6s; }

.contact-method-card:nth-child(1) { transition-delay: 0.1s; }
.contact-method-card:nth-child(2) { transition-delay: 0.2s; }
.contact-method-card:nth-child(3) { transition-delay: 0.3s; }