/* Yacht Sizes Section Styles */
.yacht-sizes {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.size-categories {
    display: grid;
    gap: var(--spacing-lg);
}

.size-category {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.size-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.size-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.size-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--white);
}

.size-range {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
}

.size-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
}

.size-image {
    height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.size-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.size-category:hover .size-image img {
    transform: scale(1.05);
}

.size-details h4 {
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.size-details ul {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.size-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.size-details i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.size-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.feature-tag {
    background: var(--primary-light);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.view-size {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: var(--spacing-sm);
    min-width: 100px;
}

.hero-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-stat .stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .size-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .size-image {
        height: 300px;
    }
    
    .hero-stats {
        gap: var(--spacing-xl);
    }
    
    .hero-stat {
        min-width: 120px;
    }
    
    .hero-stat .stat-number {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .size-content {
        grid-template-columns: 1fr 1fr;
        padding: var(--spacing-lg);
    }
    
    .size-image {
        height: 350px;
    }
    
    .hero-stat .stat-number {
        font-size: 3rem;
    }
}

/* Size Category Colors */
.size-category:nth-child(1) .size-header {
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
}

.size-category:nth-child(2) .size-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.size-category:nth-child(3) .size-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.size-category:nth-child(4) .size-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Feature Tags Colors */
.size-category:nth-child(1) .feature-tag {
    background: #00b4db;
}

.size-category:nth-child(2) .feature-tag {
    background: #667eea;
}

.size-category:nth-child(3) .feature-tag {
    background: #f093fb;
}

.size-category:nth-child(4) .feature-tag {
    background: #4facfe;
}

/* Animation for size cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.size-category {
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
}

.size-category:nth-child(1) { animation-delay: 0.1s; }
.size-category:nth-child(2) { animation-delay: 0.2s; }
.size-category:nth-child(3) { animation-delay: 0.3s; }
.size-category:nth-child(4) { animation-delay: 0.4s; }