/* --- Variables & Reset (Black, Light Blue, Yellow Theme) --- */
:root {
    --black: #050505;
    --black-light: #121212;
    --yellow: #ffde59;
    --yellow-gradient: linear-gradient(45deg, #ffd700, #ffea85, #cca300, #fff0a8, #997a00);
    --yellow-glow: rgba(255, 222, 89, 0.4);
    --light-blue: #38bdf8;
    --light-blue-glow: rgba(56, 189, 248, 0.4);
    --white: #f8fafc;
    --gray: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(56, 189, 248, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
}

/* --- Typography Helpers --- */
.gold-text { color: var(--yellow); }
.blue-text { color: var(--light-blue); }
.gold-gradient {
    background: var(--yellow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--yellow);
}

/* --- Hero & Glassmorphism --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
    background: radial-gradient(circle at 70% 30%, var(--black-light), var(--black));
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.hero-content {
    max-width: 800px;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.tag {
    color: var(--yellow);
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

/* --- Buttons --- */
.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    border: none;
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--yellow-glow);
}

.btn-secondary {
    border: 1px solid var(--light-blue);
    color: var(--light-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--light-blue);
    color: var(--black);
}

/* --- Floating Side Buttons --- */
.floating-actions {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--glass-border);
}

.email-btn { background: var(--black-light); color: var(--light-blue); }
.call-btn { background: var(--yellow); color: var(--black); }

.float-btn:hover {
    transform: scale(1.15) translateX(-5px);
}

/* --- Contact Page Form --- */
.contact-page {
    min-height: 100vh;
    padding: 150px 5% 50px;
    display: flex;
    justify-content: center;
}

.contact-wrapper {
    width: 100%;
    max-width: 900px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.75rem;
    color: var(--light-blue);
    text-transform: uppercase;
    font-weight: 700;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 12px;
    color: white;
    outline: none;
}

.full-width { grid-column: 1 / -1; }

input:focus, textarea:focus {
    border-color: var(--light-blue);
}

/* --- Footer & Newsletter --- */
footer {
    background: #000000;
    padding: 5rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
    background: var(--glass);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: white;
    flex: 1;
    outline: none;
}

.newsletter-form button {
    background: var(--yellow);
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    color: var(--black);
}

.payment-icons {
    font-size: 2.5rem;
    gap: 15px;
    display: flex;
    color: var(--gray);
    margin: 1rem 0;
}

.payment-icons i:hover { color: var(--light-blue); }

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--gray);
    font-size: 0.8rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .cta-group { flex-direction: column; }
    .floating-actions { right: 15px; }
}

/* Specific styling for the Contact link */
.nav-links a.nav-contact {
    color: #ffffff;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-links a.nav-contact:hover {
    color: var(--black);
    background-color: var(--light-blue);
    border-color: var(--light-blue);
    box-shadow: 0 0 15px var(--light-blue-glow);
}

/* --- Footer Links Styling --- */
.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--yellow);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom p, 
.footer-bottom a {
    color: #ffffff;
    opacity: 0.7;
}

/* --- Main Header (Logo & Search) --- */
.main-header {
    background-color: var(--black);
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header-search {
    display: flex;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 5px 15px;
    width: 350px;
    transition: all 0.3s ease;
}

.header-search:focus-within {
    border-color: var(--light-blue);
    box-shadow: 0 0 10px var(--light-blue-glow);
}

.header-search input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px;
    width: 100%;
    outline: none;
    font-size: 0.9rem;
}

.header-search button {
    background: transparent;
    border: none;
    color: var(--light-blue);
    cursor: pointer;
    font-size: 1rem;
    padding: 0 10px;
}

/* --- Desktop Styles (Center Navigation) --- */
.dedicated-nav {
    background-color: var(--black-light);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3rem;
    transition: 0.4s ease-in-out;
}

.hamburger {
    display: none;
    color: var(--yellow);
    font-size: 1.8rem;
    cursor: pointer;
}

