/* MacBook Product Page - Minimalist White Design */

body {
    background: #fff;
    color: #000;
    overflow-x: hidden;
}

/* Minimalist Hero */
.macbook-hero {
    padding: 150px 0 100px;
    background: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.hero-text-section {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 6em;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.8em;
    color: #1d1d1f;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-btn {
    padding: 18px 45px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.4s;
    background: #0071e3;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
}

.hero-btn:hover {
    background: #0077ed;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 113, 227, 0.4);
}

.hero-btn.outline {
    background: transparent;
    border: 2px solid #0071e3;
    color: #0071e3;
    box-shadow: none;
}

.hero-btn.outline:hover {
    background: #0071e3;
    color: #fff;
}

.hero-product-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-container {
    position: relative;
}

.product-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float-smooth 6s ease-in-out infinite;
}

@keyframes float-smooth {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Features Section */
.macbook-features {
    padding: 150px 0;
    background: #f5f5f7;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 4.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #000;
    letter-spacing: -0.02em;
}

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

.feature-item {
    text-align: center;
    padding: 50px 30px;
    background: #fff;
    border-radius: 25px;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-number {
    font-size: 3.5em;
    font-weight: 700;
    color: #0071e3;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.3em;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    font-size: 1.1em;
    color: #1d1d1f;
    line-height: 1.5;
}

/* Specs Section */
.macbook-specs {
    padding: 150px 0;
    background: #fff;
}

.specs-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.specs-list {
    background: #f5f5f7;
    border-radius: 30px;
    padding: 60px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 1.2em;
    color: #1d1d1f;
    font-weight: 500;
}

.spec-value {
    font-size: 1.2em;
    color: #000;
    font-weight: 600;
}

/* Feature Image Box */
.feature-image-box {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-image-box img {
    transform: scale(1.1);
}

/* Image Gallery Section - Split Diagonal */
.macbook-gallery {
    padding: 150px 0;
    background: #f5f5f7;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-title {
    font-size: 4.5em;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -0.02em;
}

.gallery-split {
    width: 100%;
}

.split-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    height: 500px;
}

.split-row.reverse {
    flex-direction: row-reverse;
}

.split-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.split-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.split-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.split-item:hover img {
    transform: scale(1.15);
}

.split-item.large-left,
.split-item.large-right {
    flex: 2;
}

.split-item.medium-left,
.split-item.medium-right {
    flex: 1.5;
}

.split-item.small-left,
.split-item.small-right {
    flex: 1;
}

.split-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 40px 30px 30px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.split-item:hover .split-overlay {
    transform: translateY(0);
}

.split-overlay h3 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.split-overlay p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Detailed Features Section */
.macbook-detailed-features {
    padding: 150px 0;
    background: #f5f5f7;
}

.detailed-features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 150px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-image-large {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.feature-image-large:hover {
    transform: scale(1.02);
}

.feature-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text-large {
    flex: 1;
}

.feature-text-large h2 {
    font-size: 3.5em;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.feature-text-large h3 {
    font-size: 2em;
    font-weight: 400;
    color: #1d1d1f;
    margin-bottom: 30px;
}

.feature-text-large p {
    font-size: 1.2em;
    color: #1d1d1f;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 1.1em;
    color: #1d1d1f;
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0071e3;
    font-weight: 700;
    font-size: 1.2em;
}

/* CTA Section */
.macbook-cta {
    padding: 150px 0;
    background: #f5f5f7;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-container h2 {
    font-size: 4.5em;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.cta-container p {
    font-size: 1.5em;
    color: #1d1d1f;
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    padding: 20px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    background: #0071e3;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
    transition: all 0.4s;
}

.cta-btn:hover {
    background: #0077ed;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 113, 227, 0.4);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 4.5em;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .macbook-hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 3.5em;
    }
    
    .hero-subtitle {
        font-size: 1.4em;
    }
    
    .section-title {
        font-size: 3em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container h2 {
        font-size: 3em;
    }
    
    .split-row {
        flex-direction: column !important;
        height: auto;
        gap: 20px;
    }
    
    .split-item {
        height: 350px;
    }
    
    .split-overlay h3 {
        font-size: 1.5em;
    }
    
    .split-overlay p {
        font-size: 1em;
    }
    
    .gallery-title {
        font-size: 3em;
        margin-bottom: 50px;
    }
    
    .feature-row {
        flex-direction: column !important;
        gap: 40px;
        margin-bottom: 100px;
    }
    
    .feature-text-large h2 {
        font-size: 2.5em;
    }
    
    .feature-text-large h3 {
        font-size: 1.5em;
    }
}

