/* Device Page Premium Styles */
:root {
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
    --neon-blue: #00f0ff;
    --neon-purple: #b84dff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

.device-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: var(--text-primary);
}

/* Breadcrumbs */
.device-breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.device-breadcrumbs a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: opacity 0.2s;
}

.device-breadcrumbs a:hover {
    opacity: 0.8;
}

/* Grid Layout */
.device-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .device-grid {
        grid-template-columns: 450px 1fr;
        align-items: start;
    }
}

/* Image Section - Floating Glass */
.device-image-section {
    position: relative;
    border-radius: 20px;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.device-image-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.device-image-section img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.device-image-section:hover img {
    transform: scale(1.02);
}

/* Info Section */
.device-info-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* Quick Facts (Features Bar) */
.features-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    /* Green */
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

/* Price List */
.price-list-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.price-list-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.price-list-header h2 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    color: #fff;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    align-items: center;
    transition: background 0.2s;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.service-item.selected {
    background: rgba(0, 240, 255, 0.08);
    border-left: 3px solid var(--neon-blue);
}

.service-info h3 {
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    font-weight: 500;
}

.service-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.btn-select {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-select:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

/* Booking Form */
.booking-section {
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.9), rgba(10, 10, 15, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .booking-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .full-width {
        grid-column: 1 / -1;
    }
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--neon-blue);
    color: #000;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #4dffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.4);
}

/* SEO Content */
.seo-content-wrapper {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.seo-content-wrapper h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.seo-content-wrapper h3 {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.seo-content-wrapper ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.seo-content-wrapper li {
    margin-bottom: 0.5rem;
}

/* Responsive Sticky Button */
.sticky-book-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--neon-blue);
    color: #000;
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    text-decoration: none;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
    }

    to {
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .sticky-book-btn.visible {
        display: block;
    }

    .device-info-section h1 {
        font-size: 2rem;
    }
}