/* ===== Why Choose Us Page Specific Styles ===== */

/* ===== KEY FEATURES SECTION ===== */
.key-features {
    padding: 100px 20px;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: #0a92dd;
}

.feature-card.featured {
    background: linear-gradient(135deg, #100F57 0%, #1a1980 100%);
    color: #fff;
    border: none;
}

.feature-card.featured .feature-number {
    color: rgba(255, 255, 255, 0.1);
}

.feature-card.featured h3 {
    color: #fff;
}

.feature-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0a92dd, #667eea);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(52, 152, 219, 0.1);
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #f1c40f, #e67e22);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 146, 221, 0.1);
    color: #0a92dd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.feature-tags span i {
    font-size: 0.7rem;
}

/* ===== PROMISES SECTION ===== */
.promises-section {
    padding: 100px 20px;
    background: #fff;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promise-card {
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a92dd, #667eea);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.promise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 146, 221, 0.15);
    border-color: #0a92dd;
}

.promise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(10, 146, 221, 0.1), rgba(102, 126, 234, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.promise-card:hover .promise-icon {
    background: linear-gradient(135deg, #0a92dd, #667eea);
}

.promise-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #0a92dd, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.promise-card:hover .promise-icon i {
    -webkit-text-fill-color: #fff;
    background: none;
    color: #fff;
}

.promise-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
}

.promise-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.promise-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.promise-guarantee i {
    font-size: 1rem;
}

/* ===== DESIGNS SECTION ===== */
.designs-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.designs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.designs-text .section-badge {
    margin-bottom: 15px;
}

.designs-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 20px;
}

.designs-text h2 .highlight {
    color: #0a92dd;
}

.designs-text > p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.design-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.design-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.design-features li i {
    font-size: 1.5rem;
    color: #27ae60;
    margin-top: 3px;
}

.design-features li div strong {
    display: block;
    font-size: 1.05rem;
    color: #1a365d;
    margin-bottom: 3px;
}

.design-features li div span {
    font-size: 0.9rem;
    color: #64748b;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0a92dd, #667eea);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(10, 146, 221, 0.4);
}

.btn-explore i {
    transition: transform 0.3s ease;
}

.btn-explore:hover i {
    transform: translateX(5px);
}

.designs-showcase {
    position: relative;
    height: 500px;
}

.showcase-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-card.card-1 {
    width: 250px;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 3;
    animation: floatCard1 6s ease-in-out infinite;
}

.showcase-card.card-2 {
    width: 220px;
    height: 320px;
    top: 80px;
    right: 20px;
    z-index: 2;
    animation: floatCard2 6s ease-in-out infinite 1s;
}

.showcase-card.card-3 {
    width: 200px;
    height: 280px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: floatCard3 6s ease-in-out infinite 2s;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-10px) rotate(2deg); }
}

.showcase-card:hover {
    z-index: 10;
    transform: scale(1.1) !important;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-badge.new {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.card-badge.popular {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 80px 20px 40px;
    background: #f8fafc;
}

.trust-reasons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 0;
}

.trust-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.trust-card:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0a92dd, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.trust-card h3 {
    color: #1e293b;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

.trust-logos {
    text-align: center;
}

.trust-logos > p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.logos-scroll {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: scrollLogos 30s linear infinite;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.school-logo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.school-logo:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.school-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.8;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 60px 20px 100px;
    background: #f8fafc;
}

.faq-container {
    width: 100%;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: #0a92dd;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
}

.faq-question i {
    font-size: 1rem;
    color: #0a92dd;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}
