/* Premium Services - Mercedes/Porsche Inspired Design */

/* Hero Section */
.premium-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.premium-hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.premium-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.premium-hero-line {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 auto 1.5rem;
}

.premium-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* Section Styles */
.premium-section {
    padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 3rem);
    background: #000000;
}

.premium-section-alt {
    background: #0a0a0a;
}

.premium-section-soft {
    background: #050505;
}

.premium-container {
    max-width: 1400px;
    margin: 0 auto;
}

.premium-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.premium-section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    letter-spacing: 0.03em;
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Premium Grid */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.premium-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

@media (max-width: 768px) {
    .premium-grid,
    .premium-grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Premium Cards — image and card as one unified component */
.premium-card {
    background: #0f0f0f;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.premium-card-image {
    display: block;
    width: 100%;
    height: 280px;
    margin: 0;
    padding: 0;
    border: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.5s ease;
    flex-shrink: 0;
}

.premium-card:hover .premium-card-image {
    transform: scale(1.05);
}

.premium-card-content {
    margin: 0;
    padding: 1.5rem 2rem 2rem;
    background: linear-gradient(to top, #0a0a0a 0%, #0f0f0f 100%);
    box-sizing: border-box;
}

.premium-card-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.premium-card-desc {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    letter-spacing: 0.02em;
    font-weight: 300;
}

/* Soft Servicing Cards */
.premium-soft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.premium-soft-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-soft-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.premium-soft-title {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.premium-soft-desc {
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 300;
}

/* CTA Section */
.premium-cta {
    padding: clamp(5rem, 12vw, 8rem) clamp(1.5rem, 5vw, 3rem);
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    text-align: center;
}

.premium-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.premium-cta-text {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.premium-cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.premium-cta-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Modal Enhancements */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.service-modal.active {
    display: flex;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.service-modal-content {
    position: relative;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.service-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.service-modal-body {
    padding: 3rem;
}

.service-modal-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-modal-description {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.whatsapp-booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.whatsapp-booking-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Scroll Reveal Animation */
.premium-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .premium-hero {
        min-height: 50vh;
    }
    
    .premium-hero-title {
        letter-spacing: 0.1em;
    }
    
    .premium-section {
        padding: 3rem 1.5rem;
    }
    
    .premium-card-image {
        height: 220px;
    }
    
    .premium-card-content {
        padding: 1.5rem;
    }
    
    .premium-soft-grid {
        grid-template-columns: 1fr;
    }
    
    .service-modal-body {
        padding: 2rem 1.5rem;
    }
}

/* Footer Override */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}
