@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #0a0b0d;
    --bg-secondary: #121316;
    --bg-tertiary: #191b20;
    --accent-orange: #ff6f00;
    --accent-orange-glow: rgba(255, 111, 0, 0.35);
    --accent-orange-hover: #ff851a;
    --accent-cyan: #00f0ff;
    --accent-cyan-glow: rgba(0, 240, 255, 0.25);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(255, 111, 0, 0.15);
    --glass-bg: rgba(18, 19, 22, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
    --header-height: 80px;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border: 2px solid var(--bg-primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #fff 30%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #fff 30%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 111, 0, 0.1);
    border: 1px solid rgba(255, 111, 0, 0.2);
    color: var(--accent-orange);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-orange-glow);
}

.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--accent-orange-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

/* Background glows */
.glow-spot {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.glow-orange {
    background: var(--accent-orange);
    top: 10%;
    right: -100px;
}

.glow-cyan {
    background: var(--accent-cyan);
    bottom: 20%;
    left: -100px;
}

/* Top bar contact details */
.top-contact-bar {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

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

.top-contact-info {
    display: flex;
    gap: 20px;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.top-contact-item a:hover {
    color: var(--accent-orange);
}

.top-contact-item svg {
    width: 14px;
    height: 14px;
    fill: var(--accent-orange);
}

/* Header & Nav */
.main-header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
}

.logo svg {
    width: 28px;
    height: 28px;
    fill: var(--accent-orange);
    animation: spin 12s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.logo-text span {
    color: var(--accent-orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-nav-toggle svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 140px;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - 40px);
    overflow: hidden;
}

/* Tech grid pattern in background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    mask-image: radial-gradient(ellipse at center, black, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 75%);
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 2px;
    background: var(--accent-orange);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Feature grid on hero right */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-cyan));
}

.hero-card-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-card-title svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-cyan);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    border-left: 2px solid var(--accent-orange);
    padding-left: 14px;
}

.stat-val {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Services / Metoda */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--x, 0px) var(--y, 0px), rgba(255, 111, 0, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.05);
}

.service-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(255, 111, 0, 0.06);
    border: 1px solid rgba(255, 111, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-orange);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 0 15px var(--accent-orange-glow);
}

.service-icon-box svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.service-card-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Symptoms / Objawy */
.symptoms-section {
    padding: 100px 0;
    position: relative;
}

.symptoms-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.symptoms-visual {
    position: relative;
}

.symptoms-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.symptoms-image-wrapper img {
    width: 100%;
    display: block;
    filter: brightness(0.7) contrast(1.1);
}

.symptoms-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.symptoms-overlay-badge .pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    position: relative;
}

.symptoms-overlay-badge .pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.symptoms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.symptom-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: var(--transition-fast);
}

.symptom-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--bg-tertiary);
}

.symptom-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: var(--accent-orange);
}

.symptom-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.symptom-desc {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Engine Section */
.engines-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.engines-search-box {
    max-width: 500px;
    margin: -20px auto 40px;
    position: relative;
}

.engines-search-box input {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 16px 20px 16px 50px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.engines-search-box input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.1);
}

.engines-search-box svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
}

.engines-filter-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 4px 12px var(--accent-orange-glow);
}

.engines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.engine-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-normal);
}

.engine-card:hover {
    border-color: rgba(255, 111, 0, 0.25);
    transform: translateY(-4px);
}

.engine-brand {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.engine-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.engine-models {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 12px;
}

/* Compare / Slider Gallery */
.compare-section {
    padding: 100px 0;
}

.compare-container {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    aspect-ratio: 4/3;
    user-select: none;
    -webkit-user-select: none;
}

.compare-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.compare-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.compare-before {
    z-index: 1;
}

.compare-after {
    z-index: 2;
    width: 50%; /* JS will update this */
    overflow: hidden;
    border-right: 2px solid #fff;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.25);
}

/* Correct positioning in after container to match exact dimensions */
.compare-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
}

.compare-label {
    position: absolute;
    top: 20px;
    padding: 6px 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    pointer-events: none;
    z-index: 3;
}

