/* Design Philosophy Page Styles */

/* Enhanced Hero Section */
.hero-simple {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-simple-slider {
    height: 100%;
}

.hero-simple-slide {
    position: relative;
    height: 100%;
}

.hero-simple-image {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 100%;
    transition: transform 10s ease;
}

.hero-simple-slide:hover .hero-simple-image {
    transform: scale(1.05);
}

.hero-simple-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-simple-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.hero-simple-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 4rem 3rem;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-simple-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-simple-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-simple-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Controls Enhancement */
.hero-simple-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.hero-simple-prev,
.hero-simple-next {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-simple-prev:hover,
.hero-simple-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-simple-dots {
    display: flex;
    gap: 10px;
}

.hero-simple-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-simple-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Page Content Enhancement */
.page-content {
    position: relative;
    background: #fff;
}

/* Enhanced Sections */
.about-intro,
.about-location,
.about-qualifications,
.about-team,
.about-advantages {
    position: relative;
    margin-bottom: 4rem;
    padding: 3rem 0;
    transition: transform 0.3s ease;
}

.about-intro:hover,
.about-location:hover,
.about-qualifications:hover,
.about-team:hover,
.about-advantages:hover {
    transform: translateY(-2px);
}

/* Section Headings */
.section-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #f4821f);
    border-radius: 2px;
}

.subsection-heading {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--medium-gray);
}

/* Introduction Text */
.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    background: #fafafa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Vision Section */
.about-location {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.vision-highlight {
    background: var(--primary-color);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vision-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #fff;
    text-align: center;
    font-style: italic;
    position: relative;
}

.vision-text::before,
.vision-text::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -20px;
}

.vision-text::before {
    left: 20px;
}

.vision-text::after {
    right: 20px;
    bottom: -20px;
    top: auto;
}

.location-details h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.location-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

/* Core Values Grid */
.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.qualification-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
}

.qualification-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.qualification-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.qualification-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.qualification-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Design Principles */
.design-principles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.principle-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.principle-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.principle-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 87, 255, 0.1);
    flex-shrink: 0;
    line-height: 1;
}

.principle-content h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.principle-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

/* Design Directions */
.advantages-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #f4821f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

/* Advantage Item Icon */
.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #f4821f);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 87, 255, 0.2);
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 87, 255, 0.3);
}

.advantage-number {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    background: rgba(0, 87, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.advantage-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--secondary-color);
    flex: 1;
}

/* Responsive Design for Advantage Items */
@media (max-width: 1200px) {
    .advantages-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantages-list {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section Enhancement */
.faq-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-section .section-title {
    color: #fff;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    background: #fafafa;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 1.5rem 2rem;
}

.faq-item.active .faq-question {
    color: var(--accent-color);
    background: #f0f4ff;
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-simple-title {
        font-size: 3.5rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .subsection-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .hero-simple {
        height: 80vh;
    }
    
    .hero-simple-title {
        font-size: 2.8rem;
    }
    
    .hero-simple-description {
        font-size: 1.1rem;
    }
    
    .hero-simple-glass {
        padding: 3rem 2rem;
    }
    
    .principle-item {
        flex-direction: column;
        text-align: center;
    }
    
    .principle-number {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-simple {
        height: 70vh;
    }
    
    .hero-simple-title {
        font-size: 2.2rem;
    }
    
    .hero-simple-glass {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .about-location {
        padding: 2rem 1rem;
    }
    
    .vision-highlight {
        padding: 2rem 1rem;
    }
    
    .vision-text {
        font-size: 1.1rem;
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantages-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-simple-title {
        font-size: 1.8rem;
    }
    
    .hero-simple-description {
        font-size: 1rem;
    }
    
    .hero-simple-controls {
        bottom: 20px;
        gap: 1rem;
    }
    
    .hero-simple-prev,
    .hero-simple-next {
        width: 50px;
        height: 50px;
    }
    
    .section-heading {
        font-size: 1.7rem;
    }
    
    .subsection-heading {
        font-size: 1.5rem;
    }
    
    .intro-text {
        font-size: 1rem;
        padding: 1.5rem 1rem;
    }
}