/* About Page Specific Styles */
/* These styles won't affect other pages */

/* ===== ANIMATIONS ===== */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateY(15deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(255, 215, 0, 0.3);
    }
    50% {
        border-color: rgba(255, 215, 0, 0.8);
    }
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(139, 69, 19, 0.9)),
        url("https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 10rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: borderGlow 3s infinite;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 215, 0, 0.2),
        rgba(255, 248, 225, 0.1)
    );
    z-index: 1;
}

.about-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 3s infinite linear;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: floatIn 1.2s ease-out;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s infinite linear;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    min-width: 180px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    animation: wave 3s ease-in-out infinite;
    animation-delay: calc(var(--stat-index) * 0.5s);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #FFD700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-family: "Arial", sans-serif;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #FFF9E6;
}

/* Section Styles */
.about-section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
    animation: floatIn 0.8s ease-out;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #FFD700, #8B4513);
    border-radius: 2px;
    animation: shimmer 2s infinite linear;
    background-size: 200% auto;
}

.section-subtitle {
    text-align: center;
    color: #D4A76A;
    margin-bottom: 3rem;
    font-size: 1.3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: floatIn 0.8s ease-out 0.2s both;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect fill="rgba(139, 69, 19, 0.05)" width="100" height="100"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
    animation: floatIn 1s ease-out;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #8B4513;
}

.story-text .highlight {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text .highlight::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(45deg, #8B4513, #FFD700, #8B4513);
    border-radius: 3px;
    animation: shimmer 2s infinite linear;
    background-size: 200% auto;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatIn 1s ease-out 0.3s both;
}

.story-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
    box-shadow: 0 30px 60px rgba(139, 69, 19, 0.3);
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.1);
}

.story-year {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    padding: 1.5rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: glow 2s infinite, spin 20s linear infinite;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
    z-index: 2;
}

.story-year span {
    font-size: 1.8rem;
    font-weight: bold;
}

.story-year p {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBF0 100%);
    position: relative;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: floatIn 0.8s ease-out;
    animation-delay: calc(var(--card-index) * 0.2s);
    animation-fill-mode: both;
}

.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8B4513, #FFD700, #8B4513);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    animation: shimmer 3s infinite linear;
    background-size: 200% auto;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.mission-icon {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    display: inline-block;
    transition: all 0.4s ease;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.mission-card:hover .mission-icon {
    transform: scale(1.2) rotate(10deg);
    color: #FFA500;
}

.mission-card h3 {
    margin-bottom: 1.5rem;
    color: #8B4513;
    font-size: 1.8rem;
    position: relative;
}

.mission-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #FFD700;
    border-radius: 1px;
}

.mission-card p {
    color: #8B4513;
    line-height: 1.8;
    opacity: 0.9;
}

/* Team Section - Flip Cards */
.team-section {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    position: relative;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Flip Card Container */
.flip-card {
    perspective: 1500px;
    height: 450px;
    animation: floatIn 0.8s ease-out;
    animation-delay: calc(var(--team-index) * 0.2s);
    animation-fill-mode: both;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.flip-card-front {
    background: white;
    color: #333;
    display: flex;
    flex-direction: column;
}

.flip-card-front img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.flip-card:hover .flip-card-front img {
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBF0 100%);
}

.team-info h3 {
    margin-bottom: 0.8rem;
    color: #8B4513;
    font-size: 1.5rem;
}

.team-info .position {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    color: #FFD700;
    font-size: 1.3rem;
    margin-top: 1rem;
}

.team-social a {
    color: #FFD700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
}

.team-social a:hover {
    background: #FFD700;
    color: #8B4513;
    transform: translateY(-5px);
}

.flip-card-back {
    background: linear-gradient(135deg, #8B4513 0%, #D4A76A 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.flip-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle fill="rgba(255,255,255,0.1)" cx="10" cy="10" r="1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.2;
}

.flip-card-back h3 {
    margin-bottom: 1rem;
    color: #FFD700;
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
}

.flip-card-back p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.team-quote {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.team-quote i {
    color: #FFD700;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.team-quote p {
    font-style: italic;
    margin: 0;
    color: #FFF9E6;
}

/* Values Section - Flip Cards */
.values-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBF0 100%);
    position: relative;
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    perspective: 1200px;
    height: 280px;
    animation: floatIn 0.8s ease-out;
    animation-delay: calc(var(--value-index) * 0.2s);
    animation-fill-mode: both;
}

.value-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.1);
}