.compare-label-before {
    left: 20px;
    border-left: 2px solid var(--accent-orange);
}

.compare-label-after {
    right: 20px;
    border-right: 2px solid var(--accent-cyan);
}

.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; /* JS will update this */
    width: 40px;
    margin-left: -20px;
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-handle-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.5), 0 0 0 4px rgba(255, 111, 0, 0.3);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.compare-handle:hover .compare-handle-button {
    transform: scale(1.1);
}

.compare-handle-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Static Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 11, 13, 0.9), transparent 60%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

.gallery-subtitle {
    font-size: 0.8rem;
    color: var(--accent-orange);
    transform: translateY(10px);
    transition: var(--transition-normal);
    transition-delay: 0.05s;
}

.gallery-item:hover .gallery-subtitle {
    transform: translateY(0);
}

/* Information Box */
.info-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.info-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.info-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.info-text strong {
    color: #fff;
}

.info-tech-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.info-tech-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--accent-orange);
}

.tech-box-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
}

.tech-list {
    list-style: none;
}

.tech-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.tech-list-item:last-child {
    margin-bottom: 0;
}

.tech-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent-cyan);
    margin-top: 2px;
    flex-shrink: 0;
}

.tech-item-text h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 4px;
}

.tech-item-text p {
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
}

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

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.contact-detail-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-fast);
}

.contact-detail-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 111, 0, 0.08);
    border: 1px solid rgba(255, 111, 0, 0.2);
    color: var(--accent-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-detail-title {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-detail-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.contact-detail-value a:hover {
    color: var(--accent-orange);
}

/* Form Styling */
.contact-form-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #fff;
}

.contact-form-desc {
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #fff;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

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

.form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 12px rgba(255, 111, 0, 0.1);
}

.form-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

textarea.form-control ~ .form-label {
    top: 24px;
    transform: none;
}

.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
    top: 0;
    left: 12px;
    transform: translateY(-50%) scale(0.85);
    background: var(--bg-secondary);
    padding: 0 8px;
    color: var(--accent-orange);
}

.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Map placeholder / styling */
.map-container {
    height: 350px;
    background-color: var(--bg-secondary);
    border-radius: 16px;
    margin-top: 60px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* Custom Lightbox */
.custom-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.custom-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--glass-border);
}

.lightbox-caption {
    margin-top: 16px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.lightbox-close svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Footer */
.main-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    font-size: 0.95rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 4px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-link:hover {
    background: var(--accent-orange);
    color: #fff;
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Partner Section */
.partner-section {
    padding: 60px 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.partner-banner {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.04) 0%, rgba(0, 240, 255, 0.02) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.partner-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: var(--accent-orange);
    filter: blur(100px);
    opacity: 0.08;
    pointer-events: none;
}

.partner-content {
    max-width: 700px;
}

.partner-content h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #fff;
}

.partner-content p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.partner-content p strong {
    color: #fff;
}

.partner-action {
    flex-shrink: 0;
}

/* Press Mention Box */
.press-mention {
    margin-top: 40px;
    padding: 28px;
    background: rgba(0, 240, 255, 0.02);
    border: 1px solid rgba(0, 240, 255, 0.08);
    border-left: 4px solid var(--accent-cyan);
    border-radius: 12px;
    transition: var(--transition-normal);
    text-align: left;
}

.press-mention:hover {
    border-color: rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.02);
}

.press-mention h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.press-mention p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.press-link {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.press-link:hover {
    color: #fff;
}

.press-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.press-link:hover svg {
    transform: translate(2px, -2px);
}

/* Responsive Grid/Styles adjustments */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-subtitle {
        justify-content: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
    }
    .symptoms-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .info-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lightbox-prev {
        left: 20px;
    }
    .lightbox-next {
        right: 20px;
    }
    .lightbox-nav {
        background: rgba(10, 11, 13, 0.6);
    }
    .partner-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 36px;
    }
    .partner-action {
        width: 100%;
    }
    .partner-action .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .top-contact-bar {
        display: none;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-normal);
        z-index: 999;
        padding-bottom: 80px;
    }
    .nav-menu.active {
        left: 0;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .contact-form-box {
        padding: 24px;
    }
}
