/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    /* Color Palette */
    --color-black: #0f0f0f;
    --color-darker: #0a0a0a;
    --color-charcoal: #1a1a1a;
    --color-dark-gray: #222;
    --color-medium-dark: #181818;
    --color-very-dark: #111;
    --color-gray: #333;
    --color-medium-gray: #666;
    --color-light-gray: #999;
    --color-off-white: #e0e0e0;
    --color-white: #fff;
    --color-red: #dc2626;
    --color-red-dark: #b91c1c;

    /* Opacity Variations */
    --overlay-dark: rgba(0, 0, 0, 0.95);
    --overlay-medium: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(0, 0, 0, 0.5);
    --white-02: rgba(255, 255, 255, 0.02);
    --white-03: rgba(255, 255, 255, 0.03);
    --white-05: rgba(255, 255, 255, 0.05);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-80: rgba(255, 255, 255, 0.8);
    --red-05: rgba(220, 38, 38, 0.05);
    --red-10: rgba(220, 38, 38, 0.1);
    --red-20: rgba(220, 38, 38, 0.2);
    --red-30: rgba(220, 38, 38, 0.3);

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 80px;

    /* Typography */
    --font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.4s ease;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.7;
    font-weight: var(--font-weight-light);
    overflow-x: hidden;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-darker);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-red);
    border-radius: 10px;
    transition: background var(--transition-medium);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-red-dark);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-red) var(--color-darker);
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--color-red);
    outline-offset: 4px;
}

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

/* Accessibility - Skip to content */
.skip-to-content {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: var(--color-red);
    color: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-lg);
    text-decoration: none;
    z-index: 9999;
    font-weight: var(--font-weight-medium);
    opacity: 0;
    visibility: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-to-content:focus {
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
    clip: auto;
}

/* Header */
header {
    background-color: var(--overlay-dark);
    padding: 0px 0;
    position: fixed;
    padding-top:10px;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background-color: rgba(15, 15, 15, 0.75);
    border-bottom: .5px solid var(--white-40);
    border-radius: 0 0 24px 24px;
    transition: padding var(--transition-medium), border-radius var(--transition-medium);
}

header.scrolled {
    padding: 0px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--color-white);
    font-size: 32px;
    font-weight: var(--font-weight-extrabold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-2xl);
}

nav a {
    color: var(--white-70);
    text-decoration: none;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition-medium);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-red);
    transition: width var(--transition-medium);
}

nav a:hover::after,
nav a:focus::after {
    width: 100%;
}

nav a:hover,
nav a:focus {
    color: var(--color-white);
    outline: none;
}

nav a.active {
    color: var(--color-red);
}

nav a.active::after {
    width: 100%;
}

/* Hero Slider - Swiper */
.hero-slider {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    background-color: var(--color-black);
    margin-top: 8.5rem;
    width: 100%;
}

.hero-slider .swiper-wrapper {
    height: auto;
    transition-property: height;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.hero-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: auto;
}

.slide-link {
    display: block;
    position: relative;
    width: 100%;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.slide-link:hover {
    text-decoration: none;
}

.slide-link:focus {
    outline: 3px solid var(--color-red);
    outline-offset: -3px;
}

.slide-bg {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 900px;
    width: 100%;
    z-index: 2;
    padding: 0 40px;
}

.slide-content.hidden {
    display: none;
}

.slide-content h2 {
    font-size: 72px;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -2px;
    line-height: 1.1;
    text-transform: uppercase;
}

.slide-content p {
    font-size: 24px;
    color: var(--white-70);
    margin-bottom: var(--spacing-2xl);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.5px;
}

/* Swiper Pagination */
.swiper-pagination {
    position: absolute !important;
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: var(--spacing-sm) !important;
    z-index: 10;
    width: auto !important;
}

.swiper-pagination-bullet {
    width: 40px !important;
    height: 3px !important;
    border: none !important;
    background: var(--white-30) !important;
    cursor: pointer;
    transition: all var(--transition-medium);
    padding: 0;
    border-radius: 2px !important;
    opacity: 1 !important;
    margin: 0 !important;
}

.swiper-pagination-bullet:hover,
.swiper-pagination-bullet:focus {
    background: var(--white-60) !important;
    transform: scaleX(1.2);
}

.swiper-pagination-bullet-active {
    background: var(--color-red) !important;
    width: 60px !important;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 18px 48px;
    text-decoration: none;
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-slow);
    border: 1px solid var(--color-red);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px 0 rgba(220, 38, 38, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transition: left var(--transition-slow);
    z-index: -1;
}

.btn-primary:hover::before,
.btn-primary:focus::before {
    left: 0;
}

.btn-primary:hover,
.btn-primary:focus {
    color: var(--color-red);
    outline: none;
    background-color: transparent;
    border: 1px solid var(--color-white);
}

.btn-secondary {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    padding: 16px 40px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-slow);
}

