/* Base styles should be imported from the main styles.css */
/* These are additional styles specific to the About Us page */

:root {
    --white: #ffffff;
    --dark-primary: #2c3e50;
    --gold-primary: #d4af37;
    --gold-secondary: #f2d680;
    --gray-light: #f4f4f4;
    --gray-dark: #333333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s ease;
}

/* Page Banner */
.page-banner {
    height: 60vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    margin-top: 80px;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.page-title {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-title p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.8s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: fadeIn 1s infinite alternate;
    animation-delay: calc(var(--i) * 0.2s);
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.story-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: translateX(-100px);
    opacity: 0;
}

.story-image img {
    transition: transform 0.5s ease;
    width: 100%;
    display: block;
}

.story-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.story-image:hover .image-overlay {
    opacity: 1;
}

.story-text {
    flex: 1;
    transform: translateX(100px);
    opacity: 0;
}

.story-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-primary);
}

.story-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.founder-quote {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--gray-light);
    border-left: 4px solid var(--gold-primary);
    position: relative;
}

.founder-quote i {
    color: var(--gold-primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.founder-quote blockquote {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 10px;
}

.quote-author {
    text-align: right;
    font-weight: 600;
    color: var(--dark-primary);
}

/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1920/1080');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.vm-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.vm-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    transform: translateY(50px);
    opacity: 0;
}

.vm-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon i {
    font-size: 30px;
    color: var(--white);
}

.vm-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-primary);
}

.vm-card p {
    line-height: 1.7;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--gold-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateX(-50px);
}

.timeline-item.right {
    left: 50%;
    transform: translateX(50px);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 4px solid var(--gold-primary);
    top: 22px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left::after {
    right: -12px;
}

.timeline-item.right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 22px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item.left .timeline-content::before {
    right: -15px;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent var(--white);
}

.timeline-item.right .timeline-content::before {
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}

.year {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--gold-primary);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-primary);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: var(--gray-light);
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.8);
}

.team-member:hover {
    transform: translateY(-10px) scale(1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-member:hover .social-overlay {
    transform: translateY(0);
}

.social-overlay a {
    width: 35px;
    height: 35px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-primary);
    transition: var(--transition);
}

.social-overlay a:hover {
    background-color: var(--gold-primary);
    color: var(--white);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark-primary);
}

.position {
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.bio {
    font-size: 14px;
    line-height: 1.6;
}

/* Facilities Section */
.facilities-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.facilities-showcase {
    margin-top: 50px;
}

.facility-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}

.tab {
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.tab.active {
    color: var(--gold-primary);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--gold-primary);
}

.facility-item {
    display: none;
}

.facility-item.active {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.facility-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    opacity: 0;
}

.facility-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.facility-item:hover .facility-image img {
    transform: scale(1.05);
}

.facility-details {
    flex: 1;
    min-width: 300px;
    transform: translateX(50px);
    opacity: 0;
}

.facility-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-primary);
}

.facility-details p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.facility-features {
    list-style: none;
    padding: 0;
}

.facility-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.facility-features i {
    color: var(--gold-primary);
    margin-right: 10px;
}

/* Sustainability Section */
.sustainability-section {
    padding: 100px 0;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.eco-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/api/placeholder/1920/1080');
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.eco-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
}

.eco-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px) scale(1) !important;
}

.eco-icon {
    width: 70px;
    height: 70px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.eco-icon i {
    font-size: 30px;
    color: var(--white);
}

.eco-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--white);
}

.sustainability-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
}

.sustainability-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.sustainability-cta p {
    margin-bottom: 20px;
}

.btn-light {
    background-color: var(--white);
    color: var(--dark-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    text-decoration: none;
}

.btn-light:hover {
    background-color: var(--gold-primary);
    color: var(--white);
}

/* Global Presence Section */
.global-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.global-map {
    position: relative;
    margin: 50px 0;
    opacity: 0;
}

.global-map img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
}

.pin {
    width: 20px;
    height: 20px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--gold-primary);
    opacity: 0.6;
    animation: pulse 2s infinite;
}

.marker-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    background-color: var(--white);
    padding: 10px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.marker-info::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: var(--white) transparent transparent transparent;
}

.map-marker:hover .marker-info {
    visibility: visible;
    opacity: 1;
    bottom: 40px;
}

.marker-info h4 {
    color: var(--dark-primary);
    margin-bottom: 5px;
}

.marker-info p {
    font-size: 12px;
    margin: 0;
}

.global-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-counter {
    text-align: center;
    margin: 10px;
}

.stat-counter span {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-primary);
}

.stat-counter p {
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: 5px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--dark-primary);
    color: var(--white);
    overflow: hidden;
}

.cta-content {
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #c09c2c;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-primary);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark-primary);
    position: relative;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.underline {
    width: 80px;
    height: 3px;
    background-color: var(--gold-primary);
    margin: 0 auto 20px;
}

.section-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes reveal {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.reveal-text {
    position: relative;
    display: inline-block;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gold-primary);
    animation: reveal 1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
    animation-delay: 0.5s;
    transform: translateX(-100%);
}

/* Mobile Responsiveness */
@media screen and (max-width: 1024px) {
    .vm-cards,
    .story-content {
        flex-direction: column;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sustainability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .page-banner {
        height: 40vh;
        margin-top: 60px;
    }
    
    .page-title h1 {
        font-size: 36px;
    }
    
    .story-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .story-image,
    .story-text {
        transform: none;
        opacity: 1;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 20px;
    }
    
    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
        left: -15px;
        border-width: 10px 15px 10px 0;
        border-color: transparent var(--white) transparent transparent;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        transform: none;
        opacity: 1;
    }
    
    .facility-item.active {
        flex-direction: column;
    }
    
    .facility-details {
        transform: none;
        opacity: 1;
    }
    
    .facility-tabs {
        flex-wrap: wrap;
    }
    
    .tab {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .global-stats {
        flex-direction: column;
    }
    
    .stat-counter {
        margin: 15px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .vm-card {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .page-title h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .story-text h3,
    .facility-details h3 {
        font-size: 24px;
    }
    
    .founder-quote blockquote {
        font-size: 16px;
    }
    
    .vm-card,
    .eco-card {
        padding: 20px 15px;
    }
    
    .card-icon,
    .eco-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i,
    .eco-icon i {
        font-size: 24px;
    }
    
    .tab {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}