/* Hero Section */
.apple-hero {
    position: relative;
    height: 100vh;
    /* Fallback */
    height: 100svh;
    /* Mobile modern */
    overflow: hidden;
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-top: -76px;
    /* Consistency */
    padding-top: 76px;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 1s ease;
    transform: scale(1.1);
}

.hero-slideshow .slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.premium-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease forwards;
}

.premium-subtitle {
    font-size: 1.8rem;
    color: #fff;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s forwards;
    margin-bottom: 2rem;
}

/* Enhanced Contact Button */
.contact-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #3498db, #2980b9, #3498db);
    background-size: 200% auto;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    animation: buttonPulse 2s infinite;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background-position: right center;
    box-shadow:
        0 8px 25px rgba(52, 152, 219, 0.5),
        0 0 20px rgba(52, 152, 219, 0.3);
}

.contact-btn:hover::before {
    animation: shine 1s ease;
}

/* Button Animations */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }

    50% {
        box-shadow:
            0 5px 25px rgba(52, 152, 219, 0.5),
            0 0 30px rgba(52, 152, 219, 0.3);
    }

    100% {
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
}

@keyframes shine {
    0% {
        opacity: 0;
        left: -50%;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        left: 100%;
    }
}

/* Apple Details Section */
.apple-details {
    padding: 6rem 2rem;
    background: #ffffff;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.details-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.details-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

.details-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.details-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.details-content li {
    color: #475569;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.details-content li::before {
    content: '•';
    color: #3498db;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
}

.details-content strong {
    color: #3498db;
    font-weight: 600;
}

/* Process Steps Section */
.import-process {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.import-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1e293b;
}

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

.step-card {
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-card p {
    color: #475569;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-title {
        font-size: 3rem;
    }

    .premium-subtitle {
        font-size: 1.3rem;
    }

    .contact-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    /* Improved Mobile Layout */
    .apple-details {
        padding: 3rem 1rem;
    }

    .details-content {
        padding: 1.5rem;
    }

    .details-content h2 {
        font-size: 1.8rem;
        word-wrap: break-word;
        /* Prevent overflow */
        line-height: 1.3;
    }

    .premium-title {
        font-size: 2.8rem;
        /* Prevent overflow on very small screens */
    }
}