/* --- Mobile Styles (Hamburger) --- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 130px;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        height: 100vh;
        text-align: center;
        gap: 0;
        padding-top: 2rem;
        border-top: 1px solid var(--glass-border);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        padding: 20px 0;
        width: 100%;
    }

    .nav-links li:hover {
        background: var(--glass);
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
    }
}

/* --- Spotlight Section --- */
.spotlight-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.spotlight-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.full-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, rgba(5, 5, 5, 0) 0%, rgba(0, 0, 0, 0.95) 80%);
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.spotlight-content {
    max-width: 600px;
    animation: fadeInUp 1.2s ease-out forwards;
}

.spotlight-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.spotlight-content p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .spotlight-section {
        height: 70vh;
    }
    .spotlight-overlay {
        background: linear-gradient(to bottom, rgba(5, 5, 5, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
        align-items: flex-end;
        padding-bottom: 3rem;
        text-align: center;
    }
    .spotlight-content {
        margin: 0 auto;
    }
}

/* --- 4-Column Grid Section --- */
.services-grid {
    padding: 100px 5%;
    background-color: var(--black);
}

.column-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-column {
    background: var(--black-light);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.info-column:hover {
    transform: translateY(-10px);
    border-color: var(--light-blue);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.column-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.info-column:hover .column-image img {
    transform: scale(1.1);
}

.info-column h3 {
    color: var(--yellow);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Syne', sans-serif;
}

.info-column p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .column-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .column-container {
        grid-template-columns: 1fr;
    }
}

/* --- 3-Column Premium Grid --- */
.premium-grid {
    padding: 0 5% 100px;
    background-color: var(--black);
}

.triple-column-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.large-card {
    background: linear-gradient(135deg, var(--black-light) 0%, #000000 100%);
    padding: 30px;
}

.large-card h3 {
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .triple-column-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .triple-column-container {
        grid-template-columns: 1fr;
    }
}

/* --- 2-Column Dual Section --- */
.dual-feature {
    padding: 0 5% 100px;
    background-color: var(--black);
}

.dual-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.dual-left {
    background: linear-gradient(135deg, #ffd700, #ffea85, #cca300);
    padding: 60px;
    border-radius: 16px;
    color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dual-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--black);
}

.dual-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: rgba(5, 5, 5, 0.8);
}

.dark-tag {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: block;
}

.dual-right {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}

.fading-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.fading-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.black-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0) 20%, rgba(0,0,0,0.9) 100%);
}

.btn-outline-dark {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--black);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    width: fit-content;
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--yellow);
}

@media (max-width: 992px) {
    .dual-container {
        grid-template-columns: 1fr;
    }
    .dual-left {
        padding: 40px 30px;
    }
    .dual-right {
        height: 350px;
    }
}

/* --- Sliding Testimonials --- */
.testimonial-slider {
    padding: 100px 0;
    background-color: var(--black);
    overflow: hidden;
    position: relative;
}

.slider-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    width: calc(400px * 8);
    animation: slideTrack 40s linear infinite;
    gap: 30px;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-slide {
    flex: 0 0 450px;
    padding: 40px;
    border-radius: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    background: var(--black-light);
    border: 1px solid var(--glass-border);
}

.quote-icon {
    color: var(--light-blue);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-slide p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-slide h2 {
    font-size: 1.4rem;
    color: var(--yellow);
    margin: 0;
    font-family: 'Syne', sans-serif;
    letter-spacing: 1px;
}

@keyframes slideTrack {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-480px * 3));
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 320px;
        padding: 30px;
    }
    @keyframes slideTrack {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-350px * 3)); }
    }
}

/* --- Featured Products Grid --- */
.featured-products {
    padding: 80px 5%;
    background-color: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-grid-12 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    padding: 15px;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    background: var(--black-light);
    border: 1px solid var(--glass-border);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--light-blue);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-info {
    padding: 20px 5px 5px;
    text-align: left;
}

