/* Hero Banner Section */
.hero-banner {
    position: relative;
    height: 320px; /* Reduced from 400px */
    background: linear-gradient(135deg, #2a4d31 0%, #1f3a24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/tempered-glass-pattern.png') center/cover;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.95;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 40px;
    background: #f8f8f8;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
    color: #2a4d31;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #1f3a24;
    text-decoration: underline;
}

/* Selection Container */
.selection-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.section-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f3a24;
    margin-bottom: 10px;
}

.section-subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* Doors Wrapper */
.doors-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Door Box - Looks like actual door */
.door-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.door-box:hover {
    transform: translateY(-10px);
}

/* Door Frame - The actual door visual */
.door-frame {
    position: relative;
    width: 300px;
    height: 450px;
    background: linear-gradient(to bottom, #555 0%, #444 50%, #333 100%);
    border-radius: 12px 12px 4px 4px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.1),
        inset 0 -2px 8px rgba(0, 0, 0, 0.5);
    border: 8px solid #2a2a2a;
    overflow: hidden;
    transition: all 0.3s ease;
}

.door-box:hover .door-frame {
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        inset 0 2px 8px rgba(255, 255, 255, 0.2),
        inset 0 -2px 8px rgba(0, 0, 0, 0.6);
}

/* iPhone Door - Purple/Blue gradient */
.iphone-door .door-frame {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Samsung Door - Pink/Red gradient */
.samsung-door .door-frame {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Door Handle */
.door-handle {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 12px;
    background: linear-gradient(to bottom, #d4d4d4, #8a8a8a);
    border-radius: 6px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.door-handle::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #c0c0c0, #808080);
    border-radius: 50%;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

/* Door Window - Contains icon */
.door-window {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 240px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset 0 2px 8px rgba(255, 255, 255, 0.2),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.door-icon {
    width: 100px;
    height: 100px;
    fill: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Door Info - Below the door */
.door-info {
    margin-top: 30px;
}

.door-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f3a24;
    margin-bottom: 8px;
}

.door-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.door-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #2a4d31;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 77, 49, 0.3);
}

.door-btn:hover {
    background: #1f3a24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 77, 49, 0.4);
}

/* Features Section */
.features-section {
    background: #f8f9fa;
    padding: 80px 40px;
    margin-top: 60px;
}

.features-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f3a24;
    margin-bottom: 50px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f3a24;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .doors-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .door-frame {
        width: 260px;
        height: 400px;
    }

    .door-window {
        width: 160px;
        height: 200px;
        top: 70px;
    }

    .door-icon {
        width: 80px;
        height: 80px;
    }

    .section-heading {
        font-size: 28px;
    }

    .section-subheading {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .door-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 250px; /* Reduced from 300px */
    }

    .breadcrumb {
        padding: 12px 20px;
    }

    .selection-container {
        padding: 0 20px;
        margin: 40px auto;
    }

    .door-frame {
        width: 240px;
        height: 360px;
    }

    .door-window {
        width: 140px;
        height: 180px;
        top: 60px;
    }

    .door-icon {
        width: 70px;
        height: 70px;
    }

    .door-title {
        font-size: 24px;
    }

    .door-subtitle {
        font-size: 14px;
    }

    .features-section {
        padding: 60px 20px;
    }
}