.btn-secondary:hover,
.btn-secondary:focus {
    border-color: var(--color-red);
    background-color: var(--color-red);
    outline: none;
}

/* Section Styles */
section {
    padding: 140px 0;
}

.section-title {
    font-size: 56px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 80px;
    letter-spacing: -1px;
    line-height: 1.2;
}

/* Featured Products */
.featured-products {
    background-color: var(--color-black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 0;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.5),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--red-05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(220, 38, 38, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 20px 60px 0 rgba(220, 38, 38, 0.35),
                0 0 0 1px rgba(220, 38, 38, 0.1),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}

.product-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(20, 20, 20, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 28px 28px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image .tv-placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.placeholder-image {
    font-size: 64px;
    font-weight: var(--font-weight-extrabold);
    color: var(--white-10);
    z-index: 1;
    position: relative;
    letter-spacing: -2px;
}

.product-card h3 {
    font-size: 28px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-xl) var(--spacing-xl) 0;
    letter-spacing: -0.5px;
}

.features {
    list-style: none;
    margin: var(--spacing-lg) 0;
    padding: 0 var(--spacing-xl);
}

.features li {
    color: var(--white-60);
    padding: var(--spacing-sm) 0;
    font-size: 15px;
    font-weight: var(--font-weight-light);
    border-bottom: 1px solid var(--white-05);
    letter-spacing: 0.5px;
}

.features li:last-child {
    border-bottom: none;
}

.features li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--color-red);
    margin-right: var(--spacing-sm);
    vertical-align: middle;
}

.product-card .btn-secondary {
    margin: var(--spacing-xl);
    width: calc(100% - 64px);
    text-align: center;
}

/* Why FAST Section */
.why-fast {
    background-color: var(--color-black);
}

.why-content {
    max-width: 900px;
}

.why-content p {
    color: var(--white-70);
    font-size: 20px;
    margin-bottom: var(--spacing-xl);
    font-weight: var(--font-weight-light);
    line-height: 1.8;
}

.read-more {
    color: var(--color-red);
    text-decoration: none;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-medium);
    display: inline-block;
    margin-top: var(--spacing-md);
}

.read-more::after {
    content: '→';
    margin-left: var(--spacing-xs);
    transition: margin-left var(--transition-medium);
}

.read-more:hover::after,
.read-more:focus::after {
    margin-left: var(--spacing-md);
}

.read-more:hover,
.read-more:focus {
    outline: none;
}

