/* About Page Specific Styles */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.98) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(241, 242, 246, 0.98) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80') center/cover;
    position: relative;
}

.about-story::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"><circle cx="20" cy="20" r="2" fill="%2340916c" opacity="0.05"/><circle cx="80" cy="40" r="1.5" fill="%23d4af37" opacity="0.05"/><circle cx="60" cy="80" r="2.5" fill="%232d6a4f" opacity="0.05"/></svg>') repeat;
    z-index: 1;
}

.about-story .container {
    position: relative;
    z-index: 2;
}

.photographer-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #2d6a4f, #40916c, #52b788);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 50px rgba(45, 106, 79, 0.4);
    animation: photographerFloat 6s ease-in-out infinite;
}

@keyframes photographerFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
        box-shadow: 0 20px 50px rgba(45, 106, 79, 0.4);
    }
    50% {
        transform: translateY(-20px) rotateY(180deg);
        box-shadow: 0 30px 60px rgba(45, 106, 79, 0.6);
    }
}

.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/img2.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.mission-vision .container {
    position: relative;
    z-index: 2;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.mv-card:hover::before {
    transform: scale(1);
}

.mv-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

.mv-card h3 {
    color: #d4af37;
    position: relative;
    z-index: 2;
}

.mv-card p {
    color: #bdc3c7;
    position: relative;
    z-index: 2;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f1c40f, #2d6a4f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.mv-card:hover .mv-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.expansion-plans {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.98) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(241, 242, 246, 0.98) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80') center/cover;
    position: relative;
}

.expansion-plans::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"><circle cx="20" cy="20" r="2" fill="%2340916c" opacity="0.05"/><circle cx="80" cy="40" r="1.5" fill="%23d4af37" opacity="0.05"/><circle cx="60" cy="80" r="2.5" fill="%232d6a4f" opacity="0.05"/></svg>') repeat;
    z-index: 1;
}

.expansion-plans .container {
    position: relative;
    z-index: 2;
}

.expansion-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-list {
    list-style: none;
    margin-top: 2rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #0f0f23;
}

.services-list li:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.services-list i {
    color: #d4af37;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.expansion-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #27ae60, #229954, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 50px rgba(39, 174, 96, 0.4);
    animation: expansionFloat 8s ease-in-out infinite;
}

@keyframes expansionFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
    }
    50% {
        transform: translateY(0px) rotate(180deg);
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
    }
}

.keys-success {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.keys-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/img2.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.keys-success .container {
    position: relative;
    z-index: 2;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.success-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.success-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

.success-item h4 {
    color: #d4af37;
}

.success-item p {
    color: #bdc3c7;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37, #f1c40f, #2d6a4f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.success-item:hover .success-icon {
    transform: rotateZ(360deg) scale(1.1);
}

.studio-location {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.98) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(241, 242, 246, 0.98) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80') center/cover;
    position: relative;
}

.studio-location::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"><circle cx="20" cy="20" r="2" fill="%2340916c" opacity="0.05"/><circle cx="80" cy="40" r="1.5" fill="%23d4af37" opacity="0.05"/><circle cx="60" cy="80" r="2.5" fill="%232d6a4f" opacity="0.05"/></svg>') repeat;
    z-index: 1;
}

.studio-location .container {
    position: relative;
    z-index: 2;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-details {
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.location-item i {
    font-size: 1.5rem;
    color: #d4af37;
    margin-top: 0.2rem;
}

.location-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #0f0f23;
    font-size: 1.1rem;
}

.location-item p {
    color: #666;
    margin: 0;
}

/* Text color overrides for about page */
.about-story .story-text h2,
.expansion-plans .expansion-text h2,
.studio-location .location-text h2 {
    background: linear-gradient(135deg, #2d6a4f, #40916c, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story .story-text p,
.expansion-plans .expansion-text p,
.studio-location .location-text p {
    color: #666;
}

.about-story .story-text .lead,
.expansion-plans .expansion-text .lead,
.studio-location .location-text .lead {
    color: #555;
}

.about-story h1,
.page-hero h1 {
    color: wheat;
}