/* Redesigned Ambition Page Styles */

/* Hero Section */
.ambition-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ambition-hero::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" fill="white" opacity="0.1"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="20" r="2"/><circle cx="20" cy="80" r="2"/><circle cx="80" cy="80" r="2"/><circle cx="50" cy="50" r="3"/></svg>') repeat;
    background-size: 100px 100px;
    animation: floatPattern 30s linear infinite;
}

@keyframes floatPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.ambition-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.ambition-hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Vision Cards */
.vision-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vision-card p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.content-section.bg-light {
    background: #f8fafc;
}

.content-section.bg-dark {
    background: #2d3748;
    color: white;
}

.content-section.bg-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Highlight Box */
.highlight-box-modern {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-left: 4px solid #667eea;
    border-radius: 1rem;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.highlight-box-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.highlight-box-modern p {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Content with Image */
.content-with-image-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.content-with-image-modern.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-with-image-modern .text-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.content-with-image-modern .text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.content-with-image-modern .image-content {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.content-with-image-modern .image-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-with-image-modern .image-content:hover img {
    transform: scale(1.05);
}

/* Quote Block */
.quote-modern {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 2rem;
    margin: 4rem 0;
    position: relative;
}

.quote-modern::before {
    content: '"';
    font-size: 8rem;
    color: rgba(102, 126, 234, 0.2);
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: serif;
}

.quote-modern p {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    position: relative;
    z-index: 2;
}

/* Timeline */
.timeline-modern {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #764ba2, #f093fb);
    transform: translateX(-50%);
}

.timeline-item-modern {
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
}

.timeline-item-modern:nth-child(odd) {
    flex-direction: row;
}

.timeline-item-modern:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content-modern {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    margin: 0 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.timeline-content-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item-modern:nth-child(odd) .timeline-content-modern::before {
    right: -30px;
    border-left-color: white;
}

.timeline-item-modern:nth-child(even) .timeline-content-modern::before {
    left: -30px;
    border-right-color: white;
}

.timeline-marker-modern {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.timeline-content-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.timeline-content-modern p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-content-modern ul {
    list-style: none;
    padding: 0;
}

.timeline-content-modern ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.timeline-content-modern ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Brand Grid */
.brand-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.brand-card-modern {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.brand-card-modern:hover::before {
    transform: scaleX(1);
}

.brand-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.brand-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.brand-card-modern:hover .brand-icon-modern {
    transform: scale(1.1) rotate(360deg);
}

.brand-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.brand-card-modern p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.brand-card-modern ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.brand-card-modern ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.brand-card-modern ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Story Grid */
.story-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.story-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.story-card-modern:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.story-icon-modern {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.story-card-modern h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.story-card-modern p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Innovation Grid */
.innovation-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.innovation-card-modern {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.innovation-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.innovation-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.innovation-card-modern:hover .innovation-icon-modern {
    transform: scale(1.1);
}

.innovation-card-modern h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.innovation-card-modern p {
    color: #4a5568;
    line-height: 1.5;
}

/* CTA Section */
.cta-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-modern::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" fill="white" opacity="0.05"><polygon points="50,10 90,90 10,90"/></svg>') repeat;
    background-size: 150px 150px;
    animation: rotatePattern 40s linear infinite;
}

@keyframes rotatePattern {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-modern p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-buttons-modern {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-modern {
    padding: 1.2rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-modern {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 20px rgba(255,255,255,0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.4);
}

.btn-outline-modern {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-modern:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ambition-hero h1 {
        font-size: 2.5rem;
    }
    
    .ambition-hero p {
        font-size: 1.2rem;
    }
    
    .vision-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-with-image-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-modern::before {
        left: 2rem;
    }
    
    .timeline-item-modern {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 4rem;
    }
    
    .timeline-content-modern {
        margin: 0;
    }
    
    .timeline-content-modern::before {
        display: none;
    }
    
    .timeline-marker-modern {
        left: 2rem;
    }
    
    .brand-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .innovation-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-modern h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .innovation-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .quote-modern::before {
        font-size: 4rem;
        top: 0.5rem;
        left: 1rem;
    }
    
    .quote-modern p {
        font-size: 1.4rem;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}