/* Reviews Section */
.reviews {
    background-color: var(--color-black);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    padding: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    transition: all var(--transition-medium);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.review-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(220, 38, 38, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 16px 50px 0 rgba(220, 38, 38, 0.3),
                0 0 0 1px rgba(220, 38, 38, 0.1),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: 20px;
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(220, 38, 38, 0.5);
    box-shadow: 0 4px 12px 0 rgba(220, 38, 38, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    color: var(--color-white);
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 4px;
}

.reviewer-location {
    color: var(--white-50);
    font-size: 14px;
    font-weight: var(--font-weight-light);
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    font-size: 20px;
    color: var(--white-20);
}

.star.filled {
    color: var(--color-red);
}

.review-text {
    color: var(--white-80);
    font-size: 16px;
    line-height: 1.8;
    font-weight: var(--font-weight-light);
}

.reviewer {
    color: var(--white-40);
    font-size: 14px;
    text-align: right;
    font-weight: var(--font-weight-medium);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer */
footer {
    background-color: #000;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-bottom: 80px;
}

.footer-col {
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
}

.footer-col:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(220, 38, 38, 0.2);
    transform: translateY(-4px);
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.designed-uk {
    color: rgba(255, 255, 255, 0.3);
    font-size: 15px;
    margin-bottom: 24px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.address {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover,
.footer-col ul li a:focus {
    color: #dc2626;
    transform: translateX(4px);
    outline: none;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-icon {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover,
.social-icon:focus {
    color: #dc2626;
    transform: translateX(4px);
    outline: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 200px 0 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 48px 48px;
    margin-top: 96px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.page-header h1 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.page-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 22px;
    margin-top: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* About Page */
.top-image-section {
    padding: 0;
    background-color: #000;
}

.top-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(26, 26, 26, 0.4) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    margin-left:0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}


.brand-story,
.brand-presence {
    padding: 140px 0;
}

.story-content,
.presence-content {
    max-width: 900px;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.story-content p,
.presence-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.8;
    font-weight: 300;
}
@media (max-width: 768px) {
    .story-content, .presence-content {
        padding: 2rem 1rem;
    }
}
.presence-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

.presence-image {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(26, 26, 26, 0.4) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.presence-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23111"/><rect x="40" y="30" width="30" height="50" fill="%23181818"/></svg>') center/200px;
    opacity: 0.03;
}

/* Contact Page */
.contact-section {
    padding: 140px 0;
    background-color: #000;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.contact-map h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.contact-form h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -1px;
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    background-color: rgba(255, 255, 255, 0.03);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.btn-submit {
    background-color: #dc2626;
    color: #fff;
    padding: 18px 48px;
    border: 1px solid #dc2626;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px 0 rgba(220, 38, 38, 0.3);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-submit:hover::before,
.btn-submit:focus::before {
    left: 0;
}

.btn-submit:hover,
.btn-submit:focus {
    color: #dc2626;
    outline: none;
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 48px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.info-item {
    margin-bottom: 40px;
}

.info-item h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-item p,
.info-item a {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 16px;
    font-weight: 300;
}

.info-item a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.info-item a:hover,
.info-item a:focus {
    color: #dc2626;
    transform: translateX(4px);
    outline: none;
}

/* Specifications Page */
.specs-section {
    padding: 140px 0;
    background-color: #000;
}
@media (max-width: 768px) {
    .specs-section {
        padding: 0px 0;
    }
    .spec-image{
        margin-top:2rem;
    }
}

.specs-content {
    max-width: 1000px;
    margin: 0 auto;
}

.spec-image {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(26, 26, 26, 0.4) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-size: 120px;
    font-weight: 800;
    margin-bottom: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}



.specs-grid {
    display: grid;
    gap: 0;
    background-color: transparent;
}

.spec-item {
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    padding: 24px 32px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.2);
}

.spec-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateX(4px);
    box-shadow: 0 6px 20px 0 rgba(220, 38, 38, 0.15);
}

.spec-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spec-value {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

/* Hero Slider Accessibility */
.hero-slider .swiper-wrapper {
    cursor: grab;
}

.hero-slider .swiper-wrapper:active {
    cursor: grabbing;
}

.hero-slider:focus,
.hero-slider:focus-within {
    outline: 2px solid var(--color-red);
    outline-offset: -2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .swiper {
        --swiper-transition-duration: 0ms !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border-width: 2px;
    }

    nav a::after {
        height: 2px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    nav ul {
        gap: 32px;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 32px;
    }

    /* header .container {
        flex-wrap: wrap;
    } */
    header .logo img{
        width:85px;
    }
    .slide-bg{
        aspect-ratio: 3/4;
    }
    nav ul {
        gap: 24px;
    }

    .slide-content h2 {
        font-size: 48px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .presence-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .spec-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .page-header h1 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 24px;
    }

    header {
        padding: 20px 0;
    }

    .logo h1 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    /* Keep navigation horizontal on mobile */
    header .container {
        /* flex-direction: column; */
        gap: 20px;
        align-items: center;
    }

    nav {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        min-width: min-content;
        padding: 0 10px;
    }

    nav a {
        font-size: 12px;
        white-space: nowrap;
    }

    .slide-content h2 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 32px;
        font-size: 12px;
    }

    section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .review-card {
        padding: 24px;
    }

    .reviewer-image {
        width: 48px;
        height: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .footer-col {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .slider-controls {
        bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-content {
        gap: 12px;
    }

    .footer-col {
        padding: 20px;
    }
}