.product-info h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.product-info .price {
    color: var(--yellow);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.btn-add-cart {
    width: 100%;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-add-cart:hover {
    background: var(--light-blue);
    color: var(--black);
    border-color: var(--light-blue);
}

@media (max-width: 1200px) {
    .products-grid-12 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .products-grid-12 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .products-grid-12 { grid-template-columns: 1fr; }
}

/* --- Top Contact Bar (Left Aligned) --- */
.top-contact-bar {
    background: var(--yellow);
    color: var(--black);
    padding: 8px 5%;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.top-bar-container {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    cursor: default;
}

.top-bar-item:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .top-bar-container {
        justify-content: center;
        gap: 15px;
    }
}

/* --- Uniform Product Grid Logic --- */
.catalog-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    background: var(--black-light);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.catalog-card .column-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.catalog-card .column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.catalog-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    min-height: 3.6rem;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.catalog-card p {
    flex-grow: 1;
    margin-bottom: 25px;
    color: var(--gray);
}

/* --- Product Catalog Page --- */
.page-header {
    text-align: center;
    padding: 60px 5%;
    background-color: var(--black-light);
    border-bottom: 1px solid var(--glass-border);
}

.product-catalog {
    padding: 60px 5% 100px;
    background-color: var(--black);
}

.btn-more-info {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    border: 1px solid var(--light-blue);
    color: var(--light-blue);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.btn-more-info:hover {
    background-color: var(--light-blue);
    color: var(--black);
    box-shadow: 0 0 20px var(--light-blue-glow);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .catalog-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .catalog-container {
        grid-template-columns: 1fr;
    }
}

/* --- Small Frame & Specs --- */
.small-frame {
    height: 250px !important;
    max-width: 350px;
    margin: 0 auto;
    border: 2px solid var(--glass-border);
}

.specs-row {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    width: 100%;
}

.specs-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.specs-inner h3 {
    color: var(--yellow);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.specs-grid-display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.spec-tile {
    background: var(--black-light);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.spec-tile .label {
    display: block;
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.spec-tile .value {
    display: block;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .specs-grid-display {
        grid-template-columns: repeat(2, 1fr);
    }
    .small-frame {
        max-width: 100%;
    }
}

/* --- Product Details Page Styles --- */
.product-details-page {
    padding: 80px 5%;
    background-color: var(--black);
}

.details-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.details-image-box {
    width: 100%;
}

.main-image-wrapper {
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--black-light);
    border: 1px solid var(--glass-border);
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details-info-box h1 {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.logistics-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: var(--black-light);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.logistics-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logistics-item i {
    font-size: 1.5rem;
    color: var(--light-blue);
}

.logistics-item strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.logistics-item span {
    color: var(--gray);
    font-size: 0.85rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    margin-bottom: 40px;
}

.specs-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--gray);
}

.specs-table td:last-child {
    text-align: right;
    color: var(--yellow);
    font-weight: 600;
}

.btn-primary-full {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: var(--yellow);
    color: var(--black) !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.btn-primary-full:hover {
    box-shadow: 0 0 25px var(--yellow-glow);
    transform: translateY(-3px);
    background-color: #fff0a8;
}

@media (max-width: 992px) {
    .details-container {
        grid-template-columns: 1fr;
    }
    .main-image-wrapper {
        height: 400px;
    }
    .details-info-box h1 {
        font-size: 2.2rem;
    }
}

/* --- Streamlined Specs Row --- */
.specs-row-minimal {
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    width: 100%;
}

.specs-horizontal-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-item {
    text-align: center;
    flex: 1;
}

.spec-item .label {
    display: block;
    color: var(--gray);
    font-size: 0.75rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.spec-item .value {
    display: block;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
}

.spec-divider {
    width: 1px;
    height: 40px;
    background-color: var(--glass-border);
    opacity: 0.5;
}

@media (max-width: 992px) {
    .specs-horizontal-list {
        flex-wrap: wrap;
        gap: 30px;
    }
    .spec-divider {
        display: none;
    }
    .spec-item {
        flex: 0 0 45%;
    }
}

@media (max-width: 480px) {
    .spec-item {
        flex: 0 0 100%;
    }
}

/* --- Contact Page Layout --- */
.contact-page {
    padding: 100px 5%;
    background-color: var(--black);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-side {
    padding: 50px;
    border-radius: 16px;
    background: var(--black-light);
    border: 1px solid var(--glass-border);
}

.contact-form-side h2 {
    color: var(--yellow);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.contact-form-side p {
    color: var(--gray);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-group input, 
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 8px;
    color: white;
    outline: none;
}

.form-group input:focus, 
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 10px var(--light-blue-glow);
}