.value-card:hover .value-card-inner {
    transform: rotateY(180deg) scale(1.05);
}

.value-card-front,
.value-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
}

.value-card-front {
    background: white;
    color: #333;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.value-icon {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.value-card:hover .value-icon {
    transform: scale(1.2);
}

.value-card-front h3 {
    margin-bottom: 1rem;
    color: #8B4513;
    font-size: 1.5rem;
}

.value-card-front p {
    color: #D4A76A;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.6;
}

.value-card-back {
    background: linear-gradient(135deg, #8B4513 0%, #D4A76A 100%);
    color: white;
    transform: rotateY(180deg);
    text-align: center;
    padding: 2rem;
}

.value-card-back h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.value-card-back p {
    line-height: 1.8;
    opacity: 0.95;
    text-align: center;
}

/* Timeline Section */
.timeline-section {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #8B4513, #FFD700, #8B4513);
    transform: translateX(-50%);
    border-radius: 2px;
    animation: shimmer 3s infinite linear;
    background-size: 200% 200%;
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    width: calc(50% - 40px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: calc(50% + 40px);
    padding-left: 60px;
}

.timeline-year {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    animation: glow 2s infinite;
}

.timeline-item:nth-child(odd) .timeline-year::after {
    content: "";
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.timeline-item:nth-child(even) .timeline-year::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.timeline-content:hover::before {
    left: 100%;
}

.timeline-content:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
}

.timeline-content h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.timeline-content p {
    color: #8B4513;
    line-height: 1.7;
    opacity: 0.9;
}

/* Amenities Section */
.amenities-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBF0 100%);
    position: relative;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.amenity-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    border: 2px solid transparent;
    animation: floatIn 0.8s ease-out;
    animation-delay: calc(var(--amenity-index) * 0.2s);
    animation-fill-mode: both;
}

.amenity-item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #FFD700;
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.2);
}

.amenity-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.4s ease;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.2) rotateY(180deg);
    color: #FFA500;
}

.amenity-item h3 {
    margin-bottom: 1rem;
    color: #8B4513;
    font-size: 1.4rem;
}

.amenity-item p {
    color: #D4A76A;
    line-height: 1.7;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #8B4513 0%, #D4A76A 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle fill="rgba(255,255,255,0.1)" cx="10" cy="10" r="1"/><circle fill="rgba(255,255,255,0.05)" cx="5" cy="5" r="0.5"/><circle fill="rgba(255,255,255,0.05)" cx="15" cy="15" r="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
}

.about-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #FFD700, #FFFFFF, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s infinite linear;
}

.about-cta p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 2;
    animation: glow 2s infinite;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(10px);
}

/* Footer (overrides from main style.css) */
footer {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFFFFF, #FFD700);
    animation: shimmer 3s infinite linear;
    background-size: 200% auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: #FFD700;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #FFD700;
    border-radius: 1px;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #FFF9E6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(10px);
}

.footer-section a {
    color: #FFF9E6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-section i {
    color: #FFD700;
    font-size: 1.2rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    color: #FFF9E6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #8B4513;
    background-color: #FFD700;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background-color: #FFA500;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        gap: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1rem;
    }
    
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .about-hero p {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat {
        width: 100%;
        max-width: 300px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-text .highlight {
        font-size: 1.3rem;
    }
    
    .story-image {
        order: -1;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-year::after,
    .timeline-item:nth-child(even) .timeline-year::before {
        left: -50px !important;
        right: auto !important;
    }
    
    .team-cards,
    .values-cards,
    .amenities-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .flip-card,
    .value-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-cta h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 5rem 1rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .mission-card,
    .amenity-item {
        padding: 2rem 1.5rem;
    }
    
    .story-year {
        width: 80px;
        height: 80px;
        bottom: 20px;
        right: 20px;
    }
}

/* Intersection Observer Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}