/* About Page Specific Styles */
.atvan-body {
    padding-top: 70px;
}

/* About Hero */
.about-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #0BAA66 0%, #0a9a5c 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.about-hero-content {
    z-index: 2;
}

.about-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-hero-visual {
    position: relative;
}

.vision-graphic {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sustainability-orbit {
    position: relative;
    width: 250px;
    height: 250px;
}

.earth-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 0 40px rgba(76, 175, 80, 0.6);
    animation: earthRotate 20s linear infinite, earthGlow 3s ease-in-out infinite alternate;
    z-index: 3;
}

.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(76, 175, 80, 0.4);
    border-radius: 50%;
    animation: orbitRotate 15s linear infinite;
}

.orbit-element {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: elementGlow 2s ease-in-out infinite alternate;
}

.orbit-element i {
    font-size: 1.5rem;
    color: #4CAF50;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.orbit-element span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #2E7D32;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0.8;
}

.element-1 {
    animation: orbitElement1 15s linear infinite, elementGlow 2s ease-in-out infinite alternate;
}

.element-2 {
    animation: orbitElement2 15s linear infinite, elementGlow 2s ease-in-out infinite alternate;
    animation-delay: 3.75s;
}

.element-3 {
    animation: orbitElement3 15s linear infinite, elementGlow 2s ease-in-out infinite alternate;
    animation-delay: 7.5s;
}

.element-4 {
    animation: orbitElement4 15s linear infinite, elementGlow 2s ease-in-out infinite alternate;
    animation-delay: 11.25s;
}

@keyframes earthRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes earthGlow {
    from {
        box-shadow: 0 0 40px rgba(76, 175, 80, 0.6);
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        box-shadow: 0 0 60px rgba(76, 175, 80, 0.9);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitElement1 {
    0% { transform: rotate(0deg) translateX(125px) rotate(0deg); }
    25% { transform: rotate(90deg) translateX(125px) rotate(-90deg); }
    50% { transform: rotate(180deg) translateX(125px) rotate(-180deg); }
    75% { transform: rotate(270deg) translateX(125px) rotate(-270deg); }
    100% { transform: rotate(360deg) translateX(125px) rotate(-360deg); }
}

@keyframes orbitElement2 {
    0% { transform: rotate(90deg) translateX(125px) rotate(-90deg); }
    25% { transform: rotate(180deg) translateX(125px) rotate(-180deg); }
    50% { transform: rotate(270deg) translateX(125px) rotate(-270deg); }
    75% { transform: rotate(360deg) translateX(125px) rotate(-360deg); }
    100% { transform: rotate(90deg) translateX(125px) rotate(-90deg); }
}

@keyframes orbitElement3 {
    0% { transform: rotate(180deg) translateX(125px) rotate(-180deg); }
    25% { transform: rotate(270deg) translateX(125px) rotate(-270deg); }
    50% { transform: rotate(360deg) translateX(125px) rotate(-360deg); }
    75% { transform: rotate(90deg) translateX(125px) rotate(-90deg); }
    100% { transform: rotate(180deg) translateX(125px) rotate(-180deg); }
}

@keyframes orbitElement4 {
    0% { transform: rotate(270deg) translateX(125px) rotate(-270deg); }
    25% { transform: rotate(360deg) translateX(125px) rotate(-360deg); }
    50% { transform: rotate(90deg) translateX(125px) rotate(-90deg); }
    75% { transform: rotate(180deg) translateX(125px) rotate(-180deg); }
    100% { transform: rotate(270deg) translateX(125px) rotate(-270deg); }
}

@keyframes elementGlow {
    from {
        transform: translateX(-50%) scale(1);
    }
    to {
        transform: translateX(-50%) scale(1.1);
    }
}

.vision-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vision-particles .particle {
    position: absolute;
    font-size: 1.8rem;
    animation: visionParticleFloat 8s ease-in-out infinite;
    opacity: 0.8;
}

.vision-particles .particle-1 {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.vision-particles .particle-2 {
    top: 35%;
    right: 20%;
    animation-delay: 2s;
}

.vision-particles .particle-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

.vision-particles .particle-4 {
    bottom: 35%;
    right: 25%;
    animation-delay: 6s;
}

.vision-particles .particle-5 {
    top: 50%;
    left: 10%;
    animation-delay: 1s;
}

.vision-particles .particle-6 {
    top: 45%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes visionParticleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-25px) rotate(90deg) scale(1.2);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-15px) rotate(180deg) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-35px) rotate(270deg) scale(1.1);
        opacity: 1;
    }
}

.energy-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.energy-waves .wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 50%, transparent 70%);
    animation: energyWave 6s ease-in-out infinite;
}

.wave-1 {
    width: 350px;
    height: 350px;
    animation-delay: 0s;
}

.wave-2 {
    width: 450px;
    height: 450px;
    animation-delay: 2s;
}

.wave-3 {
    width: 550px;
    height: 550px;
    animation-delay: 4s;
}

@keyframes energyWave {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
}

.about-hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.about-hero-curve svg {
    width: calc(100% + 1.3px);
    height: 120px;
    display: block;
}

/* About Content Section */
.about-content-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story h2 {
    margin-bottom: 20px;
}

.about-story p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--color-text);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--color-light-grey), #e8e9ea);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-emerald);
    box-shadow: var(--shadow-md);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.image-placeholder span {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    max-width: 80%;
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-light-grey);
}

.vision-curve {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.vision-curve.top {
    top: 0;
}

.vision-curve.bottom {
    bottom: 0;
}

.vision-curve svg {
    width: calc(100% + 1.3px);
    height: 120px;
    display: block;
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 30px auto;
    max-width: 800px;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.commitment-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-emerald), var(--color-emerald-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-white);
    font-size: 2rem;
}

.commitment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-black);
}

.commitment-card p {
    color: var(--color-text-light);
    line-height: 1.5;
}

/* What is EV Section */
.whatis-ev-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.whatis-ev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.whatis-ev-image {
    display: flex;
    justify-content: center;
}

.ev-svg-container {
    width: 100%;
    height: 300px;
}

.ev-svg-container svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

.whatis-ev-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.title-underline.left {
    margin: 0 0 30px 0;
}

.whatis-ev-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--color-text);
}

.ev-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: var(--color-light-grey);
    border-radius: var(--radius-md);
    font-weight: 500;
}

.benefit i {
    color: var(--color-emerald);
}

.whatis-ev-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* EV Models Section */
.ev-models-section {
    padding: 100px 0;
    background-color: var(--color-light-grey);
}

.ev-models-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.ev-models-section .title-underline.center {
    margin: 0 auto 30px;
}

.ev-models-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ev-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ev-model-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.ev-model-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.model-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ev-model-card:hover .model-image img {
    transform: scale(1.05);
}

.model-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

.model-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.model-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Statistics Section */
.stats-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-emerald);
    color: white;
}

.stats-curve {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.stats-curve.top {
    top: 0;
}

.stats-curve.bottom {
    bottom: 0;
}

.stats-curve svg {
    width: calc(100% + 1.3px);
    height: 120px;
    display: block;
}

.section-title.white {
    color: white;
    text-align: center;
}

.title-underline.center {
    margin: 0 auto 20px;
    background: linear-gradient(90deg, white, var(--color-gold));
}

.stats-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-gold);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.stat-details {
    text-align: left;
    margin-top: 20px;
}

.detail {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.detail-value {
    font-weight: 600;
    color: var(--color-gold);
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-light-grey) 0%, #e8e9ea 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--color-black);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatis-ev-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ev-benefits {
        grid-template-columns: 1fr;
    }

    .ev-models-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}