/* ========== СТИЛИ ДЛЯ СТРАНИЦЫ РЕМОНТА IPHONE ========== */

/* ГЕРОЙ-БЛОК */
.iphone-hero {
    background: linear-gradient(135deg, #6a1b9a 0%, #9c27b0 100%);
    padding: 50px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.iphone-hero h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.iphone-hero .geo-highlight {
    color: #ffb74d;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.iphone-hero .subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Расписание работы */
.iphone-hero .work-schedule {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.iphone-hero .schedule-item {
    text-align: center;
    min-width: 200px;
}

.iphone-hero .schedule-item i {
    font-size: 2.5rem;
    color: #ffb74d;
    margin-bottom: 10px;
}

.iphone-hero .schedule-item h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.iphone-hero .schedule-item p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.iphone-hero .schedule-item .highlight {
    color: #ffb74d;
    font-weight: bold;
}

.iphone-hero .cta-phone {
    display: inline-block;
    background-color: #ffb74d;
    color: #6a1b9a;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(255, 183, 77, 0.4);
}

.iphone-hero .cta-phone:hover {
    background-color: #ffcc80;
    transform: translateY(-3px);
    box-shadow: 0 9px 20px rgba(255, 183, 77, 0.6);
}

/* ОПИСАНИЕ И ФОТО */
.iphone-about {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.iphone-about-text {
    flex: 1;
    min-width: 300px;
}

.iphone-about-text h2 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.iphone-about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.iphone-about-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.iphone-about-text ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.iphone-about-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9c27b0;
    font-weight: bold;
    font-size: 1.2rem;
}

.iphone-about-photo {
    flex: 1;
    min-width: 300px;
}

.iphone-about-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.iphone-about-photo img:hover {
    transform: scale(1.02);
}

/* ОБОРУДОВАНИЕ ДЛЯ IPHONE */
.iphone-equipment {
    margin-bottom: 60px;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.iphone-equipment h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 40px;
}

.iphone-equipment .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.iphone-equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.iphone-equipment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.iphone-equipment-card:hover {
    transform: translateY(-5px);
}

.iphone-equipment-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #9c27b0;
}

.iphone-equipment-card .equipment-info {
    padding: 20px;
}

.iphone-equipment-card h3 {
    color: #1a472a;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.iphone-equipment-card p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.iphone-equipment-card .specs {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

/* ПРЕИМУЩЕСТВА */
.iphone-advantages {
    margin-bottom: 60px;
}

.iphone-advantages h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 40px;
}

.iphone-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.iphone-advantage-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #9c27b0;
}

.iphone-advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.iphone-advantage-card i {
    font-size: 2.8rem;
    color: #9c27b0;
    margin-bottom: 20px;
}

.iphone-advantage-card h3 {
    font-size: 1.3rem;
    color: #1a472a;
    margin-bottom: 15px;
}

.iphone-advantage-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ОТЗЫВЫ */
.iphone-reviews {
    margin-bottom: 60px;
}

.iphone-reviews h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 40px;
}

.iphone-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.iphone-review-card {
    background: white;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #9c27b0;
}

.iphone-review-card .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.iphone-review-card .reviewer-name {
    font-weight: bold;
    color: #1a472a;
    font-size: 1.1rem;
}

.iphone-review-card .review-date {
    color: #888;
    font-size: 0.85rem;
}

.iphone-review-card .stars {
    color: #ffc107;
    font-size: 1rem;
    margin: 10px 0;
}

.iphone-review-card .review-text {
    color: #444;
    line-height: 1.6;
    font-style: italic;
    font-size: 0.95rem;
}

/* ПРИМЕРЫ РАБОТ (IPHONE) */
.iphone-works {
    margin-bottom: 60px;
}

.iphone-works h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 40px;
}

.iphone-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.iphone-work-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.iphone-work-card:hover {
    transform: translateY(-5px);
}

.iphone-work-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.iphone-work-card .work-description {
    padding: 18px;
}

.iphone-work-card h3 {
    color: #1a472a;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.iphone-work-card p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.iphone-work-card .price-tag {
    color: #d32f2f;
    font-weight: bold;
    font-size: 1rem;
}

/* FAQ ДЛЯ IPHONE */
.iphone-faq {
    margin-bottom: 60px;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.iphone-faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 40px;
}

.iphone-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.iphone-faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.iphone-faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.iphone-faq-item h3 {
    font-size: 1.3rem;
    color: #1a472a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.iphone-faq-item h3 i {
    color: #9c27b0;
    margin-right: 12px;
    font-size: 1.2rem;
}

.iphone-faq-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-left: 32px;
}

/* ЗАПИСЬ НА РЕМОНТ IPHONE */
.iphone-booking {
    margin-bottom: 60px;
}

.iphone-booking h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 40px;
}

.iphone-booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.iphone-booking-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding-bottom: 22px;
    transition: transform 0.3s ease;
}

.iphone-booking-card:hover {
    transform: translateY(-8px);
}

.iphone-booking-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 18px;
}

.iphone-booking-card h3 {
    color: #1a472a;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding: 0 18px;
}

.iphone-booking-card p {
    color: #555;
    padding: 0 18px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.iphone-booking-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.iphone-booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.iphone-booking-btn.whatsapp {
    background-color: #25D366;
    color: white;
}

.iphone-booking-btn.telegram {
    background-color: #0088cc;
    color: white;
}

.iphone-booking-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .iphone-hero h1 {
        font-size: 2rem;
    }
    
    .iphone-hero .work-schedule {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .iphone-hero .cta-phone {
        font-size: 1.4rem;
        padding: 14px 25px;
    }
    
    .iphone-about {
        flex-direction: column;
        padding: 20px;
    }
    
    .iphone-equipment-grid,
    .iphone-advantages-grid,
    .iphone-reviews-grid,
    .iphone-works-grid,
    .iphone-booking-grid {
        grid-template-columns: 1fr;
    }
    
    .iphone-faq-item h3 {
        font-size: 1.2rem;
    }
    
    .iphone-faq-item p {
        margin-left: 0;
    }
    
    .iphone-booking-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .iphone-booking-btn {
        width: 80%;
        justify-content: center;
    }
}